diff --git a/code/datums/supplypacks/misc.dm b/code/datums/supplypacks/misc.dm index ac27d12983..7bfb4126a0 100644 --- a/code/datums/supplypacks/misc.dm +++ b/code/datums/supplypacks/misc.dm @@ -92,8 +92,14 @@ /obj/item/toy/plushie/teshari/_yw, /obj/item/toy/plushie/teshari/w_yw, /obj/item/toy/plushie/teshari/b_yw, - /obj/item/toy/plushie/teshari/y_yw) + /obj/item/toy/plushie/teshari/y_yw, //YawnWider Add End + //CHOMPStation Add Start + /obj/item/toy/plushie/red_dragon, + /obj/item/toy/plushie/green_dragon, + /obj/item/toy/plushie/purple_dragon + //CHOMPStation Add End + ) name = "Plushies Crate" cost = 15 containertype = /obj/structure/closet/crate/allico diff --git a/code/game/machinery/clawmachine.dm b/code/game/machinery/clawmachine.dm index 08af125e20..3fc80ebabb 100644 --- a/code/game/machinery/clawmachine.dm +++ b/code/game/machinery/clawmachine.dm @@ -66,7 +66,12 @@ /obj/item/toy/plushie/borgplushie/drake/jani, /obj/item/toy/plushie/borgplushie/drake/trauma, /obj/item/toy/plushie/otter, - /obj/item/toy/plushie/shark + /obj/item/toy/plushie/shark, + //CHOMPStation Add Start + /obj/item/toy/plushie/red_dragon, + /obj/item/toy/plushie/green_dragon, + /obj/item/toy/plushie/purple_dragon + //CHOMPStation Add End ) /obj/machinery/clawmachine/update_icon() diff --git a/code/game/objects/items/toys/toys_ch.dm b/code/game/objects/items/toys/toys_ch.dm index bdccfb889c..c16e06409a 100644 --- a/code/game/objects/items/toys/toys_ch.dm +++ b/code/game/objects/items/toys/toys_ch.dm @@ -22,4 +22,23 @@ name = "green fox plushie" icon = 'icons/obj/toy_ch.dmi' icon_state = "greenfox" - pokephrase = "Weh!" \ No newline at end of file + pokephrase = "Weh!" + +/obj/item/toy/plushie/red_dragon + name = "red dragon plushie" + icon = 'icons/obj/toy_ch.dmi' + icon_state = "reddragon" + pokephrase = "RAWR!" + +/obj/item/toy/plushie/green_dragon + name = "green dragon plushie" + icon = 'icons/obj/toy_ch.dmi' + icon_state = "greendragon" + pokephrase = "GRR!" + +/obj/item/toy/plushie/purple_dragon + name = "purple dragon plushie" + icon = 'icons/obj/toy_ch.dmi' + icon_state = "purpledragon" + pokephrase = "GRAH!" + diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index 5e64329517..19d55150f7 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -780,8 +780,13 @@ /obj/item/toy/plushie/teshari/_yw, /obj/item/toy/plushie/teshari/w_yw, /obj/item/toy/plushie/teshari/b_yw, - /obj/item/toy/plushie/teshari/y_yw) + /obj/item/toy/plushie/teshari/y_yw, //YawnWider Add End + //CHOMPStation Add Start + /obj/item/toy/plushie/red_dragon, + /obj/item/toy/plushie/green_dragon, + /obj/item/toy/plushie/purple_dragon) + //CHOMPStation Add End /obj/random/plushielarge name = "random large plushie" @@ -1144,4 +1149,4 @@ prob(10);/obj/item/weapon/bluespace_harpoon, prob(10);/obj/item/weapon/bluespace_crystal, prob(1);/obj/item/clothing/glasses/graviton - ) \ No newline at end of file + ) diff --git a/icons/obj/toy_ch.dmi b/icons/obj/toy_ch.dmi index a78c854463..39f2575aae 100644 Binary files a/icons/obj/toy_ch.dmi and b/icons/obj/toy_ch.dmi differ