Adds purity seals (#93496)

## About The Pull Request

Adds purity seals for the chaplain's use. Calling them cheap stickers
may get you branded as a heretic.


## Why It's Good For The Game


Sometimes people need more than just your word that their lead pipe has
been blessed by you, the most holy chaplain. That's where the purity
seals come into play, as they are a visual indicator of your deity's
approval.
<img width="259" height="182" alt="image"
src="https://github.com/user-attachments/assets/5492bae8-175a-4387-9279-263fbb492510"
/>


## Changelog
🆑
add: Added purity seals, which may be found inside two boxes being sold
by the Deus-Vend
/🆑
This commit is contained in:
L0pz
2025-10-19 02:16:19 +03:00
committed by GitHub
parent 37f534eed4
commit 0df0ef5b7b
4 changed files with 21 additions and 0 deletions
+9
View File
@@ -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"
@@ -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)
+1
View File
@@ -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,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB