Files
Aurora.3/code/modules/client/preference_setup/loadout/loadout_belt.dm
kyres1 af94d54379 Fixes belt selection being broken (#16008)
* fixed??/

* I seriously fucked up a changelog come on
2023-03-12 00:01:35 +00:00

35 lines
1.2 KiB
Plaintext

/datum/gear/belt
display_name = "belt (colorable)"
description = "A generic colorable belt."
path = /obj/item/storage/belt/generic
slot = slot_belt
sort_category = "Belts"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/belt/resize
display_name = "alternative belt sizes (colorable)"
description = "A generic colorable belt selection of varying appearances."
path = /obj/item/storage/belt/generic/thin
/datum/gear/belt/resize/New()
..()
var/list/belt = list()
belt["thin belt"] = /obj/item/storage/belt/generic/thin
belt["thick belt"] = /obj/item/storage/belt/generic/thick
belt["buckle belt"] = /obj/item/storage/belt/generic/buckle
gear_tweaks += new /datum/gear_tweak/path(belt)
/datum/gear/belt/fannypack
display_name = "fannypack"
description = "A colorable fannypack."
cost = 2
path = /obj/item/storage/belt/fannypack/recolorable
/datum/gear/belt/toolbelt_alt
display_name = "tool-belt, alt"
description = "An alternative look to a standard toolbelt."
cost = 0
path = /obj/item/storage/belt/utility/alt
allowed_roles = list("Engineer", "Atmospheric Technician", "Chief Engineer", "Engineering Apprentice", "Machinist", "Research Director")
flags = null