Tajaran Religious Versebooks (#21063)

Adds S'rendmarr and Ma'ta'ke versebooks to the game. Thanks to Tajara
Lore (especially @WilliamMurdoch) for the lore bits

Versebooks were added to loadout and now replaces the previous bible for
Tajaran priests.

In the future it might be best to merge the capabilities of bible with
versebooks (so religious versebooks can make holy water)

### Example Verses
S'rendmarr: _There is always hope beneath the light of the suns. Do not
fret at the horrors of this world, o child! Your guardians watch from
above._
Ma'ta'ke: _At that moment the king boasted of his victory and Mata’ke
quickly drew his sword, stabbing the king in his black heart who fell to
the floor. “One’s temper dictates the battle,” said Mata’ke as he wept
for his fallen battle-brother._

<img width="338" height="269" alt="image"
src="https://github.com/user-attachments/assets/da5311b6-e69a-4201-b268-099384f20f59"
/>

---------

Co-authored-by: Ben10083 <Ben10083@users.noreply.github.com>
This commit is contained in:
Ben
2025-08-01 19:51:55 +00:00
committed by GitHub
co-authored by Ben10083
parent 8c3e85f3fe
commit 206f3ec318
7 changed files with 152 additions and 6 deletions
+30 -1
View File
@@ -6,12 +6,14 @@
icon_state = "dominiabook"
item_state = "dominia"
w_class = WEIGHT_CLASS_SMALL
/// Boolean that prevents reading multiple times
var/reading = FALSE
drop_sound = 'sound/items/drop/book.ogg'
pickup_sound = 'sound/items/pickup/book.ogg'
/// takes `file2list(FILE.txt)`. Each line in the .txt file is a verse that is randomly selected
var/list/randomquip = list()
/obj/item/device/versebook/attack_self(mob/user)
@@ -197,4 +199,31 @@
/obj/item/device/versebook/nka/Initialize()
. = ..()
randomquip = file2list("texts/ingame_manuals/royalism.txt")
///
/// Tajaran Religious Texts
/obj/item/device/versebook/twinsuns
name = "\improper Holy Scrolls"
desc = "An abridged collection of teachings for those worshipers of Srendarr and Messa."
desc_extended = "Books and teachings of the Srandmarr worship have seen numerous variations over the storied existence of the faith. \
In recent times, many priests have taken to compiling their own copies of scripture and teachings for their local faithful \
until the great Horde of Scrolls has been conquered."
icon_state = "twinsunsbook"
item_state = "twinsuns"
/obj/item/device/versebook/twinsuns/Initialize()
. = ..()
randomquip = file2list("texts/ingame_manuals/twinsuns.txt")
/obj/item/device/versebook/matake
name = "\improper Ma'ta'ke legends"
desc = "An abridged collection of stories and teachings from the Matake gods."
desc_extended = "The Matake Gods and their worship has never been organized, \
however the Kraszarrumalkarii, the priesthood of Kraszar, in achieving their priestly duties, \
organize numerous volumes of stories and myths regarding the pantheon."
icon_state = "matakebook"
item_state = "matake"
/obj/item/device/versebook/matake/Initialize()
. = ..()
randomquip = file2list("texts/ingame_manuals/matake.txt")