Skip to content

Commit

Permalink
Declare No Logic Protoss Starting units
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jan 31, 2024
1 parent d61a376 commit eb551c7
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions worlds/sc2/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -1826,15 +1826,30 @@ def get_item_table(multiworld: MultiWorld, player: int):
ItemNames.ULTRALISK,
ItemNames.SWARM_HOST
}),
SC2Race.PROTOSS: advanced_basic_units[SC2Race.PROTOSS]
SC2Race.PROTOSS: advanced_basic_units[SC2Race.PROTOSS].union({
ItemNames.CARRIER,
ItemNames.TEMPEST,
ItemNames.VOID_RAY,
ItemNames.DESTROYER,
ItemNames.COLOSSUS,
ItemNames.WRATHWALKER,
ItemNames.SCOUT,
ItemNames.HIGH_TEMPLAR,
ItemNames.SIGNIFIER,
ItemNames.ASCENDANT,
ItemNames.DARK_ARCHON,
ItemNames.SUPPLICANT,
})
}

not_balanced_starting_units = {
ItemNames.SIEGE_TANK,
ItemNames.THOR,
ItemNames.BANSHEE,
ItemNames.BATTLECRUISER,
ItemNames.ULTRALISK
ItemNames.ULTRALISK,
ItemNames.CARRIER,
ItemNames.TEMPEST,
}


Expand Down

0 comments on commit eb551c7

Please sign in to comment.