Skip to content

Commit

Permalink
Add Scout resource efficency
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jun 15, 2024
1 parent 44057ea commit 59ae1ca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion worlds/sc2/item_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
item_names.RAVEN: (0, 50, 0),
item_names.CYCLONE: (25, 50, 1),
item_names.WIDOW_MINE: (0, 25, 1),
item_names.LIBERATOR: (25, 25, 0),
item_names.LIBERATOR: (0, 25, 0),
item_names.VALKYRIE: (100, 25, 1),
item_names.SCOURGE: (0, 50, 0),
item_names.HYDRALISK: (25, 25, 1),
Expand All @@ -60,6 +60,7 @@
item_names.ARBITER: (50, 0, 0),
item_names.REAVER: (100, 100, 2),
DISPLAY_NAME_CLOAKED_ASSASSIN: (0, 50, 0),
item_names.SCOUT: (125, 25, 1),
}


Expand Down Expand Up @@ -748,6 +749,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description:
item_names.SCOUT_APIAL_SENSORS: "Scouts gain increased sight range.",
item_names.SCOUT_GRAVITIC_THRUSTERS: "Scouts gain increased movement speed.",
item_names.SCOUT_ADVANCED_PHOTON_BLASTERS: "Scouts gain increased damage against ground targets.",
item_names.SCOUT_RESOURCE_EFFICIENCY: _get_resource_efficiency_desc(item_names.SCOUT),
item_names.TEMPEST_TECTONIC_DESTABILIZERS: "Tempests deal increased damage to buildings.",
item_names.TEMPEST_QUANTIC_REACTOR: "Tempests deal increased damage to massive units.",
item_names.TEMPEST_GRAVITY_SLING: "Tempests gain +8 range against air targets.",
Expand Down
1 change: 1 addition & 0 deletions worlds/sc2/item_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,7 @@
SCOUT_APIAL_SENSORS = "Apial Sensors (Scout)"
SCOUT_GRAVITIC_THRUSTERS = "Gravitic Thrusters (Scout)"
SCOUT_ADVANCED_PHOTON_BLASTERS = "Advanced Photon Blasters (Scout)"
SCOUT_RESOURCE_EFFICIENCY = "Resource Efficiency (Scout)"
TEMPEST_TECTONIC_DESTABILIZERS = "Tectonic Destabilizers (Tempest)"
TEMPEST_QUANTIC_REACTOR = "Quantic Reactor (Tempest)"
TEMPEST_GRAVITY_SLING = "Gravity Sling (Tempest)"
Expand Down
1 change: 1 addition & 0 deletions worlds/sc2/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1616,6 +1616,7 @@ def get_full_item_list():
item_names.ZEALOT_SENTINEL_CENTURION_LEG_ENHANCEMENTS: ItemData(376 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_3, 16, SC2Race.PROTOSS, origin={"bw"}),
item_names.ZEALOT_SENTINEL_CENTURION_SHIELD_CAPACITY: ItemData(377 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_3, 17, SC2Race.PROTOSS, origin={"bw"}),
item_names.ORACLE_BOSONIC_CORE: ItemData(378 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_3, 18, SC2Race.PROTOSS, origin={"ext"}, parent_item=item_names.ORACLE),
item_names.SCOUT_RESOURCE_EFFICIENCY: ItemData(379 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_3, 19, SC2Race.PROTOSS, origin={"ext"}, parent_item=item_names.SCOUT),

# SoA Calldown powers
item_names.SOA_CHRONO_SURGE: ItemData(700 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Spear_Of_Adun, 0, SC2Race.PROTOSS, origin={"lotv"}),
Expand Down

0 comments on commit 59ae1ca

Please sign in to comment.