mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-24 13:47:33 +01:00
Merge pull request #5611 from Seris02/simplemobchardir
simple mob species for certain simple mobs in character directory
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
/mob/living/simple_mob/slime/promethean/character_directory_species()
|
||||
if (humanform)
|
||||
return "[humanform.custom_species ? humanform.custom_species : (humanform.species ? humanform.species.name : "Promethean Blob")]"
|
||||
return "Promethean Blob"
|
||||
+5
@@ -380,6 +380,11 @@
|
||||
return
|
||||
..()
|
||||
|
||||
/mob/living/simple_mob/protean_blob/character_directory_species()
|
||||
if (humanform)
|
||||
return "[humanform.custom_species ? humanform.custom_species : (humanform.species ? humanform.species.name : "Protean")]"
|
||||
return "Protean"
|
||||
|
||||
var/global/list/disallowed_protean_accessories = list(
|
||||
/obj/item/clothing/accessory/holster,
|
||||
/obj/item/clothing/accessory/storage,
|
||||
|
||||
@@ -104,3 +104,6 @@
|
||||
var/vs_fullness = vore_fullness_ex[belly_class]
|
||||
if(vs_fullness > 0)
|
||||
add_overlay("[icon_state]_[belly_class]-[vs_fullness]")
|
||||
|
||||
/mob/living/simple_mob/proc/character_directory_species()
|
||||
return "simplemob"
|
||||
|
||||
Reference in New Issue
Block a user