diff --git a/code/game/objects/items/stickers.dm b/code/game/objects/items/stickers.dm index 99247493795..eb4b20d6f17 100644 --- a/code/game/objects/items/stickers.dm +++ b/code/game/objects/items/stickers.dm @@ -220,3 +220,12 @@ /obj/item/sticker/syndicate/trap name = "bear trap sticker" icon_state = "trap" + +/obj/item/sticker/purity_seal + name = "purity seal" + icon_state = "purity_seal_1" + desc = "Looking closer, you realize it's actually a mass produced sticker. You suppose it's the holiness that counts." + +/obj/item/sticker/purity_seal/purity_seal_2 + icon_state = "purity_seal_2" + diff --git a/code/game/objects/items/storage/boxes/service_boxes.dm b/code/game/objects/items/storage/boxes/service_boxes.dm index d76cb25f14a..b751cfc1e5d 100644 --- a/code/game/objects/items/storage/boxes/service_boxes.dm +++ b/code/game/objects/items/storage/boxes/service_boxes.dm @@ -294,3 +294,14 @@ /obj/item/storage/box/heretic_box/PopulateContents() for(var/i in 1 to rand(1,4)) new /obj/item/toy/reality_pierce(src) + + +/obj/item/storage/box/purity_seal_box + name = "box of purity seals" + desc = "A box containing several blessed purity seals." + +/obj/item/storage/box/purity_seal_box/PopulateContents() + for(var/i in 1 to 4) + new /obj/item/sticker/purity_seal(src) + new /obj/item/sticker/purity_seal/purity_seal_2(src) + diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm index 3d16e89aab4..1d92e7448fc 100644 --- a/code/modules/vending/wardrobes.dm +++ b/code/modules/vending/wardrobes.dm @@ -569,6 +569,7 @@ GLOBAL_VAR_INIT(roaches_deployed, FALSE) /obj/item/radio/headset/headset_srv = 2, /obj/item/clothing/suit/chaplainsuit/habit = 1, /obj/item/clothing/head/chaplain/habit_veil = 1, + /obj/item/storage/box/purity_seal_box = 2, ) contraband = list( /obj/item/toy/plush/ratplush = 1, diff --git a/icons/obj/toys/stickers.dmi b/icons/obj/toys/stickers.dmi index 80c0e138e38..38114a13ead 100644 Binary files a/icons/obj/toys/stickers.dmi and b/icons/obj/toys/stickers.dmi differ