diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index e40ace3f..171d57a3 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -97,13 +97,45 @@ icon_state = "raieed_sandals" contained_sprite = 1 -/obj/item/clothing/suit/storage/fluff/raieed_labcoat //Treasured Labcoat - Raieed Amari - nikolaithebeast - DONE - name = "torn labcoat" - desc = "A old labcoat, torn beyond reorganization, but yet it still seems to be kept for." +// Rai Amari - nikolaithebeast - Stitched Labcoat +/obj/item/clothing/suit/storage/labcoat/fluff/raieed_labcoat + name = "stitched labcoat" + desc = "A stiched up labcoat. It looks particularly torn up, but someone has spent a great deal of time fixing the damage." icon = 'icons/obj/custom_items/raieed_labcoat.dmi' - icon_state = "raieed_labcoat" + icon_state = "raieed_labcoat_open" contained_sprite = 1 + // verb/toggle() as normally defined in labcoat.dm + toggle() + set name = "Toggle Labcoat Buttons" + set category = "Object" + set src in usr + + if(!usr.canmove || usr.stat || usr.restrained()) + return 0 + + switch(icon_state) + if("raieed_labcoat_open") + icon_state = "raieed_labcoat_closed" + usr << "You button up the stitched labcoat." + if("raieed_labcoat_closed") + icon_state = "raieed_labcoat_open" + usr << "You unbutton the stiched labcoat." + + else + usr << "SierraKomodo broke a thing. Bug report time!" + return + + usr.update_inv_wear_suit() + +// Old item +// /obj/item/clothing/suit/storage/fluff/raieed_labcoat //Treasured Labcoat - Raieed Amari - nikolaithebeast - DONE + // name = "torn labcoat" + // desc = "A old labcoat, torn beyond reorganization, but yet it still seems to be kept for." + // icon = 'icons/obj/custom_items/raieed_labcoat.dmi' + // icon_state = "raieed_labcoat" + // contained_sprite = 1 + /obj/item/weapon/folder/fluff/may_notebook //May Izumi's Notebook - May Izumi - lk600 - DONE name = "May Izumi's Notebook" desc = "A pink notebook that is covered in hearts and little manga stickers. It is filled with lots of questions, replies and conversations from her past. It has 'May Izumi' printed on the front." diff --git a/icons/obj/custom_items/raieed_labcoat.dmi b/icons/obj/custom_items/raieed_labcoat.dmi index c1b8cd88..32bf138a 100644 Binary files a/icons/obj/custom_items/raieed_labcoat.dmi and b/icons/obj/custom_items/raieed_labcoat.dmi differ