diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 1c8e570b..b6618832 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -734,10 +734,10 @@ item_state = "leo_coat" /obj/item/device/modkit/fluff/leo_modkit //Weapon case - Leo Wyatt - keinto - DONE - name = "ornate box" + name = "weapon case" desc = "A sturdy leather case, with a velvet covered interior.." icon = 'icons/obj/custom_items.dmi' - icon_state = "leo_modkit" + icon_state = "leo_mod" parts = MODKIT_HELMET from_helmet = /obj/item/weapon/gun/projectile/detective/semiauto to_helmet = /obj/item/weapon/gun/projectile/detective/semiauto/fluff/leo_gun @@ -777,4 +777,52 @@ desc = "'For the wolf to survive, he needs to chop off his own leg' - Fortunes friends. A nice black satchel with a mech and a heart painting on it." icon = 'icons/obj/custom_items.dmi' icon_state = "fortune_bag" - item_state = "fortune_bag" \ No newline at end of file + item_state = "fortune_bag" + +/obj/item/clothing/head/soft/fluff/mike_hat //BRI Hat - Mike Axel - Smifboy78 - DONE + name = "BRI Hat" + desc = "A black hat. It has the letters 'BRI' on the front." + icon_state = "corpsoft" + item_color = "corp" + +/obj/item/fluff/jenifer_bear //Doctor SnuggleBuns - Jenifer Clewett - bluesp34r - SPRITE + name = "Doctor SnuggleBuns" + desc = "A fluffy-wuffy brown teddy bear! This one is wearing a blue lab coat, much like a Chief Medical Officer!" + icon = 'icons/obj/custom_items.dmi' + icon_state = "jenifer_bear" + w_class = 2 + force = 1 + throwforce = 2 + var/headless = 0 + + update_icon() + if(headless == 1) + icon_state = "jenifer_bear_headless" + else + icon_state = "jenifer_bear" + + attack_self(mob/user as mob) + if(user.a_intent == "hurt") + if(headless == 1) + user.visible_message("[user] stares at [src] full of anger, but elects not to tear any more limbs off of it.", "You've already ripped [src]'s head off, what else do you want to do to it!?") + else + user.visible_message("[user] clutches [src] with anger, and rips its head off, dropping it to the ground!", "You are unable to contain your anger any longer! Off with its head!") + headless = 1 + var/turf/T = get_turf(user) + new /obj/item/fluff/jenifer_bear_head(T) + desc = "A fluffy-wuffy brown teddy bear! This one is wearing a blue lab coat, much like a Chief Medical Officer! \red It's lacking a head!" + else + if(headless == 1) + user.visible_message("[user] clutches [src] with both arms, weeping slightly as they embrace the headless toy.", "You clutch the toy, shivering and weeping slightly. Who would do such a monsterous thing?") + else + user.visible_message("[user] clutches [src] and embraces it!", "You hug the toy, and suddenly feel how the weight of the world is lifted from your shoulders!") + +/obj/item/fluff/jenifer_bear_head + name = "\improper teddybear head" + desc = "The head of a brown teddy, cruelly torn from its original body. You can see stuffing fall out of it." + icon = 'icons/obj/custom_items.dmi' + icon_state = "jenifer_bear_head" + w_class = 1 + force = 1 + throwforce = 1 +