diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 6a5d5dd0519..606b06c476a 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1330,7 +1330,7 @@ to_chat(user, "You can't modify [target]!") return - to_chat(user, "You modify the appearance of [target] based on the kite blueprints.") + to_chat(user, "You modify the appearance of [target] based on the kit blueprints.") var/obj/spacepod/pod = target pod.icon = 'icons/48x48/custom_pod.dmi' pod.icon_state = "pod_dece" @@ -1348,4 +1348,20 @@ righthand_file = 'icons/mob/inhands/fluff_righthand.dmi' icon_state = "teri_horn" item_state = "teri_horn" - honk_sound = 'sound/items/teri_horn.ogg' \ No newline at end of file + honk_sound = 'sound/items/teri_horn.ogg' + +/obj/item/clothing/suit/fluff/vetcoat //Furasian: Fillmoore Grayson + name = "Veteran Coat" + desc = "A old, yet well-kept Nanotrasen uniform. Very few of its kind are still produced." + icon = 'icons/obj/custom_items.dmi' + icon_state = "alchemistcoatblack" + item_state = "alchemistcoatblack" + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + +/obj/item/clothing/suit/fluff/vetcoat/red //Furasian: Fillmoore Grayson + icon_state = "alchemistcoatred" + item_state = "alchemistcoatred" + +/obj/item/clothing/suit/fluff/vetcoat/navy //Furasian: Fillmoore Grayson + icon_state = "alchemistcoatnavy" + item_state = "alchemistcoatnavy" \ No newline at end of file diff --git a/icons/mob/inhands/fluff_lefthand.dmi b/icons/mob/inhands/fluff_lefthand.dmi index 645c04a9ac9..a5721f518ce 100644 Binary files a/icons/mob/inhands/fluff_lefthand.dmi and b/icons/mob/inhands/fluff_lefthand.dmi differ diff --git a/icons/mob/inhands/fluff_righthand.dmi b/icons/mob/inhands/fluff_righthand.dmi index f0656ef8e22..50435f90e0d 100644 Binary files a/icons/mob/inhands/fluff_righthand.dmi and b/icons/mob/inhands/fluff_righthand.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 781bc710af3..209e052895a 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index d11043875fc..940f2ba25da 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ