diff --git a/code/modules/clothing/under/accessories/clothing_vr.dm b/code/modules/clothing/under/accessories/clothing_vr.dm new file mode 100644 index 0000000000..47ad8b8719 --- /dev/null +++ b/code/modules/clothing/under/accessories/clothing_vr.dm @@ -0,0 +1,8 @@ +/obj/item/clothing/accessory/jacket/modwrap + name = "modern wrapped coat (coat)" + desc = "The cutting edge of fashion." + icon = 'icons/inventory/accessory/item_vr.dmi' + icon_override = 'icons/inventory/accessory/mob_vr.dmi' + icon_state = "mod_coat" + item_state = "mod_coat" + overlay_state = "mod_coat" \ No newline at end of file diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index c0f9b8caab..b548ef3ab2 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -1320,12 +1320,13 @@ */ /obj/item/clothing/under/moderncoat - name = "modern wrapped coat" + name = "modern wrapped coat (pants)" desc = "The cutting edge of fashion." - icon_state = "mod_coat" - worn_state = "mod_coat" + icon_state = "mod_coat_pants" + worn_state = "mod_coat_pants" item_state_slots = list(slot_r_hand_str = "red", slot_l_hand_str = "red") body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS + starting_accessories = list(/obj/item/clothing/accessory/jacket/modwrap) /obj/item/clothing/under/modjump name = "modern jumpsuit" diff --git a/icons/inventory/accessory/item_vr.dmi b/icons/inventory/accessory/item_vr.dmi index 21eaf66ec1..6f84a0e538 100644 Binary files a/icons/inventory/accessory/item_vr.dmi and b/icons/inventory/accessory/item_vr.dmi differ diff --git a/icons/inventory/accessory/mob_vr.dmi b/icons/inventory/accessory/mob_vr.dmi index 1ae86050c7..3ddbd06479 100644 Binary files a/icons/inventory/accessory/mob_vr.dmi and b/icons/inventory/accessory/mob_vr.dmi differ diff --git a/icons/inventory/uniform/item.dmi b/icons/inventory/uniform/item.dmi index e22f9dcd27..1102094c31 100644 Binary files a/icons/inventory/uniform/item.dmi and b/icons/inventory/uniform/item.dmi differ diff --git a/icons/inventory/uniform/mob.dmi b/icons/inventory/uniform/mob.dmi index ad2aebade9..7f69ac6938 100644 Binary files a/icons/inventory/uniform/mob.dmi and b/icons/inventory/uniform/mob.dmi differ diff --git a/vorestation.dme b/vorestation.dme index be7a67e242..5969c732e0 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2264,6 +2264,7 @@ #include "code\modules\clothing\under\accessories\badges.dm" #include "code\modules\clothing\under\accessories\badges_vr.dm" #include "code\modules\clothing\under\accessories\clothing.dm" +#include "code\modules\clothing\under\accessories\clothing_vr.dm" #include "code\modules\clothing\under\accessories\holster.dm" #include "code\modules\clothing\under\accessories\holster_vr.dm" #include "code\modules\clothing\under\accessories\lockets.dm"