mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 03:27:46 +01:00
Adds Melanie's Skeleton
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user