Adds a bone tumor specific to slime people (#25320)

* Adds flavor to slime people bone tumors

* Adds slime tumor, a type of bone tumor

* Update code/modules/reagents/chemistry/reagents/medicine.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>

* Update code/modules/reagents/chemistry/reagents/medicine.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>

* Update code/modules/surgery/organs/bone_tumor.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>

* Update code/modules/surgery/organs/bone_tumor.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>

* Update code/modules/surgery/organs/bone_tumor.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>

* Update code/modules/reagents/chemistry/reagents/medicine.dm

Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>

---------

Signed-off-by: Social-Moth <117739059+Social-Moth@users.noreply.github.com>
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
This commit is contained in:
Social-Moth
2024-05-10 13:36:24 +00:00
committed by GitHub
co-authored by DGamerL Henri215
parent 45cc3649d5
commit f28b525e62
2 changed files with 8 additions and 1 deletions
@@ -1020,7 +1020,10 @@
if(ishuman(M) && prob(5))
var/mob/living/carbon/human/H = M
if(!H.get_int_organ(/obj/item/organ/internal/bone_tumor))
new/obj/item/organ/internal/bone_tumor(H)
if(isslimeperson(H))
new /obj/item/organ/internal/bone_tumor/slime_tumor(H)
else
new /obj/item/organ/internal/bone_tumor(H)
return ..()