Indigestible Collar

Adds a new loadout item, a variation of the holo-collar with the intention of surviving digestion of its wearer. Approved, pretty much, from https://forum.vore-station.net/viewtopic.php?f=26&t=1531&sid=d3664ec3c397cebbf9a62e2e18fbb6f6
This commit is contained in:
TheFurryFeline
2019-06-17 11:43:56 -04:00
parent a251e5bfc8
commit d94e166347
2 changed files with 18 additions and 1 deletions

View File

@@ -30,6 +30,11 @@
display_name = "collar, holo" display_name = "collar, holo"
path = /obj/item/clothing/accessory/collar/holo path = /obj/item/clothing/accessory/collar/holo
//TFF 17/6/19 - public loadout addition: Indigestible Holocollar
/datum/gear/collar/holo/indigestible
display_name = "collar, holo (indigestible)"
path = /obj/item/clothing/accessory/collar/holo/indigestible
/datum/gear/accessory/holster /datum/gear/accessory/holster
display_name = "holster selection (Security, CD, HoP, Exploration)" display_name = "holster selection (Security, CD, HoP, Exploration)"
allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder") allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder")

View File

@@ -1848,4 +1848,16 @@ Departamental Swimsuits, for general use
icon_state = "goldenstring" icon_state = "goldenstring"
item_state = "goldenstring" item_state = "goldenstring"
w_class = ITEMSIZE_TINY w_class = ITEMSIZE_TINY
slot_flags = SLOT_TIE slot_flags = SLOT_TIE
//TFF 17/6/19 - public loadout addition: Indigestible Holocollar
/obj/item/clothing/accessory/collar/holo/indigestible
name = "Holo-collar"
desc = "A special variety of the holo-collar that seems to be made of a very durable fabric that fits around the neck."
icon_state = "collar_holo"
item_state = "collar_holo_overlay"
overlay_state = "collar_holo_overlay"
matter = list(DEFAULT_WALL_MATERIAL = 50)
//Make indigestible
/obj/item/clothing/accessory/collar/holo/indigestible/digest_act(var/atom/movable/item_storage = null)
return FALSE