diff --git a/code/modules/antagonists/clockcult/clock_scriptures/scripture_drivers.dm b/code/modules/antagonists/clockcult/clock_scriptures/scripture_drivers.dm
index 1dd4055150..10eb82a749 100644
--- a/code/modules/antagonists/clockcult/clock_scriptures/scripture_drivers.dm
+++ b/code/modules/antagonists/clockcult/clock_scriptures/scripture_drivers.dm
@@ -113,41 +113,6 @@
quickbind = TRUE
quickbind_desc = "Stuns and mutes a target from a short range."
-/*
-//Geis: Grants a short-range binding attack that allows you to mute and drag around a target in a very obvious manner.
-/datum/clockwork_scripture/ranged_ability/geis
- descname = "Melee Mute & Stun"
- name = "Geis"
- desc = "Charges your slab with divine energy, allowing you to bind and pull a struck heretic."
- invocations = list("Divinity, grant me strength...", "...to bind the heathen!")
- whispered = TRUE
- channel_time = 20
- usage_tip = "You CANNOT TAKE ANY NON-PULL ACTIONS while the target is bound, so Sigils of Submission should be placed before use."
- tier = SCRIPTURE_DRIVER
- primary_component = GEIS_CAPACITOR
- sort_priority = 5
- quickbind = TRUE
- quickbind_desc = "Allows you to bind and mute an adjacent target non-Servant.
Click your slab to disable."
- slab_overlay = "geis"
- ranged_type = /obj/effect/proc_holder/slab/geis
- ranged_message = "You charge the clockwork slab with divine energy.\n\
- Left-click a target within melee range to bind!\n\
- Click your slab to cancel."
- timeout_time = 100
-
-/datum/clockwork_scripture/ranged_ability/geis/run_scripture()
- var/servants = 0
- if(!GLOB.ratvar_awakens)
- for(var/mob/living/M in GLOB.living_mob_list)
- if(can_recite_scripture(M, TRUE))
- servants++
- if(servants > SCRIPT_SERVANT_REQ)
- whispered = FALSE
- servants -= SCRIPT_SERVANT_REQ
- channel_time = min(channel_time + servants*3, 50)
- return ..()
-*/
-
//Hateful Manacles: Applies restraints from melee over several seconds. The restraints function like handcuffs and break on removal.
/datum/clockwork_scripture/ranged_ability/hateful_manacles
descname = "Handcuffs"
@@ -241,7 +206,7 @@
sort_priority = 9
important = TRUE
quickbind = TRUE
- quickbind_desc = "Teleports you somewhere random. Use in emergencies."
+ quickbind_desc = "Teleports you somewhere random, or to an active Ark if one exists. Use in emergencies."
var/client_color
requires_full_power = TRUE
@@ -255,8 +220,6 @@
return TRUE
/datum/clockwork_scripture/abscond/recital()
- client_color = invoker.client.color
- animate(invoker.client, color = "#AF0AAF", time = 50)
. = ..()
/datum/clockwork_scripture/abscond/scripture_effects()
@@ -275,11 +238,6 @@
do_sparks(5, TRUE, invoker)
do_sparks(5, TRUE, T)
if(invoker.client)
- animate(invoker.client, color = client_color, time = 25)
-
-/datum/clockwork_scripture/abscond/scripture_fail()
- if(invoker && invoker.client)
- animate(invoker.client, color = client_color, time = 10)
//Replicant: Creates a new clockwork slab.
@@ -366,27 +324,4 @@
if(GLOB.ratvar_awakens)
portal_uses = max(portal_uses, 100) //Very powerful if Ratvar has been summoned
duration = max(duration, 100)
- return slab.procure_gateway(invoker, duration, portal_uses)
-
-/*
-//Tinkerer's Cache: Creates a tinkerer's cache, allowing global component storage.
-/datum/clockwork_scripture/create_object/tinkerers_cache
- descname = "Necessary Structure, Shares Components"
- name = "Tinkerer's Cache"
- desc = "Forms a cache that can store an infinite amount of components. All caches are linked and will provide components to slabs. \
- Striking a cache with a slab will transfer that slab's components to the global cache."
- invocations = list("Constructing...", "...a cache!")
- channel_time = 50
- consumed_components = list(BELLIGERENT_EYE = 0, VANGUARD_COGWHEEL = 0, GEIS_CAPACITOR = 0, REPLICANT_ALLOY = 1, HIEROPHANT_ANSIBLE = 0)
- object_path = /obj/structure/destructible/clockwork/cache
- creator_message = "You form a tinkerer's cache, which is capable of storing components, which will automatically be used by slabs."
- observer_message = "A hollow brass spire rises and begins to blaze!"
- usage_tip = "Slabs will draw components from the global cache after the slab's own repositories, making caches extremely useful."
- tier = SCRIPTURE_DRIVER
- one_per_tile = TRUE
- primary_component = REPLICANT_ALLOY
- sort_priority = 8
- quickbind = TRUE
- quickbind_desc = "Creates a Tinkerer's Cache, which stores components globally for slab access."
- var/static/prev_cost = 0
- */
+ return slab.procure_gateway(invoker, duration, portal_uses)
\ No newline at end of file