diff --git a/monkestation/code/modules/donator/code/datum/loadout.dm b/monkestation/code/modules/donator/code/datum/loadout.dm index 1d35e5a15d50..8f1f8a78e4b7 100644 --- a/monkestation/code/modules/donator/code/datum/loadout.dm +++ b/monkestation/code/modules/donator/code/datum/loadout.dm @@ -469,6 +469,12 @@ donator_only = TRUE requires_purchase = FALSE +/datum/loadout_item/toys/elliethedarksunplush + name = "Ellie plush" + item_path = /obj/item/toy/plush/elliethedarksun + donator_only = TRUE + requires_purchase = FALSE + //ThePooba /datum/loadout_item/mask/poob_mask name = "Yellow gas mask" diff --git a/monkestation/code/modules/donator/code/item/plush.dm b/monkestation/code/modules/donator/code/item/plush.dm index 0447c483f136..e98098c54885 100644 --- a/monkestation/code/modules/donator/code/item/plush.dm +++ b/monkestation/code/modules/donator/code/item/plush.dm @@ -112,3 +112,10 @@ desc = "A plush of a Cowlephant ~Handcrafted lovingly for Raziaar" icon = 'monkestation/code/modules/donator/icons/obj/plushes.dmi' icon_state = "cowlephant" + +/obj/item/toy/plush/elliethedarksun + name = "ellie plush" + desc = "A plush of a crewmember named Ellie! ~Handcrafted lovingly for elliethedarksun (must be an alias for something..)" + icon = 'monkestation/code/modules/donator/icons/obj/plushes.dmi' + icon_state = "elliethedarksun" + squeak_override = list('monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-1.ogg'=1,'monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-2.ogg'=1,'monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-3.ogg'=1) diff --git a/monkestation/code/modules/donator/icons/obj/plushes.dmi b/monkestation/code/modules/donator/icons/obj/plushes.dmi index e1036c599cab..4e2f9c573d8a 100644 Binary files a/monkestation/code/modules/donator/icons/obj/plushes.dmi and b/monkestation/code/modules/donator/icons/obj/plushes.dmi differ diff --git a/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-1.ogg b/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-1.ogg new file mode 100644 index 000000000000..aa19b91b8568 Binary files /dev/null and b/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-1.ogg differ diff --git a/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-2.ogg b/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-2.ogg new file mode 100644 index 000000000000..1eef1590c264 Binary files /dev/null and b/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-2.ogg differ diff --git a/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-3.ogg b/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-3.ogg new file mode 100644 index 000000000000..87459e6cbe26 Binary files /dev/null and b/monkestation/code/modules/donator/sounds/elliethedarksunPlushSqueak-3.ogg differ