Update dna.dm
This commit is contained in:
+5
-2
@@ -663,24 +663,27 @@
|
|||||||
var/instability = -dna.stability
|
var/instability = -dna.stability
|
||||||
dna.remove_all_mutations()
|
dna.remove_all_mutations()
|
||||||
dna.stability = 100
|
dna.stability = 100
|
||||||
if(prob(max(70-instability,0)))
|
if(prob(max(70 + instability,0)))
|
||||||
switch(rand(0,3)) //not complete and utter death
|
switch(rand(0,3)) //not complete and utter death
|
||||||
if(0)
|
if(0)
|
||||||
monkeyize()
|
monkeyize()
|
||||||
if(1)
|
if(1)
|
||||||
gain_trauma(/datum/brain_trauma/severe/paralysis)
|
gain_trauma(/datum/brain_trauma/severe/paralysis)
|
||||||
if(2)
|
if(2)
|
||||||
|
drop_everything()
|
||||||
corgize()
|
corgize()
|
||||||
if(3)
|
if(3)
|
||||||
to_chat(src, "<span class='notice'>Oh, we actually feel quite alright!</span>")
|
to_chat(src, "<span class='notice'>Oh, we actually feel quite alright!</span>")
|
||||||
else
|
else
|
||||||
switch(rand(0,3))
|
switch(rand(0,3))
|
||||||
if(0)
|
if(0)
|
||||||
|
drop_everything()
|
||||||
gib()
|
gib()
|
||||||
if(1)
|
if(1)
|
||||||
|
drop_everything()
|
||||||
dust()
|
dust()
|
||||||
|
|
||||||
if(2)
|
if(2)
|
||||||
|
drop_everything()
|
||||||
death()
|
death()
|
||||||
petrify(INFINITY)
|
petrify(INFINITY)
|
||||||
if(3)
|
if(3)
|
||||||
|
|||||||
Reference in New Issue
Block a user