diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm index 75697053aad..f615e7ec0eb 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm @@ -143,3 +143,11 @@ Talon winter coat hoodies[initial(hoodie.name)] = hoodie gear_tweaks += new/datum/gear_tweak/path(sortAssoc(hoodies)) gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/suit/cyberpunk_recolorable + display_name = "cyberpunk jacket (recolorable)" + path = /obj/item/clothing/suit/cyberpunk/recolorable + cost = 2 //It's got armor, yo. + +/datum/gear/suit/cyberpunk_recolorable/New() + gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file diff --git a/code/modules/clothing/suits/miscellaneous_vr.dm b/code/modules/clothing/suits/miscellaneous_vr.dm index 2b891d39b75..bf34f15826e 100644 --- a/code/modules/clothing/suits/miscellaneous_vr.dm +++ b/code/modules/clothing/suits/miscellaneous_vr.dm @@ -140,3 +140,10 @@ default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' icon_state = "cyberpunk" armor = list("melee" = 10, "bullet" = 20, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0) + +// Cyberpunk recolorable vest +/obj/item/clothing/suit/cyberpunk/recolorable + name = "cyberpunk vest" + desc = "A high tech looking vest. It's made out of tough materials, and can protect fairly well against bullets. Wake the fuck up, Samurai." + + icon_state = "cyberpunk_recolor" \ No newline at end of file diff --git a/icons/inventory/suit/item_vr.dmi b/icons/inventory/suit/item_vr.dmi index fb17453b3c2..6c461429e81 100644 Binary files a/icons/inventory/suit/item_vr.dmi and b/icons/inventory/suit/item_vr.dmi differ diff --git a/icons/inventory/suit/mob_vr.dmi b/icons/inventory/suit/mob_vr.dmi index eb19cb108c4..488b75567ee 100644 Binary files a/icons/inventory/suit/mob_vr.dmi and b/icons/inventory/suit/mob_vr.dmi differ