mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-09 00:01:52 +01:00
12f0ec568f
* adds the antenna power to genetics it gives you an innate radio * adds paranoia and mind reader * foil hat interaction, sprites, tweaks * upstream change never webedit, kids * fixes conflict-fixing error
21 lines
713 B
Plaintext
21 lines
713 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
|
|
|
|
|
|
/datum/mutation/human/radioactive/on_life()
|
|
radiation_pulse(owner, 20)
|
|
|
|
/datum/mutation/human/radioactive/New()
|
|
..()
|
|
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]
|