diff --git a/monkestation/code/modules/donator/code/datum/loadout.dm b/monkestation/code/modules/donator/code/datum/loadout.dm index 8f1f8a78e4b7..92c23300dac3 100644 --- a/monkestation/code/modules/donator/code/datum/loadout.dm +++ b/monkestation/code/modules/donator/code/datum/loadout.dm @@ -508,3 +508,10 @@ item_path = /obj/item/toy/plush/cowlephant donator_only = TRUE requires_purchase = FALSE + +//av4l0n +/datum/loadout_item/toys/sheep_plush_av4l0n + name = "Sheep Plush" + item_path = /obj/item/clothing/head/sheep_plush_av4l0n + donator_only = TRUE + requires_purchase = FALSE diff --git a/monkestation/code/modules/donator/code/item/plush.dm b/monkestation/code/modules/donator/code/item/plush.dm index e98098c54885..64b2a39370da 100644 --- a/monkestation/code/modules/donator/code/item/plush.dm +++ b/monkestation/code/modules/donator/code/item/plush.dm @@ -119,3 +119,17 @@ 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) + +/obj/item/clothing/head/sheep_plush_av4l0n + name = "sheep plushie" + desc = "What a silly little guy." + attack_verb_continuous = list("thumps", "whomps", "bumps") + attack_verb_simple = list("thump", "whomp", "bump") + w_class = WEIGHT_CLASS_SMALL + resistance_flags = FLAMMABLE + icon = 'monkestation/code/modules/donator/icons/obj/plushes.dmi' + worn_icon = 'monkestation/code/modules/donator/icons/mob/plushes.dmi' + icon_state = "av4l0n_sheep" + inhand_icon_state = "av4l0n_sheep" + lefthand_file = 'monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_left.dmi' + righthand_file = 'monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_right.dmi' diff --git a/monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_left.dmi b/monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_left.dmi new file mode 100644 index 000000000000..530025d68566 Binary files /dev/null and b/monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_left.dmi differ diff --git a/monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_right.dmi b/monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_right.dmi new file mode 100644 index 000000000000..0d0c32c43375 Binary files /dev/null and b/monkestation/code/modules/donator/icons/mob/inhands/plushes_inhand_right.dmi differ diff --git a/monkestation/code/modules/donator/icons/mob/plushes.dmi b/monkestation/code/modules/donator/icons/mob/plushes.dmi new file mode 100644 index 000000000000..53c9b699ebf2 Binary files /dev/null and b/monkestation/code/modules/donator/icons/mob/plushes.dmi differ diff --git a/monkestation/code/modules/donator/icons/obj/plushes.dmi b/monkestation/code/modules/donator/icons/obj/plushes.dmi index 4e2f9c573d8a..979d4c381c1f 100644 Binary files a/monkestation/code/modules/donator/icons/obj/plushes.dmi and b/monkestation/code/modules/donator/icons/obj/plushes.dmi differ