Skip to content

Commit

Permalink
Merge pull request ArchipelagoMW#282 from MatthewMarinets/mm/war_coun…
Browse files Browse the repository at this point in the history
…cil_colossus

sc2: Adding colossus war council upgrade -- fire lance
  • Loading branch information
Ziktofel authored Aug 9, 2024
2 parents 4035c5d + 85f87ce commit fb3d2ad
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 @@ -893,7 +893,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description:
item_names.VANGUARD_FUSION_MORTARS: "Vanguard War Council upgrade. Vanguards deal +7 damage to armored targets per attack.",
item_names.ANNIHILATOR_AERIAL_TRACKING: "Annihilator War Council upgrade. The Annihilator's Shadow Cannon ability can now target air units.",
item_names.STALWART_DUALITY_CHARGE: "Stalwart War Council upgrade. Stalwarts gain +4 range.",
# Colossus
item_names.COLOSSUS_FIRE_LANCE: "Colossus War Council upgrade. Colossi set the ground on fire with their attacks, dealing damage to enemies over time.",
item_names.WRATHWALKER_AERIAL_TRACKING: "Wrathwalker War Council upgrade. Wrathwalkers can now target air units.",
item_names.REAVER_KHALAI_REPLICATORS: "Reaver War Council upgrade. Reaver Scarabs no longer cost minerals.",
# Disruptor
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 @@ -724,7 +724,7 @@
VANGUARD_FUSION_MORTARS = "Fusion Mortars (Vanguard)"
ANNIHILATOR_AERIAL_TRACKING = "Aerial Tracking (Annihilator)"
STALWART_DUALITY_CHARGE = "Duality Charge (Stalwart)"
# Colossus
COLOSSUS_FIRE_LANCE = "Fire Lance (Colossus)"
WRATHWALKER_AERIAL_TRACKING = "Aerial Tracking (Wrathwalker)"
REAVER_KHALAI_REPLICATORS = "Khalai Replicators (Reaver)"
# Disruptor
Expand Down
2 changes: 1 addition & 1 deletion worlds/sc2/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ def get_full_item_list():
item_names.VANGUARD_FUSION_MORTARS: ItemData(521 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 21, SC2Race.PROTOSS, parent_item=item_names.VANGUARD),
item_names.ANNIHILATOR_AERIAL_TRACKING: ItemData(522 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 22, SC2Race.PROTOSS, parent_item=item_names.ANNIHILATOR),
item_names.STALWART_DUALITY_CHARGE: ItemData(523 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 23, SC2Race.PROTOSS, classification=ItemClassification.progression, parent_item=item_names.STALWART),
# 524 reserved for Colossus
item_names.COLOSSUS_FIRE_LANCE: ItemData(524 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 24, SC2Race.PROTOSS, classification=ItemClassification.progression, parent_item=item_names.COLOSSUS),
item_names.WRATHWALKER_AERIAL_TRACKING: ItemData(525 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 25, SC2Race.PROTOSS, classification=ItemClassification.progression, parent_item=item_names.WRATHWALKER),
item_names.REAVER_KHALAI_REPLICATORS: ItemData(526 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 26, SC2Race.PROTOSS, parent_item=item_names.REAVER),
# 527 reserved for Disruptor
Expand Down

0 comments on commit fb3d2ad

Please sign in to comment.