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
@@ -1877,4 +1877,30 @@ Departamental Swimsuits, for general use
rolled_down = 0
rolled_sleeves = 0
starting_accessories = null
item_icons = list()
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