Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

buffs singularity radiation #5664

Merged
merged 1 commit into from
Jul 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions code/modules/power/singularity/singularity.dm
Original file line number Diff line number Diff line change
Expand Up @@ -431,11 +431,12 @@ GLOBAL_LIST_BOILERPLATE(all_singularities, /obj/singularity)
to_chat(M, "<span class=\"danger\">You hear an uneartly ringing, then what sounds like a shrilling kettle as you are washed with a wave of heat.</span>")
to_chat(M, "<span class=\"danger\">You don't even have a moment to react as you are reduced to ashes by the intense radiation.</span>")
M.dust()
radiation_pulse(src, energy, RAD_FALLOFF_ENGINE_SINGULARITY)
radiation_pulse(src, energy * 10, RAD_FALLOFF_ENGINE_SINGULARITY)

/obj/singularity/proc/pulse()
//! if you hit super you eat shit from 50k :^)
radiation_pulse(src, clamp(energy, 0, 50000))
// stage 3 is around 10,000 at epicenter
radiation_pulse(src, clamp(energy * 10, 0, 50000))

/obj/singularity/proc/on_capture()
chained = 1
Expand Down