Nymph phyxes (#9180)

* Fixes to nymphs

* clean up lingering carbon/alien references

* Add growth to stat panel

* Add rootlocal to known languages

* add zone sel

* *nibble
This commit is contained in:
Atermonera
2023-08-02 22:41:55 -08:00
committed by GitHub
parent 0c1479abcf
commit 4d1c709fcc
25 changed files with 62 additions and 197 deletions
-4
View File
@@ -233,8 +233,6 @@
M_job = "slime"
else if(issmall(M))
M_job = "Monkey"
else if(isalien(M))
M_job = "Alien"
else
M_job = "Carbon-based"
@@ -344,8 +342,6 @@
dat += "<td>Ghost</td>"
else if(issmall(M))
dat += "<td>Monkey</td>"
else if(isalien(M))
dat += "<td>Alien</td>"
else
dat += "<td>Unknown</td>"
@@ -1,7 +0,0 @@
/datum/admin_secret_item/random_event/trigger_xenomorph_infestation
name = "Trigger a Skathari Incursion"
/datum/admin_secret_item/random_event/trigger_xenomorph_infestation/execute(var/mob/user)
. = ..()
if(.)
return xenomorphs.attempt_random_spawn()
-1
View File
@@ -277,7 +277,6 @@
switch(href_list["simplemake"])
if("observer") M.change_mob_type( /mob/observer/dead , null, null, delmob )
if("larva") M.change_mob_type( /mob/living/carbon/alien/larva , null, null, delmob )
if("nymph") M.change_mob_type( /mob/living/carbon/diona , null, null, delmob )
if("human") M.change_mob_type( /mob/living/carbon/human , null, null, delmob, href_list["species"])
if("slime") M.change_mob_type( /mob/living/simple_mob/slime/xenobio , null, null, delmob )