diff --git a/hyperstation/code/obj/plushes.dm b/hyperstation/code/obj/plushes.dm index ad6af38f..fd604f8b 100644 --- a/hyperstation/code/obj/plushes.dm +++ b/hyperstation/code/obj/plushes.dm @@ -43,3 +43,12 @@ else */ user.show_message("[src] hugs [Kisser]!", 1, "[src] hugs [Kisser]!", 0) + +/obj/item/toy/plush/mammal/grug + name = "Grug S. Cavemannington Plushie" + desc = " Everybody's favorite space faring caveman in plushie form. You feel an overwhelming urge to break things while holding it." + icon = 'hyperstation/icons/obj/plushes.dmi' + icon_state = "grug" + item_state = "grug" + attack_verb = list("thomped", "ook'd", "stoned") + squeak_override = list('sound/voice/gorillaplush.ogg' = 1) \ No newline at end of file diff --git a/hyperstation/icons/obj/plushes.dmi b/hyperstation/icons/obj/plushes.dmi index b33ff051..c2c73411 100644 Binary files a/hyperstation/icons/obj/plushes.dmi and b/hyperstation/icons/obj/plushes.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index c0c2e3d9..27f2177f 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -9,7 +9,13 @@ /datum/gear/testreward //Just so admins can test the recent rewards added. - name = "test reward" + name = "Caveman Plush" + category = SLOT_IN_BACKPACK + path = /obj/item/toy/plush/mammal/grug + ckeywhitelist = list("quotefox") + +/datum/gear/testrewardtwo + name = "Napoleonic Uniform" category = SLOT_IN_BACKPACK path = /obj/item/clothing/suit/napoleonic ckeywhitelist = list("quotefox") @@ -45,3 +51,8 @@ path = /obj/item/clothing/suit/napoleonic ckeywhitelist = list("hackertdog") +/datum/gear/grug + name = "Caveman Plushie" + category = SLOT_IN_BACKPACK + path = /obj/item/toy/plush/mammal/grug + ckeywhitelist = list("herrdoktah") diff --git a/sound/voice/gorillaplush.ogg b/sound/voice/gorillaplush.ogg new file mode 100644 index 00000000..97823bd0 Binary files /dev/null and b/sound/voice/gorillaplush.ogg differ