Files
Bubberstation/code/modules/clothing/suits/straightjacket.dm
Thunder12345 20118ad747 Converts a bunch of time/delay vars to use time defines (#92495)
## About The Pull Request

Converts as many time vars expressed in deciseconds as I could find to
use time defines.

## Why It's Good For The Game

Makes these values neater and more readable.

## Changelog
🆑
code: Converted a lot of time-based variables to be expressed with time
defines.
/🆑
# Conflicts:
#	code/modules/clothing/head/hat.dm
#	code/modules/clothing/shoes/boots.dm
#	code/modules/clothing/suits/utility.dm
2025-08-19 22:38:55 -04:00

15 lines
569 B
Plaintext

/obj/item/clothing/suit/jacket/straight_jacket
name = "straight jacket"
desc = "A suit that completely restrains the wearer. Manufactured by Antyphun Corp." //Straight jacket is antifun
icon_state = "straight_jacket"
inhand_icon_state = "straight_jacket"
body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT
equip_delay_self = 5 SECONDS
strip_delay = 6 SECONDS
breakouttime = 5 MINUTES
/obj/item/clothing/suit/jacket/straight_jacket/Initialize(mapload)
. = ..()
ADD_TRAIT(src, TRAIT_DANGEROUS_OBJECT, INNATE_TRAIT)