diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 908604c399..4bb9d769d6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -370,7 +370,8 @@ "Red and Orange" = /obj/item/clothing/accessory/wristbandcollection/les, "White, Pink and Blue" = /obj/item/clothing/accessory/wristbandcollection/trans, "Blue, Purple and Pink" = /obj/item/clothing/accessory/wristbandcollection/bi, - "Black, White and Grey" = /obj/item/clothing/accessory/wristbandcollection/ace + "Black, White and Grey" = /obj/item/clothing/accessory/wristbandcollection/ace, + "Spiked" = /obj/item/clothing/accessory/wristband_spiked ) gear_tweaks += new/datum/gear_tweak/path(wristband_lists) diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 071b87498b..0b380da71e 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -536,6 +536,14 @@ slot_flags = SLOT_TIE slot = ACCESSORY_SLOT_DECOR +/obj/item/clothing/accessory/wristband_spiked + name = "wristband (spiked)" + desc = "A black wristband with short spikes around it." + icon = 'icons/inventory/accessory/item.dmi' + icon_state = "wristband_spiked" + w_class = ITEMSIZE_TINY + slot_flags = SLOT_TIE + slot = ACCESSORY_SLOT_DECOR //Gaiter scarves /obj/item/clothing/accessory/gaiter diff --git a/code/modules/economy/vending_machines_vr.dm b/code/modules/economy/vending_machines_vr.dm index 7048cc9452..5005e39af9 100644 --- a/code/modules/economy/vending_machines_vr.dm +++ b/code/modules/economy/vending_machines_vr.dm @@ -620,6 +620,7 @@ /obj/item/clothing/accessory/wristbandcollection/bi = 5, /obj/item/clothing/accessory/wristbandcollection/trans = 5, /obj/item/clothing/accessory/wristbandcollection/ace = 5, + /obj/item/clothing/accessory/wristband_spiked = 5, /obj/item/weapon/storage/wallet = 5, /obj/item/weapon/storage/wallet/poly = 5, /obj/item/weapon/storage/wallet/womens = 5, @@ -760,6 +761,7 @@ /obj/item/clothing/accessory/wristbandcollection/bi = 30, /obj/item/clothing/accessory/wristbandcollection/trans = 30, /obj/item/clothing/accessory/wristbandcollection/ace = 30, + /obj/item/clothing/accessory/wristband_spiked = 20, /obj/item/weapon/storage/wallet = 50, /obj/item/weapon/storage/wallet/poly = 50, /obj/item/weapon/storage/wallet/womens = 50, diff --git a/icons/inventory/accessory/item.dmi b/icons/inventory/accessory/item.dmi index 75e7676a56..b2f5303784 100644 Binary files a/icons/inventory/accessory/item.dmi and b/icons/inventory/accessory/item.dmi differ diff --git a/icons/inventory/accessory/mob.dmi b/icons/inventory/accessory/mob.dmi index b831971994..b2bd322770 100644 Binary files a/icons/inventory/accessory/mob.dmi and b/icons/inventory/accessory/mob.dmi differ