From d67e78e513823cae9c94cbf807713d6044ef011a Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 26 Jul 2024 22:34:42 -0700 Subject: [PATCH] sc2: Added Dark Archon War Council upgrade -- Indomitable Will --- worlds/sc2/item_descriptions.py | 2 +- worlds/sc2/item_names.py | 2 +- worlds/sc2/items.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/sc2/item_descriptions.py b/worlds/sc2/item_descriptions.py index ee0a1f239fce..3cad3a5a18b3 100644 --- a/worlds/sc2/item_descriptions.py +++ b/worlds/sc2/item_descriptions.py @@ -870,7 +870,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: item_names.ENERGIZER_MOBILE_CHRONO_BEAM: "Energizer War Council upgrade. Allows Energizers to use Chrono Beam in Mobile Mode.", item_names.HAVOC_ENDURING_SIGHT: "Havoc War Council upgrade. Havoc Squad Sight stays up indefinitely and no longer takes energy.", item_names.HIGH_TEMPLAR_PLASMA_SURGE: "High Templar War Council upgrade. High Templar Psionic Storm will heal fiendly protoss shields under it.", - # item_names.DARK_ARCHON_INDOMITABLE_WILL: "Dark Archon War Council upgrade. Casting Mind Control will no longer deplete the Dark Archon's shields.", + item_names.DARK_ARCHON_INDOMITABLE_WILL: "Dark Archon War Council upgrade. Casting Mind Control will no longer deplete the Dark Archon's shields.", 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_names.py b/worlds/sc2/item_names.py index f84300422c1e..6fb78ba15cd0 100644 --- a/worlds/sc2/item_names.py +++ b/worlds/sc2/item_names.py @@ -706,7 +706,7 @@ HIGH_TEMPLAR_PLASMA_SURGE = "Plasma Surge (High Templar)" # Signifier # Ascendant -# DARK_ARCHON_INDOMITABLE_WILL = "Indomitable Will (Dark Archon)" +DARK_ARCHON_INDOMITABLE_WILL = "Indomitable Will (Dark Archon)" # IMMORTAL_IMPROVED_BARRIER = "Improved Barrier (Immortal)" # Annihilator # Vanguard diff --git a/worlds/sc2/items.py b/worlds/sc2/items.py index 06f47302341e..e40adbfed342 100644 --- a/worlds/sc2/items.py +++ b/worlds/sc2/items.py @@ -1749,7 +1749,7 @@ def get_full_item_list(): item_names.HIGH_TEMPLAR_PLASMA_SURGE: ItemData(515 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 15, SC2Race.PROTOSS, parent_item=item_names.HIGH_TEMPLAR), # 516 reserved for Signifier # 517 reserved for Ascendant - # item_names.DARK_ARCHON_INDOMITABLE_WILL: ItemData(518 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 18, SC2Race.PROTOSS), + item_names.DARK_ARCHON_INDOMITABLE_WILL: ItemData(518 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 18, SC2Race.PROTOSS), # 518 reserved for Immortal # 519 reserved for Annihilator # 520 reserved for Vanguard