Custom Items 08OCT2014

Vivian's Platinum Heart
Ava's Ushanka
This commit is contained in:
skull132
2014-10-08 21:31:51 +03:00
parent 12019e7abd
commit dacc98e0b9
6 changed files with 24 additions and 1 deletions
+24 -1
View File
@@ -843,4 +843,27 @@
spamcheck = 1
spawn(20)
spamcheck = 0
return
return
/obj/item/clothing/tie/medal/fluff/vivian_heart
name = "platinum heart"
desc = "The medal is white-plated platinum, and bears a red-cross on the front, the back is engraved, Vivian Rival, Medical Doctor & Species Rights Activist."
icon = 'icons/obj/custom_items.dmi'
icon_state = "vivian_heart"
item_color = "vivian_heart"
/obj/item/clothing/head/ushanka/fluff/ava_ushanka //Worn Ushanka - Ava Kalashnikova - demonofthefall - DONE
name = "worn ushanka"
desc = "An old ushanka, it looks well worn."
icon_state = "ushanka_avadown"
item_state = "ushankadown" //Skull getting lazy with code.
/obj/item/clothing/head/ushanka/fluff/ava_ushanka/attack_self(mob/user as mob)
if(src.icon_state == "ushankadown")
src.icon_state = "ushankaup"
src.item_state = "ushanka_avaup"
user << "You raise the ear flaps on the ushanka."
else
src.icon_state = "ushankadown"
src.item_state = "ushanka_avadown"
user << "You lower the ear flaps on the ushanka."