mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-24 21:56:55 +01:00
charming
This commit is contained in:
@@ -435,3 +435,19 @@
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/accessory/charm
|
||||
display_name = "charm selection"
|
||||
description = "Choose from a selection of charm necklaces"
|
||||
path = /obj/item/clothing/accessory/charm
|
||||
cost = 1
|
||||
|
||||
/datum/gear/accessory/charm/New()
|
||||
..()
|
||||
var/list/charmtype = list(
|
||||
"wooden charm" = /obj/item/clothing/accessory/charm,
|
||||
"sifwood charm" = /obj/item/clothing/accessory/charm/sifwood,
|
||||
"stone charm" = /obj/item/clothing/accessory/charm/stone,
|
||||
"metal charm" = /obj/item/clothing/accessory/charm/metal,
|
||||
"bone charm" = /obj/item/clothing/accessory/charm/bone
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(charmtype)
|
||||
@@ -56,3 +56,11 @@
|
||||
"white hearing aid" = /obj/item/clothing/ears/hearingaid/white
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(hearingaids)
|
||||
|
||||
/datum/gear/ears/earwarmers
|
||||
display_name = "ear warmers (colorable)"
|
||||
path = /obj/item/clothing/ears/earmuffs/earwarmers
|
||||
|
||||
/datum/gear/ears/earwarmers/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
@@ -102,3 +102,11 @@
|
||||
display_name = "gloves, botanic leather"
|
||||
path = /obj/item/clothing/gloves/botanic_leather
|
||||
cost = 2
|
||||
|
||||
/datum/gear/gloves/mittens
|
||||
display_name = "mittens (colorable)"
|
||||
path = /obj/item/clothing/gloves/mittens
|
||||
|
||||
/datum/gear/gloves/mittens/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
@@ -423,3 +423,15 @@
|
||||
var/obj/item/clothing/head/collectable/costume_type = costume
|
||||
costumes[initial(costume_type.name)] = costume_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(costumes))
|
||||
|
||||
/datum/gear/head/wooly
|
||||
display_name = "wooly hat (colorable)"
|
||||
path = /obj/item/clothing/head/wooly
|
||||
|
||||
/datum/gear/head/wooly/New()
|
||||
..()
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
|
||||
/datum/gear/head/woolynt
|
||||
display_name = "wooly hat, nanotrasen"
|
||||
path = /obj/item/clothing/head/wooly/nt
|
||||
Reference in New Issue
Block a user