mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-17 18:13:34 +01:00
Should improve pepper spray, and remove coolness check on detective's revolver
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user