diff --git a/code/controllers/subsystem/treasury.dm b/code/controllers/subsystem/treasury.dm
index d5d7b44e772..9ef645fee27 100644
--- a/code/controllers/subsystem/treasury.dm
+++ b/code/controllers/subsystem/treasury.dm
@@ -199,18 +199,18 @@ SUBSYSTEM_DEF(treasury)
if (amt > 0)
// Player received money
if(source)
- send_ooc_note("MEISTER: Your account has received [amt] mammon. ([source])", name = target_name)
+ send_ooc_note("BANKHEAD: Your account has received [amt] mammon. ([source])", name = target_name)
log_to_steward("+[amt] from treasury to [target_name] ([source])")
else
- send_ooc_note("MEISTER: Your account has received [amt] mammon.", name = target_name)
+ send_ooc_note("BANKHEAD: Your account has received [amt] mammon.", name = target_name)
log_to_steward("+[amt] from treasury to [target_name]")
else if (amt < 0)
// Player was fined
if(source)
- send_ooc_note("MEISTER: Your account was fined [abs(amt)] mammon. ([source])", name = target_name)
+ send_ooc_note("BANKHEAD: Your account was fined [abs(amt)] mammon. ([source])", name = target_name)
log_to_steward("[abs(amt)] was fined from [target_name] ([source])")
else
- send_ooc_note("MEISTER: Your account was fined [abs(amt)] mammon.", name = target_name)
+ send_ooc_note("BANKHEAD: Your account was fined [abs(amt)] mammon.", name = target_name)
log_to_steward("[abs(amt)] was fined from [target_name]")
return TRUE
@@ -268,10 +268,10 @@ SUBSYSTEM_DEF(treasury)
for(var/X in bank_accounts)
if(X == target)
if(bank_accounts[X] < amt) // Check if the withdrawal amount exceeds the player's account balance
- send_ooc_note("MEISTER: Error: Insufficient funds in the account to complete the withdrawal.", name = target_name)
+ send_ooc_note("BANKHEAD: Error: Insufficient funds in the account to complete the withdrawal.", name = target_name)
return // Return without processing the transaction
if(treasury_value < amt) // Check if the amount exceeds the treasury balance
- send_ooc_note("MEISTER: Error: Insufficient funds in the treasury to complete the transaction.", name = target_name)
+ send_ooc_note("BANKHEAD: Error: Insufficient funds in the treasury to complete the transaction.", name = target_name)
return // Return early if the treasury balance is insufficient
bank_accounts[X] -= amt
treasury_value -= amt
diff --git a/code/game/objects/structures/fake_machines/ATM.dm b/code/game/objects/structures/fake_machines/ATM.dm
index f94e63f22e6..b5163493aa1 100644
--- a/code/game/objects/structures/fake_machines/ATM.dm
+++ b/code/game/objects/structures/fake_machines/ATM.dm
@@ -1,6 +1,6 @@
/obj/structure/fake_machine/atm
- name = "MEISTER"
- desc = "Stores and withdraws currency for accounts managed by the Kingdom."
+ name = "bankhead machina"
+ desc = "A woefully expensive Truetech machine used by nobles around the Goblet. A sliver of fractured air inside gives this object life, and its steam-powered guts work tirelessly to accurately and fairly serve as the face of your trusty bankers."
icon = 'icons/roguetown/misc/machines.dmi'
icon_state = "atm"
density = FALSE
@@ -61,10 +61,10 @@
record_round_statistic(STATS_MAMMONS_WITHDRAWN, coin_amt * mod)
budget2change(coin_amt*mod, user, selection)
else
- to_chat(user, "The machine bites my finger.")
+ to_chat(user, "The machine surveys my face, storing it in recognition.")
icon_state = "atm-b"
H.flash_fullscreen("redflash3")
- playsound(H, 'sound/combat/hits/bladed/genstab (1).ogg', 100, FALSE, -1)
+ playsound(H, 'sound/misc/beep.ogg', 100, FALSE, -1)
SStreasury.create_bank_account(H)
if(H.mind)
var/datum/job/target_job = SSjob.GetJob(H.mind.assigned_role)
@@ -106,4 +106,4 @@
/obj/structure/fake_machine/atm/examine(mob/user)
. += ..()
- . += span_info("The current tax rate on deposits is [SStreasury.tax_value * 100] percent. Kingdom nobles exempt.")
+ . += span_info("The current tax rate on deposits is [SStreasury.tax_value * 100] percent. Etgard nobles exempt.")
diff --git a/code/game/objects/structures/fake_machines/mail.dm b/code/game/objects/structures/fake_machines/mail.dm
index c183094dbf7..a181a5ef119 100644
--- a/code/game/objects/structures/fake_machines/mail.dm
+++ b/code/game/objects/structures/fake_machines/mail.dm
@@ -1,8 +1,8 @@
GLOBAL_LIST_EMPTY(letters_sent)
/obj/structure/fake_machine/mail
- name = "HERMES"
- desc = "Carrier zads have fallen severely out of fashion ever since the advent of this hydropneumatic mail system."
+ name = "speaking machina"
+ desc = "A Truetech machine of pipes and cleverly-placed aqueducts which ferry your mail to any one of its labelled constituents."
icon = 'icons/roguetown/misc/machines.dmi'
icon_state = "mail"
density = FALSE
@@ -71,7 +71,7 @@ GLOBAL_LIST_EMPTY(letters_sent)
. += span_info("Load a coin inside, then right click to send a letter.")
. += span_info("Left click with a paper to send a prewritten letter for free.")
if(HAS_TRAIT(user, TRAIT_INQUISITION))
- . += span_info("
The Oratorium's reliquary can be accessed via a secret compartment fitted within the HERMES. Load a Marque to access it.")
+ . += span_info("
The Oratorium's reliquary can be accessed via a secret compartment fitted within the speaking machina. Load a Marque to access it.")
. += span_info("You can send arrival slips, accusation slips, fully loaded INDEXERs or confessions here.")
. += span_info("Properly sign them. Include an INDEXER where needed. Stamp them for two additional Marques.")
@@ -714,7 +714,7 @@ GLOBAL_LIST_EMPTY(letters_sent)
else
dat += "#[X.ournum] [capitalize(get_area_name(X))]
"
- var/datum/browser/popup = new(user, "hermes_directory", "
HERMES DIRECTORY", 387, 420)
+ var/datum/browser/popup = new(user, "hermes_directory", "MAIL DIRECTORY", 387, 420)
popup.set_content(dat)
popup.open(FALSE)
diff --git a/code/game/objects/structures/fake_machines/scomm.dm b/code/game/objects/structures/fake_machines/scomm.dm
index 918d832da08..5cf4a050f5c 100644
--- a/code/game/objects/structures/fake_machines/scomm.dm
+++ b/code/game/objects/structures/fake_machines/scomm.dm
@@ -1,7 +1,7 @@
/obj/structure/fake_machine/scomm
- name = "SCOM"
- desc = ""
+ name = "farcrier telephone"
+ desc = "A miracle of magical technique which can broadcast a voice far and wide, so long as you stand close enough to it."
icon = 'icons/roguetown/misc/machines.dmi'
icon_state = "scomm1"
density = FALSE
diff --git a/code/game/objects/structures/fake_machines/steward.dm b/code/game/objects/structures/fake_machines/steward.dm
index 198e841ac52..6ff50d047f8 100644
--- a/code/game/objects/structures/fake_machines/steward.dm
+++ b/code/game/objects/structures/fake_machines/steward.dm
@@ -38,8 +38,8 @@
. = ..()
/obj/structure/fake_machine/steward
- name = "MASTER OF NERVES"
- desc = ""
+ name = "prime stockhead"
+ desc = "A machine used by the Treasury to accurately account for its contents, and requisition pre-ordained materials from far away."
icon = 'icons/roguetown/misc/machines.dmi'
icon_state = "steward_machine"
density = TRUE
@@ -58,7 +58,7 @@
/obj/structure/fake_machine/steward/attackby(obj/item/I, mob/user, params)
if(istype(I, /obj/item/coin))
record_round_statistic(STATS_MAMMONS_DEPOSITED, I.get_real_price())
- SStreasury.give_money_treasury(I.get_real_price(), "NERVE MASTER deposit")
+ SStreasury.give_money_treasury(I.get_real_price(), "BANKHEAD deposit")
qdel(I)
playsound(src, 'sound/misc/coininsert.ogg', 100, FALSE, -1)
return
diff --git a/code/game/objects/structures/fake_machines/stockpile.dm b/code/game/objects/structures/fake_machines/stockpile.dm
index ed28bfb6ac7..a381c222346 100644
--- a/code/game/objects/structures/fake_machines/stockpile.dm
+++ b/code/game/objects/structures/fake_machines/stockpile.dm
@@ -106,7 +106,7 @@
if(sound == TRUE)
playsound(loc, 'sound/misc/hiss.ogg', 100, FALSE, -1)
if(!SStreasury.give_money_account(amt, H, "+[amt] from [R.name] bounty") && message == TRUE)
- say("No account found. Submit your fingers to a Meister for inspection.")
+ say("No account found. Submit your fingers to a Bankhead for inspection.")
record_round_statistic(STATS_STOCKPILE_EXPANSES, amt)
return amt
continue
@@ -139,7 +139,7 @@
playsound(loc, 'sound/misc/disposalflush.ogg', 100, FALSE, -1)
if(amt)
if(!SStreasury.give_money_account(amt, H, "+[amt] from [R.name] bounty") && message == TRUE)
- say("No account found. Submit your fingers to a Meister for inspection.")
+ say("No account found. Submit your fingers to a Bankhead for inspection.")
record_round_statistic(STATS_STOCKPILE_EXPANSES, amt)
return amt
@@ -171,7 +171,7 @@
if(user in SStreasury.bank_accounts)
say("Bulk sold for [total_value] mammon...")
else
- say("No account found. Submit your fingers to a Meister for inspection.")
+ say("No account found. Submit your fingers to a Bankhead for inspection.")
/datum/withdraw_tab
var/stockpile_index = -1
diff --git a/code/game/objects/structures/fake_machines/vendor.dm b/code/game/objects/structures/fake_machines/vendor.dm
index 1dc4c6cff49..2a1ec26046e 100644
--- a/code/game/objects/structures/fake_machines/vendor.dm
+++ b/code/game/objects/structures/fake_machines/vendor.dm
@@ -1,5 +1,5 @@
/obj/structure/fake_machine/vendor
- name = "PEDDLER"
+ name = "peddler machina"
desc = "The stomach of this thing can be stuffed with fun things for you to buy."
icon = 'icons/roguetown/misc/machines.dmi'
icon_state = "streetvendor1"
diff --git a/code/modules/spells/spell_types/pointed/appraise.dm b/code/modules/spells/spell_types/pointed/appraise.dm
index f65c6a32828..100f312352a 100644
--- a/code/modules/spells/spell_types/pointed/appraise.dm
+++ b/code/modules/spells/spell_types/pointed/appraise.dm
@@ -20,7 +20,7 @@
var/mammonsonperson = get_mammons_in_atom(cast_on)
var/mammonsinbank = SStreasury.bank_accounts[cast_on]
var/totalvalue = mammonsinbank + mammonsonperson
- to_chat(owner, (span_notice("[cast_on] has [mammonsonperson] mammons on them, [mammonsinbank] in their meister, for a total of [totalvalue] mammons.")))
+ to_chat(owner, (span_notice("[cast_on] has [mammonsonperson] mammons on them, [mammonsinbank] in their bankhead, for a total of [totalvalue] mammons.")))
/datum/action/cooldown/spell/appraise/holy
name = "Appraise"
diff --git a/icons/roguetown/misc/decoration.dmi b/icons/roguetown/misc/decoration.dmi
index 65e8b48bd97..e1b2a68c4f3 100644
Binary files a/icons/roguetown/misc/decoration.dmi and b/icons/roguetown/misc/decoration.dmi differ
diff --git a/icons/roguetown/misc/gate.dmi b/icons/roguetown/misc/gate.dmi
index 386219c9dfc..60e59fb2dcf 100644
Binary files a/icons/roguetown/misc/gate.dmi and b/icons/roguetown/misc/gate.dmi differ
diff --git a/icons/roguetown/misc/machines.dmi b/icons/roguetown/misc/machines.dmi
index d8c4f7cf36e..89576d0db8a 100644
Binary files a/icons/roguetown/misc/machines.dmi and b/icons/roguetown/misc/machines.dmi differ
diff --git a/icons/roguetown/misc/psydon_cross.dmi b/icons/roguetown/misc/psydon_cross.dmi
index f52062fdcea..36ad4677d6d 100644
Binary files a/icons/roguetown/misc/psydon_cross.dmi and b/icons/roguetown/misc/psydon_cross.dmi differ
diff --git a/icons/roguetown/misc/structure.dmi b/icons/roguetown/misc/structure.dmi
index 52294d78bda..a4006b4fe9f 100644
Binary files a/icons/roguetown/misc/structure.dmi and b/icons/roguetown/misc/structure.dmi differ
diff --git a/icons/turf/smooth/walls/stone.dmi b/icons/turf/smooth/walls/stone.dmi
index 5c4bfd83ce6..f452d6be45f 100644
Binary files a/icons/turf/smooth/walls/stone.dmi and b/icons/turf/smooth/walls/stone.dmi differ
diff --git a/icons/turf/smooth/walls/stone.png b/icons/turf/smooth/walls/stone.png
index da8d449e5a5..3c2ab170740 100644
Binary files a/icons/turf/smooth/walls/stone.png and b/icons/turf/smooth/walls/stone.png differ
diff --git a/icons/turf/smooth/walls/stone_fancy.dmi b/icons/turf/smooth/walls/stone_fancy.dmi
index 2ef47ddc376..12a43412c55 100644
Binary files a/icons/turf/smooth/walls/stone_fancy.dmi and b/icons/turf/smooth/walls/stone_fancy.dmi differ
diff --git a/icons/turf/smooth/walls/stone_fancy.png b/icons/turf/smooth/walls/stone_fancy.png
index 50e1ddb94a3..42d6cd63c42 100644
Binary files a/icons/turf/smooth/walls/stone_fancy.png and b/icons/turf/smooth/walls/stone_fancy.png differ
diff --git a/icons/turf/smooth/walls/stone_moss.dmi b/icons/turf/smooth/walls/stone_moss.dmi
index 53426615f99..998bec69699 100644
Binary files a/icons/turf/smooth/walls/stone_moss.dmi and b/icons/turf/smooth/walls/stone_moss.dmi differ
diff --git a/icons/turf/smooth/walls/stone_moss.png b/icons/turf/smooth/walls/stone_moss.png
index d1709d06961..0fe0e370e09 100644
Binary files a/icons/turf/smooth/walls/stone_moss.png and b/icons/turf/smooth/walls/stone_moss.png differ
diff --git a/icons/turf/smooth/walls/stone_moss_blue.dmi b/icons/turf/smooth/walls/stone_moss_blue.dmi
index bee430a5faa..b85e33022eb 100644
Binary files a/icons/turf/smooth/walls/stone_moss_blue.dmi and b/icons/turf/smooth/walls/stone_moss_blue.dmi differ
diff --git a/icons/turf/smooth/walls/stone_moss_blue.png b/icons/turf/smooth/walls/stone_moss_blue.png
index 4de05c2db49..5b33f7255d6 100644
Binary files a/icons/turf/smooth/walls/stone_moss_blue.png and b/icons/turf/smooth/walls/stone_moss_blue.png differ
diff --git a/icons/turf/smooth/walls/stone_moss_red.dmi b/icons/turf/smooth/walls/stone_moss_red.dmi
index 36aaa302402..037dc58bdad 100644
Binary files a/icons/turf/smooth/walls/stone_moss_red.dmi and b/icons/turf/smooth/walls/stone_moss_red.dmi differ
diff --git a/icons/turf/smooth/walls/stone_moss_red.png b/icons/turf/smooth/walls/stone_moss_red.png
index db0053d7c71..c6eff6ef95c 100644
Binary files a/icons/turf/smooth/walls/stone_moss_red.png and b/icons/turf/smooth/walls/stone_moss_red.png differ
diff --git a/icons/turf/smooth/walls/wood.dmi b/icons/turf/smooth/walls/wood.dmi
index 9e4d3fc1471..6e5bcb002d9 100644
Binary files a/icons/turf/smooth/walls/wood.dmi and b/icons/turf/smooth/walls/wood.dmi differ
diff --git a/icons/turf/smooth/walls/wood.png b/icons/turf/smooth/walls/wood.png
index 9237a2ec41e..ce9ea3693cf 100644
Binary files a/icons/turf/smooth/walls/wood.png and b/icons/turf/smooth/walls/wood.png differ
diff --git a/icons/turf/walls.dmi b/icons/turf/walls.dmi
index e6e869ffa67..bdf99993001 100644
Binary files a/icons/turf/walls.dmi and b/icons/turf/walls.dmi differ
diff --git a/icons/turf/window.dmi b/icons/turf/window.dmi
index dd9e1969ac7..a6833ad4a62 100644
Binary files a/icons/turf/window.dmi and b/icons/turf/window.dmi differ