From f4f8f0cabc3ae7e67b577affc3bbc557971909bb Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 13 Dec 2024 20:07:13 -0800 Subject: [PATCH] sc2: Adding mothership war council item data --- worlds/sc2/item/item_descriptions.py | 2 +- worlds/sc2/item/item_names.py | 2 +- worlds/sc2/item/item_tables.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/sc2/item/item_descriptions.py b/worlds/sc2/item/item_descriptions.py index e88cef9ce101..9fdb65737fec 100644 --- a/worlds/sc2/item/item_descriptions.py +++ b/worlds/sc2/item/item_descriptions.py @@ -1038,7 +1038,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: # Scout item_names.ARBITER_ABILITY_EFFICIENCY: "Arbiter War Council upgrade. Reduces the energy cost of Recall by 50 and Stasis Field by 100.", # Oracle - # Mothership + item_names.MOTHERSHIP_INTEGRATED_POWER: "Mothership War Council upgrade. Allows Motherships to move at full speed outside pylon power.", item_names.SOA_CHRONO_SURGE: "The Spear of Adun increases a target structure's unit warp in and research speeds by +1000% for 20 seconds.", item_names.SOA_PROGRESSIVE_PROXY_PYLON: inspect.cleandoc(""" Level 1: The Spear of Adun quickly warps in a Pylon to a target location. diff --git a/worlds/sc2/item/item_names.py b/worlds/sc2/item/item_names.py index 797582839c18..af7872ee1579 100644 --- a/worlds/sc2/item/item_names.py +++ b/worlds/sc2/item/item_names.py @@ -837,7 +837,7 @@ # Scout ARBITER_ABILITY_EFFICIENCY = "Ability Efficiency (Arbiter)" # Oracle -# Mothership +MOTHERSHIP_INTEGRATED_POWER = "Integrated Power (Mothership)" # Spear Of Adun SOA_CHRONO_SURGE = "Chrono Surge (Spear of Adun Calldown)" diff --git a/worlds/sc2/item/item_tables.py b/worlds/sc2/item/item_tables.py index 440a746b3a08..be9f47b3bb03 100644 --- a/worlds/sc2/item/item_tables.py +++ b/worlds/sc2/item/item_tables.py @@ -1932,7 +1932,7 @@ def get_full_item_list(): # 542 reserved for Scout item_names.ARBITER_ABILITY_EFFICIENCY: ItemData(543 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council_2, 13, SC2Race.PROTOSS, parent=item_names.ARBITER), # 544 reserved for Oracle - # 545 reserved for Mothership + item_names.MOTHERSHIP_INTEGRATED_POWER: ItemData(545 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council_2, 15, SC2Race.PROTOSS, parent=item_names.MOTHERSHIP), # SoA Calldown powers item_names.SOA_CHRONO_SURGE: ItemData(700 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Spear_Of_Adun, 0, SC2Race.PROTOSS),