Skip to content

Commit

Permalink
Merge pull request #54 from KnigTheThrasher/collars
Browse files Browse the repository at this point in the history
fixes collars
  • Loading branch information
SynthTwo authored Aug 12, 2024
2 parents 20ae245 + cde2eec commit 5e0a327
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/obj/item/clothing/neck/human_petcollar
name = "pet collar"
desc = "It's for pets. Though you probably could wear it yourself, you'd doubtless be the subject of ridicule."
desc = "It's for pets. Though you probably could wear it yourself, you'd doubtless be the subject of ridicule. You're not supposed to have this item, yell at admins or coders."
icon_state = "pet"
greyscale_config = /datum/greyscale_config/collar/pet
greyscale_config_worn = /datum/greyscale_config/collar/pet/worn
Expand All @@ -13,14 +13,12 @@
/obj/item/clothing/neck/human_petcollar/storage_insert_on_interacted_with(datum/storage/storage, obj/item/inserted, mob/living/user)
return is_type_in_typecache(inserted, storage.can_hold)

/* Fix these before making them usable pls lol, also don't add more again lmao
/obj/item/clothing/neck/human_petcollar/choker
name = "spiked collar"
name = "choker"
desc = "Quite fashionable... if you're an edgy teen."
icon_state = "spike"
greyscale_config = /datum/greyscale_config/collar/spike
greyscale_config_worn = /datum/greyscale_config/collar/spike/worn
icon_state = "choker"
greyscale_config = /datum/greyscale_config/collar/choker
greyscale_config_worn = /datum/greyscale_config/collar/choker/worn
greyscale_colors = "#222222"

/obj/item/clothing/neck/human_petcollar/thinchoker
Expand All @@ -31,4 +29,10 @@
greyscale_config_worn = /datum/greyscale_config/collar/thinchoker/worn
greyscale_colors = "#222222"

*/
/obj/item/clothing/neck/human_petcollar/spike
name = "spiked choker"
desc = "For when you really want to be the master of edge."
icon_state = "spike"
greyscale_config = /datum/greyscale_config/collar/spike
greyscale_config_worn = /datum/greyscale_config/collar/spike/worn
greyscale_colors = "#292929#C0C0C0"
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,18 @@
* COLLARS
*/

/*
/datum/loadout_item/neck/choker
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/spike
name = "Spiked Choker"
item_path = /obj/item/clothing/neck/human_petcollar/spike

/*
* PONCHOS
*/
Expand Down

0 comments on commit 5e0a327

Please sign in to comment.