mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 02:43:16 +00:00
* /mob/living/proc/Life(delta_time) * a Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com> Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
22 lines
847 B
Plaintext
22 lines
847 B
Plaintext
/datum/mutation/human/radioactive
|
|
name = "Radioactivity"
|
|
desc = "A volatile mutation that causes the host to sent out deadly beta radiation. This affects both the hosts and their surroundings."
|
|
quality = NEGATIVE
|
|
text_gain_indication = "<span class='warning'>You can feel it in your bones!</span>"
|
|
time_coeff = 5
|
|
instability = 5
|
|
difficulty = 8
|
|
power_coeff = 1
|
|
|
|
|
|
/datum/mutation/human/radioactive/on_life(delta_time, times_fired)
|
|
radiation_pulse(owner, 10 * GET_MUTATION_POWER(src) * delta_time)
|
|
|
|
/datum/mutation/human/radioactive/New(class_ = MUT_OTHER, timer, datum/mutation/human/copymut)
|
|
..()
|
|
if(!(type in visual_indicators))
|
|
visual_indicators[type] = list(mutable_appearance('icons/effects/genetics.dmi', "radiation", -MUTATIONS_LAYER))
|
|
|
|
/datum/mutation/human/radioactive/get_visual_indicator()
|
|
return visual_indicators[type][1]
|