diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index c85244cb6d1..fef7f37b3f1 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -5,4 +5,14 @@ /obj/item/fluff/wes_solari_1 name = "Family Photograph" desc = "A family photograph of a couple and a young child, Written on the back it says \"See you soon Dad -Roy\"." - icon_state = "wes_solari_1" \ No newline at end of file + icon_state = "wes_solari_1" + +/obj/item/fluff/victor_kaminsky_1 + name = "\improper golden detective's badge" + desc = "NanoTrasen Security Department detective's badge, made from gold. Badge number is 564." + icon_state = "victor_kaminsky_1" + +/obj/item/fluff/victor_kaminsky_1/attack_self(mob/user as mob) + for(var/mob/O in viewers(user, null)) + O.show_message(text("[] shows you: \icon[] [].", user, src, src.name), 1) + src.add_fingerprint(user) diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index e1b7f976462..c38ced0696c 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ