Standardize mutations

This commit is contained in:
Markolie
2015-02-22 19:04:43 +01:00
parent 3b072b5a62
commit 982102a407
113 changed files with 282 additions and 282 deletions
+2 -2
View File
@@ -398,7 +398,7 @@ datum
on_mob_life(var/mob/living/M as mob)
if(!M) M = holder.my_atom
if (M_FAT in M.mutations)
if (FAT in M.mutations)
M.gib()
..()
return
@@ -3298,7 +3298,7 @@ datum
on_mob_life(var/mob/living/M as mob, var/alien)
// Sobering multiplier.
// Sober block makes it more difficult to get drunk
var/sober_str=!(M_SOBER in M.mutations)?1:2
var/sober_str=!(SOBER in M.mutations)?1:2
M:nutrition += nutriment_factor
holder.remove_reagent(src.id, FOOD_METABOLISM)
if(!src.data) data = 1
+1 -1
View File
@@ -1469,7 +1469,7 @@ datum
required_other = 1
on_reaction(var/datum/reagents/holder)
feedback_add_details("slime_cores_used","[replacetext(name," ","_")]")
var/obj/effect/golem_rune/Z = new /obj/effect/golem_rune
var/obj/effect/goleRUNe/Z = new /obj/effect/goleRUNe
Z.loc = get_turf(holder.my_atom)
Z.announce_to_ghosts()
//Bluespace
@@ -60,7 +60,7 @@
return
if (user.a_intent == "harm" && ismob(target))
if((M_CLUMSY in user.mutations) && prob(50))
if((CLUMSY in user.mutations) && prob(50))
target = user
syringestab(target, user)
return
@@ -86,7 +86,7 @@
if(!T.dna)
usr << "You are unable to locate any blood. (To be specific, your target seems to be missing their DNA datum)"
return
if(M_NOCLONE in T.mutations) //target done been et, no more blood in him
if(NOCLONE in T.mutations) //target done been et, no more blood in him
user << "\red You are unable to locate any blood."
return