Skip to content

Commit

Permalink
Merge pull request #213 from MatthewMarinets/mm/liberator_aa_upgrade
Browse files Browse the repository at this point in the history
sc2: Added liberator guerilla missiles to replace 360 degree sensors
  • Loading branch information
Ziktofel authored Jun 17, 2024
2 parents 59ae1ca + 1b20ed8 commit f2a33cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion worlds/sc2/item_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description:
"""),
item_names.BATTLECRUISER_BEHEMOTH_REACTOR: "All Battlecruiser spells require 25 less energy to cast.",
item_names.THOR_RAPID_RELOAD: "Increases Thor's ground attack speed.",
item_names.LIBERATOR_360_DEGREE_SENSOR_ARRAY: "Liberators in Defender Mode can attack any target in weapon range.",
item_names.LIBERATOR_GUERILLA_MISSILES: "Liberators in Fighter Mode apply an attack and movement debuff to enemies they attack.",
item_names.WIDOW_MINE_RESOURCE_EFFICIENCY: _get_resource_efficiency_desc(item_names.WIDOW_MINE),
item_names.HERC_GRAPPLE_PULL: "Allows HERCs to use their grappling gun to pull a ground unit towards the HERC.",
item_names.COMMAND_CENTER_SCANNER_SWEEP: "Temporarily reveals an area of the map, detecting cloaked and burrowed units.",
Expand Down
2 changes: 1 addition & 1 deletion worlds/sc2/item_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
LIBERATOR_RAID_ARTILLERY = "Raid Artillery (Liberator)"
LIBERATOR_SMART_SERVOS = "Smart Servos (Liberator)"
LIBERATOR_RESOURCE_EFFICIENCY = "Resource Efficiency (Liberator)"
LIBERATOR_360_DEGREE_SENSOR_ARRAY = "360-Degree Sensor Array (Liberator)"
LIBERATOR_GUERILLA_MISSILES = "Guerilla Missiles (Liberator)"
MARAUDER_CONCUSSIVE_SHELLS = "Concussive Shells (Marauder)"
MARAUDER_INTERNAL_TECH_MODULE = "Internal Tech Module (Marauder)"
MARAUDER_KINETIC_FOAM = "Kinetic Foam (Marauder)"
Expand Down
2 changes: 1 addition & 1 deletion worlds/sc2/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def get_full_item_list():
item_names.THOR_RAPID_RELOAD:
ItemData(293 + SC2WOL_ITEM_ID_OFFSET, TerranItemType.Armory_6, 23, SC2Race.TERRAN,
parent_item=item_names.THOR, origin={"lotv"}),
item_names.LIBERATOR_360_DEGREE_SENSOR_ARRAY:
item_names.LIBERATOR_GUERILLA_MISSILES:
ItemData(294 + SC2WOL_ITEM_ID_OFFSET, TerranItemType.Armory_6, 24, SC2Race.TERRAN,
parent_item=item_names.LIBERATOR, origin={"ext"}),
item_names.WIDOW_MINE_RESOURCE_EFFICIENCY:
Expand Down

0 comments on commit f2a33cd

Please sign in to comment.