mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-06 23:42:56 +00:00
Mutant passive mobs
Just the mice and the lizards before they evolve
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/mob/living/simple_mob/animal/passive/lizard/event
|
||||
desc = "This one looks like it is growing huge!"
|
||||
var/amount_grown = 0
|
||||
|
||||
/mob/living/simple_mob/animal/passive/lizard/event/Life()
|
||||
. = ..()
|
||||
if(amount_grown >= 0)
|
||||
amount_grown += rand(0,4)
|
||||
if(amount_grown >= 100 && icon_state != icon_dead)
|
||||
man()
|
||||
return
|
||||
|
||||
/mob/living/simple_mob/animal/passive/lizard/event/proc/man()
|
||||
visible_message("<span class='warning'>\The [src] suddenly evolves!</span>")
|
||||
new /mob/living/simple_mob/vore/aggressive/lizardman(get_turf(src))
|
||||
qdel(src)
|
||||
@@ -0,0 +1,16 @@
|
||||
/mob/living/simple_mob/animal/passive/mouse/event
|
||||
desc = "This one looks like it is growing huge!"
|
||||
var/amount_grown = 0
|
||||
|
||||
/mob/living/simple_mob/animal/passive/mouse/event/Life()
|
||||
. = ..()
|
||||
if(amount_grown >= 0)
|
||||
amount_grown += rand(0,4)
|
||||
if(amount_grown >= 100 && icon_state != icon_dead)
|
||||
rat()
|
||||
return
|
||||
|
||||
/mob/living/simple_mob/animal/passive/mouse/event/proc/rat()
|
||||
visible_message("<span class='warning'>\The [src] suddenly evolves!</span>")
|
||||
new /mob/living/simple_mob/vore/aggressive/rat/event(get_turf(src))
|
||||
qdel(src)
|
||||
Reference in New Issue
Block a user