From 527e1ec16824df95f375ed3bc16b9d116f9076d4 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Mon, 24 Dec 2018 09:09:44 +0100 Subject: [PATCH] Adding a pack with 1 of each type of collar They can be chosen in Loadout so why not let people make spontaneous pets. Or give their ~~slaves~~ loved ones some fun presemts! --- code/datums/supplypacks/recreation.dm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/code/datums/supplypacks/recreation.dm b/code/datums/supplypacks/recreation.dm index 7f801ea1b3..50afcf7f95 100644 --- a/code/datums/supplypacks/recreation.dm +++ b/code/datums/supplypacks/recreation.dm @@ -67,4 +67,19 @@ /obj/item/device/pipe_painter = 2, /obj/item/device/floor_painter = 2, /obj/item/device/closet_painter = 2 - ) \ No newline at end of file + ) +//Chompstation add: adding a pack with 1 of each type of collar +/datum/supply_packs/recreation/collars + name = "Collar bundle" + contains = list( + /obj/item/clothing/accessory/collar/shock = 1, + /obj/item/clothing/accessory/collar/spike = 1, + /obj/item/clothing/accessory/collar/silver = 1, + /obj/item/clothing/accessory/collar/gold = 1, + /obj/item/clothing/accessory/collar/bell = 1, + /obj/item/clothing/accessory/collar/pink = 1, + /obj/item/clothing/accessory/collar/holo = 1 + ) + cost = 25 + containertype = /obj/structure/closet/crate + containername = "collar crate"