mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 20:11:04 +01:00
Custom loadout bloat: clog edition (#8697)
This commit is contained in:
@@ -121,4 +121,20 @@
|
||||
|
||||
/datum/gear/shoes/circuitry
|
||||
display_name = "boots, circuitry (empty)"
|
||||
path = /obj/item/clothing/shoes/circuitry
|
||||
path = /obj/item/clothing/shoes/circuitry
|
||||
|
||||
/datum/gear/shoes/slippers
|
||||
display_name = "bunny slippers"
|
||||
path = /obj/item/clothing/shoes/slippers
|
||||
|
||||
/datum/gear/shoes/slippers/New()
|
||||
..()
|
||||
var/slippers = list()
|
||||
slippers["bunny slippers"] = /obj/item/clothing/shoes/slippers
|
||||
slippers["worn bunny slippers"] = /obj/item/clothing/shoes/slippers_worn
|
||||
gear_tweaks += new/datum/gear_tweak/path(slippers)
|
||||
|
||||
/datum/gear/shoes/clog
|
||||
display_name = "plastic clogs"
|
||||
path = /obj/item/clothing/shoes/sandal/clogs
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
@@ -315,3 +315,14 @@
|
||||
description = "For those that value leg-room."
|
||||
path = /obj/item/clothing/under/rank/cargotech/alt
|
||||
allowed_roles = list("Cargo Technician")
|
||||
|
||||
/datum/gear/uniform/pyjama
|
||||
display_name = "pyjamas"
|
||||
path = /obj/item/clothing/under/pj/blue
|
||||
|
||||
/datum/gear/uniform/pyjama/New()
|
||||
..()
|
||||
var/pyjamas = list()
|
||||
pyjamas["blue pyjamas"] = /obj/item/clothing/under/pj/blue
|
||||
pyjamas["red pyjamas"] = /obj/item/clothing/under/pj/red
|
||||
gear_tweaks += new/datum/gear_tweak/path(pyjamas)
|
||||
Reference in New Issue
Block a user