Skip to content

Commit

Permalink
easy nerfs
Browse files Browse the repository at this point in the history
  • Loading branch information
wraith-54321 committed Apr 10, 2024
1 parent 8c53e33 commit 37d0880
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
req_access = list(ACCESS_CLOCKCULT)
damage_deflection = 10

/obj/machinery/door/airlock/bronze/clock/Initialize(mapload)
. = ..()
if(on_reebe(src))
damage_deflection = 0

/obj/machinery/door/airlock/bronze/clock/canAIControl(mob/user)
return (IS_CLOCK(user) && !isAllPowerCut())

Expand Down
3 changes: 3 additions & 0 deletions monkestation/code/modules/antagonists/clock_cult/turf.dm
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@

//do the deconstruction stuff, this really should be a proc on Rwalls as well
/turf/closed/wall/clockwork/proc/next_decon_state(obj/item/used_tool, mob/user, current_state, set_state, sent_message, use_time = 4 SECONDS)
if(on_reebe(src))
use_time = round(use_time / 2, 0.1) //each stage takes half as long on reebe

if(used_tool.use_tool(src, user, use_time, volume=100))
if(!istype(src, /turf/closed/wall/clockwork) || d_state != current_state)
return TRUE
Expand Down

0 comments on commit 37d0880

Please sign in to comment.