mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
Standardize mutations
This commit is contained in:
@@ -399,7 +399,7 @@
|
||||
continue
|
||||
M.show_message("[user.name] smashed the light!", 3, "You hear a tinkle of breaking glass", 2)
|
||||
if(on && (W.flags & CONDUCT))
|
||||
//if(!user.mutations & M_RESIST_COLD)
|
||||
//if(!user.mutations & RESIST_COLD)
|
||||
if (prob(12))
|
||||
electrocute_mob(user, get_area(src), src, 0.3)
|
||||
broken()
|
||||
@@ -435,7 +435,7 @@
|
||||
var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread
|
||||
s.set_up(3, 1, src)
|
||||
s.start()
|
||||
//if(!user.mutations & M_RESIST_COLD)
|
||||
//if(!user.mutations & RESIST_COLD)
|
||||
if (prob(75))
|
||||
electrocute_mob(user, get_area(src), src, rand(0.7,1.0))
|
||||
|
||||
@@ -511,9 +511,9 @@
|
||||
else
|
||||
prot = 1
|
||||
|
||||
if(prot > 0 || (M_RESIST_HEAT in user.mutations))
|
||||
if(prot > 0 || (RESIST_HEAT in user.mutations))
|
||||
user << "You remove the light [fitting]"
|
||||
else if(M_TK in user.mutations)
|
||||
else if(TK in user.mutations)
|
||||
user << "You telekinetically remove the light [fitting]."
|
||||
else
|
||||
user << "You try to remove the light [fitting], but you burn your hand on it!"
|
||||
|
||||
Reference in New Issue
Block a user