Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions code/game/objects/items/plushes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1103,3 +1103,21 @@
squeak_override = list(
'sound/misc/expie_bark.ogg' = 1
)

/obj/item/toy/plush/expie/spinny_hat
name = "spinny expie plushie"
desc = "A normal expie plushie which has been given a bright lolipop and a spinny propeller hat."
icon_state = "expie_spinny_hat"

/obj/item/toy/plush/expie/dune
name = "dune plushie"
desc = "A tag on it reads, \"Manufactuerer is not responsible for bodily harm as a result of plushie usage.\""
icon_state = "dune"
attack_verb_continuous = list("chomps")
attack_verb_simple = list("chomp")

/obj/item/toy/plush/expie/milky
name = "milky plushie"
desc = "A tag on it reads, \"Made with all natural geofruit milk biothread\""
icon_state = "milky"

Binary file modified icons/obj/toys/plushes.dmi
Binary file not shown.
13 changes: 13 additions & 0 deletions monkestation/code/modules/loadouts/items/plushies.dm
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,16 @@ GLOBAL_LIST_INIT(loadout_plushies, generate_loadout_items(/datum/loadout_item/pl
/datum/loadout_item/plushies/expie
name = "Expie Plushie"
item_path = /obj/item/toy/plush/expie

/datum/loadout_item/plushies/expie/spinny_hat
name = "Spinny Expie Plushie"
item_path = /obj/item/toy/plush/expie/spinny_hat

/datum/loadout_item/plushies/expie/dune
name = "Dune Plushie"
item_path = /obj/item/toy/plush/expie/dune

/datum/loadout_item/plushies/expie/milky
name = "Milky Plushie"
item_path = /obj/item/toy/plush/expie/milky

13 changes: 13 additions & 0 deletions monkestation/code/modules/store/store_items/plushies.dm
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,16 @@ GLOBAL_LIST_INIT(store_plushies, generate_store_items(/datum/store_item/plushies
store_desc = "Now with organic glowfruit stuffing!"
item_path = /obj/item/toy/plush/expie
item_cost = 7500

/datum/store_item/plushies/expie/spinny_hat
name = "Spinny Expie Plushie"
item_path = /obj/item/toy/plush/expie/spinny_hat
item_cost = 10000

/datum/store_item/plushies/expie/dune
name = "Dune Plushie"
item_path = /obj/item/toy/plush/expie/dune

/datum/store_item/plushies/expie/milky
name = "Milky Plushie"
item_path = /obj/item/toy/plush/expie/milky
Loading