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:
@@ -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 ..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user