Should improve pepper spray, and remove coolness check on detective's revolver

This commit is contained in:
SkyMarshal
2011-12-15 20:34:36 -07:00
parent 6a7223ce58
commit 79ad7d1ae9
3 changed files with 17 additions and 12 deletions
+4 -4
View File
@@ -1711,13 +1711,13 @@ datum
if(M:glasses)
M << "\red Your glasses protect you from most of the pepperspray!"
M:emote("scream")
M.eye_blurry = max(M.eye_blurry, 1)
M.eye_blurry = max(M.eye_blurry, 2)
return
M:emote("scream")
M << "\red You're sprayed directly in the eyes with pepperspray!"
M.eye_blurry = max(M.eye_blurry, 5)
M.eye_blind = max(M.eye_blind, 2)
M:paralysis = max(M:paralysis, 1)
M.eye_blurry = max(M.eye_blurry, 10)
M.eye_blind = max(M.eye_blind, 4)
M:paralysis = max(M:paralysis, 2)
M.drop_item()
frostoil
@@ -8,11 +8,12 @@
special_check(var/mob/living/carbon/human/M)
if(ishuman(M))
/* if(ishuman(M))
if(istype(M.w_uniform, /obj/item/clothing/under/det) && istype(M.head, /obj/item/clothing/head/det_hat) && istype(M.wear_suit, /obj/item/clothing/suit/det_suit))
return 1
M << "\red You just don't feel cool enough to use this gun looking like that."
return 0
return 0 */
return 1
verb/rename_gun()