Skip to content

Commit

Permalink
Add Mechanical Know-how and Mercenary Munitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jun 30, 2024
1 parent 9cc8c4d commit a5abb6e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions worlds/sc2/item_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,8 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description:
item_names.HI_SEC_AUTO_TRACKING: "Increases attack range of all Terran structures by 1.",
item_names.ADVANCED_OPTICS: "Increases attack range of all Terran mechanical units by 1.",
item_names.ROGUE_FORCES: "Mercenary calldowns are no longer limited by charges.",
item_names.MECHANICAL_KNOW_HOW: "Increases mechanical unit life by 20%.",
item_names.MERCENARY_MUNITIONS: "Increases attack speed of all combat units by 15%.",
item_names.ZEALOT: "Powerful melee warrior. Can use the charge ability.",
item_names.STALKER: "Ranged attack strider. Can use the Blink ability.",
item_names.HIGH_TEMPLAR: "Potent psionic master. Can use the Feedback and Psionic Storm abilities. Can merge into an Archon.",
Expand Down
2 changes: 2 additions & 0 deletions worlds/sc2/item_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@
HI_SEC_AUTO_TRACKING = "Hi-Sec Auto Tracking"
ADVANCED_OPTICS = "Advanced Optics"
ROGUE_FORCES = "Rogue Forces"
MECHANICAL_KNOW_HOW = "Mechanical Know-how"
MERCENARY_MUNITIONS = "Mercenary Munitions"

# Terran Unit Upgrades
BANSHEE_HYPERFLIGHT_ROTORS = "Hyperflight Rotors (Banshee)"
Expand Down
4 changes: 4 additions & 0 deletions worlds/sc2/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,10 @@ def get_full_item_list():
ItemData(622 + SC2WOL_ITEM_ID_OFFSET, TerranItemType.Laboratory, 11, SC2Race.TERRAN),
item_names.ROGUE_FORCES:
ItemData(623 + SC2WOL_ITEM_ID_OFFSET, TerranItemType.Laboratory, 12, SC2Race.TERRAN, origin={"ext"}),
item_names.MECHANICAL_KNOW_HOW:
ItemData(624 + SC2WOL_ITEM_ID_OFFSET, TerranItemType.Laboratory, 13, SC2Race.TERRAN, origin={"ext"}),
item_names.MERCENARY_MUNITIONS:
ItemData(625 + SC2WOL_ITEM_ID_OFFSET, TerranItemType.Laboratory, 14, SC2Race.TERRAN, origin={"ext"}),

item_names.ZEALOT:
ItemData(700 + SC2WOL_ITEM_ID_OFFSET, ProtossItemType.Unit, 0, SC2Race.PROTOSS,
Expand Down

0 comments on commit a5abb6e

Please sign in to comment.