Skip to content

Commit

Permalink
Merge pull request Ziktofel#297 from itsjustbones/add-hunterling
Browse files Browse the repository at this point in the history
Add hunterling
  • Loading branch information
Ziktofel authored Sep 3, 2024
2 parents 00fc24a + a9ea272 commit 51c5866
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions worlds/sc2/docs/contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Contibutors are listed with preferred or Discord names first, with github userna
* Alice Voltaire (@AliceVoltaire)
* Genderdruid (@ArchonofFail)
* CrazedCollie (@FoxOfWar)
* Bones (@itsjustbones)

### Additional Beta testing and bug reports
* Varcklen (@Varcklen)
Expand Down
1 change: 1 addition & 0 deletions worlds/sc2/item_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,7 @@ def _ability_desc(unit_name_plural: str, ability_name: str, ability_description:
item_names.HUNTER_KILLERS: "Elite Hydralisks that may be called in from the Predator Nest.",
item_names.DEVOURING_ONES: "Mercenary Zerglings.",
item_names.TORRASQUE_MERC: "Torrasque Mercenary.",
item_names.HUNTERLING: "Hunterling Mercenary.",
item_names.OVERLORD_VENTRAL_SACS: "Overlords gain the ability to transport ground units.",
item_names.OVERLORD_GENERATE_CREEP: "Overlords gain the ability to generate creep while standing still.",
item_names.OVERLORD_ANTENNAE: "Increases Overlord sight range.",
Expand Down
3 changes: 2 additions & 1 deletion worlds/sc2/item_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,10 @@
INFESTED_MEDICS = "Infested Medics"
INFESTED_SIEGE_TANKS = "Infested Siege Tanks"
INFESTED_BANSHEES = "Infested Banshees"
DEVOURING_ONES = "Devouring Ones"
DEVOURING_ONES = "Devouring Ones"
HUNTER_KILLERS = "Hunter Killers"
TORRASQUE_MERC = "Torrasque"
HUNTERLING = "Hunterling"

# Kerrigan Upgrades
KERRIGAN_KINETIC_BLAST = "Kinetic Blast (Kerrigan Ability)"
Expand Down
1 change: 1 addition & 0 deletions worlds/sc2/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1534,6 +1534,7 @@ def get_full_item_list():
item_names.DEVOURING_ONES: ItemData(603 + SC2HOTS_ITEM_ID_OFFSET, ZergItemType.Mercenary, 3, SC2Race.ZERG, origin={"ext"}),
item_names.HUNTER_KILLERS: ItemData(604 + SC2HOTS_ITEM_ID_OFFSET, ZergItemType.Mercenary, 4, SC2Race.ZERG, origin={"ext"}),
item_names.TORRASQUE_MERC: ItemData(605 + SC2HOTS_ITEM_ID_OFFSET, ZergItemType.Mercenary, 5, SC2Race.ZERG, origin={"ext"}),
item_names.HUNTERLING: ItemData(606 + SC2HOTS_ITEM_ID_OFFSET, ZergItemType.Mercenary, 6, SC2Race.ZERG, origin={"ext"}),

# Misc Upgrades
item_names.OVERLORD_VENTRAL_SACS: ItemData(700 + SC2HOTS_ITEM_ID_OFFSET, ZergItemType.Evolution_Pit, 6, SC2Race.ZERG, origin={"bw"}, classification=ItemClassification.progression),
Expand Down

0 comments on commit 51c5866

Please sign in to comment.