mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-21 13:05:36 +01:00
[MIRROR] Refactors monkeys into a species (#2379)
* Refactors monkeys into a species * aaa Co-authored-by: Qustinnus <Floydje123@hotmail.com> Co-authored-by: Azarak <azarak10@gmail.com>
This commit is contained in:
@@ -85,3 +85,28 @@
|
||||
new_tail.spines = spines
|
||||
*/
|
||||
//SKYRAT EDIT REMOVAL END
|
||||
|
||||
/obj/item/organ/tail/monkey
|
||||
name = "monkey tail"
|
||||
desc = "A severed monkey tail. Does not look like a banana."
|
||||
tail_type = "Monkey"
|
||||
icon_state = "severedmonkeytail"
|
||||
|
||||
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION
|
||||
/*
|
||||
/obj/item/organ/tail/monkey/Insert(mob/living/carbon/human/H, special = 0, drop_if_replaced = TRUE)
|
||||
..()
|
||||
if(istype(H))
|
||||
if(!("tail_monkey" in H.dna.species.mutant_bodyparts))
|
||||
H.dna.species.mutant_bodyparts |= "tail_monkey"
|
||||
H.dna.features["tail_monkey"] = tail_type
|
||||
H.update_body()
|
||||
|
||||
/obj/item/organ/tail/monkey/Remove(mob/living/carbon/human/H, special = 0)
|
||||
..()
|
||||
if(istype(H))
|
||||
H.dna.features["tail_monkey"] = "None"
|
||||
H.dna.species.mutant_bodyparts -= "tail_monkey"
|
||||
H.update_body()
|
||||
*/
|
||||
//SKYRAT EDIT REMOVAL END
|
||||
|
||||
Reference in New Issue
Block a user