Custom Items 15JUL2014

This commit is contained in:
skull132
2014-07-15 23:10:55 +03:00
parent 56cfec87f6
commit d52d804892
+51 -3
View File
@@ -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"
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("<span class='warning'>[user] stares at [src] full of anger, but elects not to tear any more limbs off of it.</span>", "<span class='notice'>You've already ripped [src]'s head off, what else do you want to do to it!?</span>")
else
user.visible_message("<span class='warning'>[user] clutches [src] with anger, and rips its head off, dropping it to the ground!</span>", "<span class='warning'>You are unable to contain your anger any longer! Off with its head!</span>")
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("<span class='notice'>[user] clutches [src] with both arms, weeping slightly as they embrace the headless toy.</span>", "<span class='notice'>You clutch the toy, shivering and weeping slightly. Who would do such a monsterous thing?</span>")
else
user.visible_message("<span class='notice'>[user] clutches [src] and embraces it!</span>", "<span class='notice'>You hug the toy, and suddenly feel how the weight of the world is lifted from your shoulders!</span>")
/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