mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Adds Mushman Babies and Diona Nymphs as possibilities to the infestation random event (#25917)
* nymphtide worldwide * pinhead
This commit is contained in:
@@ -729,6 +729,8 @@ SEE_PIXELS 256
|
||||
#define VERM_SYPHONER 11
|
||||
#define VERM_GREMTIDE 12
|
||||
#define VERM_CRABS 13
|
||||
#define VERM_DIONA 14
|
||||
#define VERM_MUSHMEN 15
|
||||
|
||||
|
||||
#define MONSTER_BEAR 0
|
||||
|
||||
@@ -4090,6 +4090,8 @@
|
||||
"syphoners" = VERM_SYPHONER,
|
||||
"greytide gremlins" = VERM_GREMTIDE,
|
||||
"crabs" = VERM_CRABS,
|
||||
"diona nymphs" = VERM_DIONA,
|
||||
"mushman pinheads" = VERM_MUSHMEN
|
||||
)
|
||||
var/ov = vermins[input("What vermin should infest the station?", "Vermin Infestation") in vermins]
|
||||
var/ol = locations[input("Where should they spawn?", "Vermin Infestation") in locations]
|
||||
@@ -5594,7 +5596,7 @@
|
||||
if(!chosen)
|
||||
to_chat(usr, "<span class='warning'>No type chosen.</span>")
|
||||
return
|
||||
|
||||
|
||||
type_del = chosen
|
||||
|
||||
if ("exec")
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
var/max_number = 4
|
||||
|
||||
vermin = pick(VERM_MICE, VERM_LIZARDS, VERM_SPIDERS, VERM_SLIMES, VERM_BATS, VERM_BORERS, VERM_MIMICS, VERM_ROACHES, VERM_GREMLINS, VERM_BEES, VERM_HORNETS,
|
||||
VERM_SYPHONER, VERM_GREMTIDE, VERM_CRABS)
|
||||
VERM_SYPHONER, VERM_GREMTIDE, VERM_CRABS, VERM_DIONA, VERM_MUSHMEN)
|
||||
|
||||
if (override_vermin)
|
||||
vermin = override_vermin
|
||||
@@ -109,6 +109,13 @@
|
||||
spawn_types = list(/mob/living/simple_animal/crab, /mob/living/simple_animal/crab/kickstool, /mob/living/simple_animal/crab/snowy)
|
||||
vermstring = "crabs"
|
||||
max_number = 5
|
||||
if(VERM_DIONA)
|
||||
spawn_types = /mob/living/carbon/monkey/diona
|
||||
vermstring = "diona nymphs"
|
||||
if(VERM_MUSHMEN)
|
||||
spawn_types = /mob/living/carbon/monkey/mushroom
|
||||
vermstring = "mushroom pinheads"
|
||||
|
||||
|
||||
var/number = rand(2, max_number)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user