From e52fc0f5a2b9c3cdce0ee815aeef973a728d6190 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 28 Dec 2024 02:16:02 -0800 Subject: [PATCH] sc2: Fixing a typo in trireme item name and some minor fixes to descriptions --- worlds/sc2/item/item_descriptions.py | 6 +++--- worlds/sc2/item/item_names.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/worlds/sc2/item/item_descriptions.py b/worlds/sc2/item/item_descriptions.py index a62f414c7463..ea31e32abdd3 100644 --- a/worlds/sc2/item/item_descriptions.py +++ b/worlds/sc2/item/item_descriptions.py @@ -734,8 +734,8 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: item_names.INFESTED_BUNKER_ENGORGED_BUNKERS: "Infested Bunkers gain +2 cargo slots. Infested Trooper spawn cooldown is reduced by 20%.", item_names.INFESTED_MISSILE_TURRET_BIOELECTRIC_PAYLOAD: "Increases anti-mechanical damage of Infested Missile Turrets by +6 per missile.", item_names.INFESTED_MISSILE_TURRET_ACID_SPORE_VENTS: "Infested Missile Turrets gain a secondary weapon that applies Devourer Acid Spores in an area around the target.", - item_names.TYRANNOZOR_TYRANTS_PROTECTION: "Tyrannozors grants nearby friendly units 2 armor.", - item_names.TYRANNOZOR_BARRAGE_OF_SPIKES: "Unleash a Barrage of Spikes, dealing 100 damage to enemy ground and air units around the Tyrannozor.", + item_names.TYRANNOZOR_TYRANTS_PROTECTION: "Tyrannozors grant nearby friendly units 2 armor.", + item_names.TYRANNOZOR_BARRAGE_OF_SPIKES: _ability_desc("Tyrannozors", "Barrage of Spikes", "deals 100 damage to enemy ground and air units around the Tyrannozor"), item_names.TYRANNOZOR_IMPALING_STRIKE: "Ultralisk and Tyrannozor melee attacks have a 20% chance to stun for 2 seconds.", item_names.TYRANNOZOR_HEALING_ADAPTATION: "Ultralisks and Tyrannozors regenerate life quickly when out of combat.", item_names.BILE_LAUNCHER_ARTILLERY_DUCTS: "Increases Bile Launcher range by +8.", @@ -990,7 +990,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description: item_names.ENERGIZER_RECLAMATION: _ability_desc("Energizers", "Reclamation", "temporarily takes control of an enemy mechanical unit. When the ability expires, the enemy unit self-destructs"), item_names.ENERGIZER_FORGED_CHASSIS: "Increases Energizer Life by +20.", item_names.HAVOC_DETECT_WEAKNESS: "Havocs' Target Lock gives an additional +15% damage bonus.", - item_names.HAVOC_BLOODSHARD_RESONANCE: "Havoc gain increased range for Squad Sight, Target Lock, and Force Field.", + item_names.HAVOC_BLOODSHARD_RESONANCE: "Havocs gain increased range for Squad Sight, Target Lock, and Force Field.", item_names.ZEALOT_SENTINEL_CENTURION_LEG_ENHANCEMENTS: "Zealots, Sentinels, and Centurions gain increased movement speed.", item_names.ZEALOT_SENTINEL_CENTURION_SHIELD_CAPACITY: "Zealots, Sentinels, and Centurions gain +30 maximum shields.", item_names.ZEALOT_WHIRLWIND: "Zealot War Council upgrade. Gives Zealots the whirlwind ability, dealing damage in an area over 3 seconds.", diff --git a/worlds/sc2/item/item_names.py b/worlds/sc2/item/item_names.py index 9d9d41c3e829..b739eea8697b 100644 --- a/worlds/sc2/item/item_names.py +++ b/worlds/sc2/item/item_names.py @@ -833,7 +833,7 @@ DAWNBRINGER_SOLARITE_LENS = "Solarite Lens (Dawnbringer)" CARRIER_REPAIR_DRONES = "Repair Drones (Carrier)" SKYLORD_HYPERJUMP = "Hyperjump (Skylord)" -TRIREME_SOLAR_BEAM = "Solar Beam (Trieme)" +TRIREME_SOLAR_BEAM = "Solar Beam (Trireme)" TEMPEST_DISINTEGRATION = "Disintegration (Tempest)" # Scout ARBITER_ABILITY_EFFICIENCY = "Ability Efficiency (Arbiter)"