From d94e1663479cc49a9e0633f8ae9462e697cf49e8 Mon Sep 17 00:00:00 2001 From: TheFurryFeline Date: Mon, 17 Jun 2019 11:43:56 -0400 Subject: [PATCH] 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 --- .../loadout/loadout_accessories_vr.dm | 5 +++++ code/modules/vore/fluffstuff/custom_clothes_vr.dm | 14 +++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index e5abb1e0eb..0f186f5dfc 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -30,6 +30,11 @@ display_name = "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 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") diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index fc1fe9d0ff..82391f5f79 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -1848,4 +1848,16 @@ Departamental Swimsuits, for general use icon_state = "goldenstring" item_state = "goldenstring" w_class = ITEMSIZE_TINY - slot_flags = SLOT_TIE \ No newline at end of file + 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 \ No newline at end of file