Ash drake plushie! (#300)

* Update toys.dm

Adds a cute little Ash drake plushie at the bottom

* Add files via upload

* Adds in hand icons for the ash drake plushie

* removed the commented out lines from the plush drake code
This commit is contained in:
Squi-RL
2017-03-21 03:47:47 -07:00
committed by Poojawa
parent 18ec8db19c
commit 099a6c8764
4 changed files with 24 additions and 0 deletions
+24
View File
@@ -1388,3 +1388,27 @@
/obj/item/toy/dummy/GetVoice()
return doll_name
/*
* Ash drake plushie
*/
/obj/item/plush_drake
name = "Ash drake plushie"
desc = "An adorable stuffed toy that resembles a fierce dragon."
icon = 'icons/obj/plush_drake.dmi'
icon_state = "plush_drake"
item_state = "ash_plush"
w_class = WEIGHT_CLASS_SMALL
attack_verb = list("burned", "bitten", "swooped")
resistance_flags = FLAMMABLE
//Attack mob
/obj/item/plush_drake/attack(mob/M, mob/user)
return ..()
//Attack self
/obj/item/plush_drake/attack_self(mob/user)
user << "<span class='notice'>You pet [src]. D'awww.</span>"
return ..()