mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Adds Melanie's Skeleton
This commit is contained in:
@@ -771,6 +771,12 @@
|
||||
ckeywhitelist = list("vorrarkul")
|
||||
character_name = list("Lucina Dakarim")
|
||||
|
||||
/datum/gear/fluff/melanie_skeleton
|
||||
path = /obj/item/clothing/under/fluff/slime_skeleton
|
||||
display_name = "Melanie's Skeleton"
|
||||
ckeywhitelist = list("vorrarkul")
|
||||
character_name = list("Melanie Farmer")
|
||||
|
||||
/datum/gear/fluff/nyssa_coat
|
||||
path = /obj/item/clothing/suit/storage/hooded/wintercoat/cargo
|
||||
display_name = "Nyssa's Coat"
|
||||
|
||||
@@ -1878,3 +1878,29 @@ Departamental Swimsuits, for general use
|
||||
rolled_sleeves = 0
|
||||
starting_accessories = null
|
||||
item_icons = list()
|
||||
|
||||
//Vorrarkul: Melanie Farmer
|
||||
/obj/item/clothing/under/fluff/slime_skeleton
|
||||
name = "Melanie's Skeleton"
|
||||
desc = "The skeleton of a promethean, still covered in residual slime. Upon closer inspection, they're not even real bones!"
|
||||
|
||||
icon = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_override = 'icons/vore/custom_clothes_vr.dmi'
|
||||
|
||||
icon_state = "melanie_skeleton"
|
||||
item_state = "melanie_skeleton_mob"
|
||||
|
||||
body_parts_covered = 0
|
||||
|
||||
species_restricted = list("exclude", SPECIES_TESHARI)
|
||||
|
||||
/obj/item/clothing/under/fluff/slime_skeleton/mob_can_equip(M as mob, slot)
|
||||
if(!..())
|
||||
return 0
|
||||
|
||||
if(istype(M,/mob/living/carbon/human))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(!(H.get_species() == SPECIES_PROMETHEAN))
|
||||
return 0
|
||||
|
||||
return 1
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 202 KiB After Width: | Height: | Size: 204 KiB |
Reference in New Issue
Block a user