Adds Melanie's Skeleton

This commit is contained in:
Heroman
2019-09-29 14:28:56 +10:00
parent 2e5f7d5015
commit f6f2acca6f
3 changed files with 33 additions and 1 deletions

View File

@@ -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"

View File

@@ -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