diff --git a/worlds/sc2/item/item_descriptions.py b/worlds/sc2/item/item_descriptions.py index 9fdb65737fec..3c1e46ee5fbd 100644 --- a/worlds/sc2/item/item_descriptions.py +++ b/worlds/sc2/item/item_descriptions.py @@ -899,6 +899,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: item_names.SUPPLICANT_BLOOD_SHIELD: "Increases the armor value of Supplicant shields.", item_names.SUPPLICANT_SOUL_AUGMENTATION: "Increases Supplicant max shields by +25.", item_names.SUPPLICANT_SHIELD_REGENERATION: "Increases Supplicant shield regeneration rate.", + item_names.SUPPLICANT_ZENITH_PITCH: "Allows Supplicants to attack air units.", item_names.ADEPT_SHOCKWAVE: "When Adepts deal a finishing blow, their projectiles can jump onto 2 additional targets.", item_names.ADEPT_RESONATING_GLAIVES: "Increases Adept attack speed.", item_names.ADEPT_PHASE_BULWARK: "Increases Adept shield maximum by +50.", diff --git a/worlds/sc2/item/item_names.py b/worlds/sc2/item/item_names.py index af7872ee1579..a11020b4ebb5 100644 --- a/worlds/sc2/item/item_names.py +++ b/worlds/sc2/item/item_names.py @@ -698,6 +698,7 @@ SUPPLICANT_BLOOD_SHIELD = "Blood Shield (Supplicant)" SUPPLICANT_SOUL_AUGMENTATION = "Soul Augmentation (Supplicant)" SUPPLICANT_SHIELD_REGENERATION = "Shield Regeneration (Supplicant)" +SUPPLICANT_ZENITH_PITCH = "Zenith Pitch (Supplicant)" ADEPT_SHOCKWAVE = "Shockwave (Adept)" ADEPT_RESONATING_GLAIVES = "Resonating Glaives (Adept)" ADEPT_PHASE_BULWARK = "Phase Bulwark (Adept)" diff --git a/worlds/sc2/item/item_tables.py b/worlds/sc2/item/item_tables.py index be9f47b3bb03..2f76e3140604 100644 --- a/worlds/sc2/item/item_tables.py +++ b/worlds/sc2/item/item_tables.py @@ -1885,6 +1885,7 @@ def get_full_item_list(): item_names.ARCHON_POWER_SIPHON: ItemData(392 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_4, 2, SC2Race.PROTOSS, parent=parent_names.ARCHON_SOURCE), item_names.ARCHON_ERADICATE: ItemData(393 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_4, 3, SC2Race.PROTOSS, parent=parent_names.ARCHON_SOURCE), item_names.ARCHON_OBLITERATE: ItemData(394 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_4, 4, SC2Race.PROTOSS, parent=parent_names.ARCHON_SOURCE), + item_names.SUPPLICANT_ZENITH_PITCH: ItemData(395 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.Forge_4, 5, SC2Race.PROTOSS, parent=item_names.SUPPLICANT), # War Council item_names.ZEALOT_WHIRLWIND: ItemData(500 + SC2LOTV_ITEM_ID_OFFSET, ProtossItemType.War_Council, 0, SC2Race.PROTOSS, classification=ItemClassification.progression, parent=item_names.ZEALOT),