Changes breakout time to 30, refactors ds into s

This commit is contained in:
Daylight
2022-12-07 20:04:28 +02:00
parent 6d38a64ec7
commit 004502ff10
+4 -4
View File
@@ -6,8 +6,8 @@
flags_cover = MASKCOVERSMOUTH
w_class = WEIGHT_CLASS_SMALL
gas_transfer_coefficient = 0.90
put_on_delay = 20
var/resist_time = 0 //deciseconds of how long you need to gnaw to get rid of the gag, 0 to make it impossible to remove
put_on_delay = 2 SECONDS
var/resist_time = 0 SECONDS //seconds of how long you need to gnaw to get rid of the gag, 0 to make it impossible to remove
var/mute = MUZZLE_MUTE_ALL
var/security_lock = FALSE // Requires brig access to remove 0 - Remove as normal
var/locked = FALSE //Indicates if a mask is locked, should always start as 0.
@@ -86,7 +86,7 @@
icon_state = "tapegag"
item_state = null
w_class = WEIGHT_CLASS_TINY
resist_time = 150
resist_time = 300 SECONDS
mute = MUZZLE_MUTE_MUFFLE
flags = DROPDEL
@@ -112,7 +112,7 @@
desc = "A muzzle designed to prevent biting."
icon_state = "muzzle_secure"
item_state = "muzzle_secure"
resist_time = 0
resist_time = 0 SECONDS
mute = MUZZLE_MUTE_NONE
security_lock = TRUE
locked = FALSE