diff --git a/worlds/sc2/item_descriptions.py b/worlds/sc2/item_descriptions.py index 828effec094d..568c9e97b1bb 100644 --- a/worlds/sc2/item_descriptions.py +++ b/worlds/sc2/item_descriptions.py @@ -749,7 +749,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: item_names.MOTHERSHIP: "Ultimate Protoss vessel, Can use the Vortex and Mass Recall abilities. Cloaks nearby units and structures.", item_names.ARBITER: "Army support craft. Has the Stasis Field and Recall abilities. Cloaks nearby units.", item_names.ORACLE: "Flying caster. Can use the Revelation and Stasis Ward abilities.", - item_names.SKYLORD: "Capital ship. Builds and launches Interceptors that attack enemy targets. Can use Tactical Jump ability.", + item_names.SKYLORD: "Capital ship. Fires a powerful laser that deals damage in a line. Can use Tactical Jump ability.", item_names.PURGER: "Capital ship. Builds and launches Interceptors that attack enemy targets. Has Solar Beam weapon.", item_names.PROGRESSIVE_PROTOSS_GROUND_WEAPON: GENERIC_UPGRADE_TEMPLATE.format("damage", PROTOSS, "ground units"), item_names.PROGRESSIVE_PROTOSS_GROUND_ARMOR: GENERIC_UPGRADE_TEMPLATE.format("armor", PROTOSS, "ground units"), @@ -852,6 +852,8 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: item_names.DRAGOON_PHALANX_SUIT: "Dragoon War Council upgrade. Dragoons gain +2 range, move slightly faster, and can form tighter formations.", item_names.INSTIGATOR_RESOURCE_EFFICIENCY: f"Instigator War Council upgrade. {_get_resource_efficiency_desc(item_names.INSTIGATOR)}", item_names.ADEPT_DISRUPTIVE_TRANSFER: "Adept War Council upgrade. Adept shades apply a debuff to enemies they touch, increasing damage taken by +5.", + item_names.SLAYER_PHASE_BLINK: "Slayer War Council upgrade. Slayers can now blink. After blinking, the Slayer's next attack within 8 seconds deals double damage.", + item_names.AVENGER_KRYHAS_CLOAK: "Avenger War Council upgrade. Avengers are now permanently cloaked.", 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 275facf02fa1..17e091fab28a 100644 --- a/worlds/sc2/item_names.py +++ b/worlds/sc2/item_names.py @@ -688,6 +688,8 @@ DRAGOON_PHALANX_SUIT = "Phalanx Suit (Dragoon)" INSTIGATOR_RESOURCE_EFFICIENCY = "Resource Efficiency (Instigator)" ADEPT_DISRUPTIVE_TRANSFER = "Disruptive Transfer (Adept)" +SLAYER_PHASE_BLINK = "Phase Blink (Slayer)" +AVENGER_KRYHAS_CLOAK = "Kryhas Cloak (Avenger)" # Spear Of Adun SOA_CHRONO_SURGE = "Chrono Surge (Spear of Adun Calldown)" diff --git a/worlds/sc2/items.py b/worlds/sc2/items.py index 60825d9945dc..4d23ace2246e 100644 --- a/worlds/sc2/items.py +++ b/worlds/sc2/items.py @@ -1713,6 +1713,8 @@ def get_full_item_list(): item_names.DRAGOON_PHALANX_SUIT: ItemData(504 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 4, SC2Race.PROTOSS, parent_item=item_names.DRAGOON), item_names.INSTIGATOR_RESOURCE_EFFICIENCY: ItemData(505 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 5, SC2Race.PROTOSS, parent_item=item_names.INSTIGATOR), item_names.ADEPT_DISRUPTIVE_TRANSFER: ItemData(506 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 6, SC2Race.PROTOSS, parent_item=item_names.ADEPT), + item_names.SLAYER_PHASE_BLINK: ItemData(507 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 7, SC2Race.PROTOSS, parent_item=item_names.SLAYER), + item_names.AVENGER_KRYHAS_CLOAK: ItemData(508 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 8, SC2Race.PROTOSS, parent_item=item_names.AVENGER), # SoA Calldown powers item_names.SOA_CHRONO_SURGE: ItemData(700 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Spear_Of_Adun, 0, SC2Race.PROTOSS, origin={"lotv"}),