mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 00:51:26 +00:00
Xenomorphs are pretty much badly done and don't really fit at all. This pr fully removes the human type ones, alongside with the infection, eggs and facehuggers.
17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
/datum/game_mode/infestation
|
|
name = "Infestation (Borers/Lings)"
|
|
round_description = "There's something in the walls!"
|
|
extended_round_description = "Two alien antagonists (Cortical Borers or Changelings) may spawn during this round."
|
|
config_tag = "infestation"
|
|
required_players = 15
|
|
required_enemies = 5
|
|
end_on_antag_death = 1
|
|
antag_tags = list(MODE_BORER, MODE_CHANGELING)
|
|
require_all_templates = 1
|
|
votable = 0
|
|
|
|
/datum/game_mode/infestation/create_antagonists()
|
|
// Two of the three.
|
|
antag_tags -= pick(antag_tags)
|
|
..()
|