From 60f1330e35526e709ec19f408a53f24e35193405 Mon Sep 17 00:00:00 2001 From: Simplehorror <101573582+Simplehorror@users.noreply.github.com> Date: Fri, 4 Nov 2022 21:18:19 +0000 Subject: [PATCH 1/2] Alternate buff --- code/game/gamemodes/clock_cult/clock_cult.dm | 7 +++++-- .../antagonists/clockcult/clock_helpers/power_helpers.dm | 2 +- .../mob/living/carbon/human/species_types/golems.dm | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/clock_cult/clock_cult.dm b/code/game/gamemodes/clock_cult/clock_cult.dm index 482b76d148c4..86a17fd07e34 100644 --- a/code/game/gamemodes/clock_cult/clock_cult.dm +++ b/code/game/gamemodes/clock_cult/clock_cult.dm @@ -93,8 +93,11 @@ Credit where due: if(.) var/datum/antagonist/clockcult/servant = . var/datum/team/clockcult/cult = servant.get_team() - cult.check_size() - + cult.check_size() + if (GLOB.ratvar_approaches) + L.set_species(/datum/species/golem/clockwork/no_scrap) + to_chat(L, "The beacon is active! You are reformed in Ratvar's image.") + if(!silent && L) if(.) to_chat(L, "The world before you suddenly glows a brilliant yellow. [issilicon(L) ? "You cannot compute this truth!" : \ diff --git a/code/modules/antagonists/clockcult/clock_helpers/power_helpers.dm b/code/modules/antagonists/clockcult/clock_helpers/power_helpers.dm index 05cec8adb210..7542c93ca2a2 100644 --- a/code/modules/antagonists/clockcult/clock_helpers/power_helpers.dm +++ b/code/modules/antagonists/clockcult/clock_helpers/power_helpers.dm @@ -6,7 +6,7 @@ /proc/adjust_clockwork_power(amount) //Adjusts the global clockwork power by this amount (min 0.) var/current_power if(GLOB.ratvar_approaches) - amount *= 0.75 //The herald's beacon reduces power costs by 25% across the board! + amount *= 0.25 //The herald's beacon reduces power costs by 50% across the board! if(GLOB.ratvar_awakens) current_power = GLOB.clockwork_power = INFINITY else diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm index ccf8569f0e58..9a4fa69f7c1e 100644 --- a/code/modules/mob/living/carbon/human/species_types/golems.dm +++ b/code/modules/mob/living/carbon/human/species_types/golems.dm @@ -732,6 +732,7 @@ has_corpse = TRUE random_eligible = FALSE info_text = "As a Clockwork Golem Servant, you are faster than other types of golems." //warcult golems leave a corpse + speedmod = 0 //yogs change /datum/species/golem/cloth name = "Cloth Golem" From 0f9619404455a284433b46020d60e5c1e241acea Mon Sep 17 00:00:00 2001 From: Simplehorror <101573582+Simplehorror@users.noreply.github.com> Date: Fri, 4 Nov 2022 21:22:23 +0000 Subject: [PATCH 2/2] learn to read --- code/modules/mob/living/carbon/human/species_types/golems.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm index 9a4fa69f7c1e..ccf8569f0e58 100644 --- a/code/modules/mob/living/carbon/human/species_types/golems.dm +++ b/code/modules/mob/living/carbon/human/species_types/golems.dm @@ -732,7 +732,6 @@ has_corpse = TRUE random_eligible = FALSE info_text = "As a Clockwork Golem Servant, you are faster than other types of golems." //warcult golems leave a corpse - speedmod = 0 //yogs change /datum/species/golem/cloth name = "Cloth Golem"