diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index bce6243d18..0559eaeee5 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -1198,3 +1198,8 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name) display_name = "M3 Pattern Skull Paint" path = /obj/item/clothing/accessory/paint/skull cost = 0 + +/datum/gear/misc/paint_heart + display_name = "M3 Pattern Heart Paint" + path = /obj/item/clothing/accessory/paint/heart + cost = 0 diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm index 1393243263..3a8643fb86 100644 --- a/code/modules/clothing/under/ties.dm +++ b/code/modules/clothing/under/ties.dm @@ -1118,6 +1118,13 @@ item_state = "skull" slot = ACCESSORY_SLOT_PAINT +/obj/item/clothing/accessory/paint/heart + name = "heart armor paint" + desc = "A set of paint tones to etch a heart into a Marine's armor." + icon_state = "heart" + item_state = "heart" + slot = ACCESSORY_SLOT_PAINT + /obj/item/clothing/accessory/storage/webbing/m3/mag name = "\improper M3 Pattern Magazine Webbing" desc = "A sturdy mess of synthcotton belts and buckles, ready to share your burden." diff --git a/icons/mob/humans/onmob/ties.dmi b/icons/mob/humans/onmob/ties.dmi index e7a7a0bede..7dceae845e 100644 Binary files a/icons/mob/humans/onmob/ties.dmi and b/icons/mob/humans/onmob/ties.dmi differ diff --git a/icons/obj/items/clothing/ties.dmi b/icons/obj/items/clothing/ties.dmi index 256d3b83ff..f8de1d2dde 100644 Binary files a/icons/obj/items/clothing/ties.dmi and b/icons/obj/items/clothing/ties.dmi differ diff --git a/icons/obj/items/clothing/ties_overlay.dmi b/icons/obj/items/clothing/ties_overlay.dmi index bbae594c04..b46570af39 100644 Binary files a/icons/obj/items/clothing/ties_overlay.dmi and b/icons/obj/items/clothing/ties_overlay.dmi differ