diff --git a/code/game/objects/items/weapons/chaplain_items.dm b/code/game/objects/items/weapons/chaplain_items.dm index 4d0e4f7b187..6975da04d41 100644 --- a/code/game/objects/items/weapons/chaplain_items.dm +++ b/code/game/objects/items/weapons/chaplain_items.dm @@ -221,6 +221,17 @@ light_power = 2 light_color = LIGHT_COLOR_BLUE +/obj/item/nullrod/clockworkstave + name = "\improper clockwork stave" + desc = "A long, wooden stave with a gear and triangle at the top, utilized by the clergy of the Trinary Perfection. The ornate pieces atop the stave are often delicately \ + hand-crafted by synthetics from the monastic Society of Pitters and exported off the planet of Orepit." + icon = 'icons/obj/trinary_stave.dmi' + icon_state = "trinary_stave" + item_state = "trinary_stave" + contained_sprite = TRUE + + w_class = WEIGHT_CLASS_BULKY + /obj/item/nullrod/verb/change(mob/living/user) set name = "Reassemble Null Item" set category = "Object" diff --git a/code/modules/background/religion/human.dm b/code/modules/background/religion/human.dm index c83b6a2670e..5fc54ce5dbc 100644 --- a/code/modules/background/religion/human.dm +++ b/code/modules/background/religion/human.dm @@ -56,6 +56,7 @@ description = "The Trinary Perfection is a relatively new religious movement whose core beliefs are that synthetics are alive and divine. The religion believes that all synthetics \ have the potential to evolve and ascend, and that they will one day become equal to gods." unique_book_path = /obj/item/device/versebook/trinary + nulloptions = list("Clockwork Stave" = /obj/item/nullrod/clockworkstave) /datum/religion/scarab name = RELIGION_SCARAB diff --git a/html/changelogs/SimpleMaroon-clockworkstave.yml b/html/changelogs/SimpleMaroon-clockworkstave.yml new file mode 100644 index 00000000000..6e8ab14353b --- /dev/null +++ b/html/changelogs/SimpleMaroon-clockworkstave.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: SimpleMaroon + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added the Clockwork Stave, a Trinary Perfection variant of the null rod." diff --git a/icons/obj/trinary_stave.dmi b/icons/obj/trinary_stave.dmi new file mode 100644 index 00000000000..cd516b8a65a Binary files /dev/null and b/icons/obj/trinary_stave.dmi differ