mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Steals tg's span macros * Fix alphabet * Updated some more spans * Misses a conflict * Fix compile errors * Converts more spans * oops
22 lines
796 B
Plaintext
22 lines
796 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_warning("You can feel it in your bones!")
|
|
time_coeff = 5
|
|
instability = 5
|
|
difficulty = 8
|
|
power_coeff = 1
|
|
|
|
|
|
/datum/mutation/human/radioactive/on_life()
|
|
radiation_pulse(owner, 20 * GET_MUTATION_POWER(src))
|
|
|
|
/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]
|