mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 12:05:59 +01:00
[Modular] Adds a thinner variant of the choker (#22685)
* The beginning and the end (hopefully) * Update modular_skyrat/modules/customization/modules/clothing/neck/collars.dm Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> --------- Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
This commit is contained in:
@@ -333,6 +333,15 @@
|
||||
name = "Choker (Worn)"
|
||||
json_config = 'modular_skyrat/modules/GAGS/json_configs/collar/choker_worn.json'
|
||||
|
||||
// Thin Choker
|
||||
/datum/greyscale_config/collar/thinchoker
|
||||
name = "Thin Choker"
|
||||
json_config = 'modular_skyrat/modules/GAGS/json_configs/collar/thinchoker.json'
|
||||
|
||||
/datum/greyscale_config/collar/thinchoker/worn
|
||||
name = "Thin Choker (Worn)"
|
||||
json_config = 'modular_skyrat/modules/GAGS/json_configs/collar/thinchoker_worn.json'
|
||||
|
||||
// Cow
|
||||
/datum/greyscale_config/collar/cow
|
||||
name = "Cowbell Collar"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"thinchoker": [
|
||||
{
|
||||
"type": "icon_state",
|
||||
"icon_state": "thinchoker_obj",
|
||||
"blend_mode": "overlay",
|
||||
"color_ids": [ 1 ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"thinchoker": [
|
||||
{
|
||||
"type": "icon_state",
|
||||
"icon_state": "thinchoker_mob",
|
||||
"blend_mode": "overlay",
|
||||
"color_ids": [ 1 ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -52,6 +52,14 @@
|
||||
greyscale_config_worn = /datum/greyscale_config/collar/choker/worn
|
||||
greyscale_colors = "#222222"
|
||||
|
||||
/obj/item/clothing/neck/human_petcollar/thinchoker
|
||||
name = "thin choker"
|
||||
desc = "Like the normal one, but thinner!"
|
||||
icon_state = "thinchoker"
|
||||
greyscale_config = /datum/greyscale_config/collar/thinchoker
|
||||
greyscale_config_worn = /datum/greyscale_config/collar/thinchoker/worn
|
||||
greyscale_colors = "#222222"
|
||||
|
||||
/obj/item/key/collar
|
||||
name = "collar key"
|
||||
desc = "A key for a tiny lock on a collar or bag."
|
||||
|
||||
@@ -127,6 +127,10 @@ GLOBAL_LIST_INIT(loadout_necks, generate_loadout_items(/datum/loadout_item/neck)
|
||||
name = "Choker"
|
||||
item_path = /obj/item/clothing/neck/human_petcollar/choker
|
||||
|
||||
/datum/loadout_item/neck/thinchoker
|
||||
name = "Thin Choker"
|
||||
item_path = /obj/item/clothing/neck/human_petcollar/thinchoker
|
||||
|
||||
/datum/loadout_item/neck/collar
|
||||
name = "Collar"
|
||||
item_path = /obj/item/clothing/neck/human_petcollar
|
||||
|
||||
@@ -58,6 +58,7 @@
|
||||
/obj/item/clothing/neck/kink_collar = 8,
|
||||
/obj/item/clothing/neck/human_petcollar = 8,
|
||||
/obj/item/clothing/neck/human_petcollar/choker = 8,
|
||||
/obj/item/clothing/neck/human_petcollar/thinchoker = 8,
|
||||
/obj/item/clothing/neck/human_petcollar/locked/cow = 8,
|
||||
/obj/item/clothing/neck/human_petcollar/locked/bell = 8,
|
||||
/obj/item/clothing/neck/human_petcollar/locked/cross = 8,
|
||||
|
||||
Reference in New Issue
Block a user