diff --git a/nsv13/code/game/objects/items/nsv13_plushes.dm b/nsv13/code/game/objects/items/nsv13_plushes.dm index ab35636fe29..e648207b27a 100644 --- a/nsv13/code/game/objects/items/nsv13_plushes.dm +++ b/nsv13/code/game/objects/items/nsv13_plushes.dm @@ -25,6 +25,11 @@ attack_verb = list("bumped", "rammed", "missiled") squeak_override = list('nsv13/sound/effects/fighters/autocannon.ogg'=1) +/obj/item/toy/plush/lfighter/synlfighter + name = "Syndicate light fighter plush" + desc = "An adorable stuffed toy shaped like a Su-818 Rapier light fighter with Syndicate livery." + icon_state = "synlightfighter" + /obj/item/toy/plush/transport name = "utility craft plush" desc = "An adorable stuffed toy shaped like a Su-437 Sabre utility vessel." diff --git a/nsv13/code/game/objects/items/storage_items.dm b/nsv13/code/game/objects/items/storage_items.dm index 50c2c0f8d3c..3bbae9f0c02 100644 --- a/nsv13/code/game/objects/items/storage_items.dm +++ b/nsv13/code/game/objects/items/storage_items.dm @@ -63,3 +63,11 @@ new /obj/item/clothing/gloves/maid(src) new /obj/item/clothing/under/costume/maid(src) +/obj/item/storage/box/syndie_kit/plushie + name = "\improper DIY plushbomb kit" + +/obj/item/storage/box/syndie_kit/plushie/PopulateContents() + new /obj/item/toy/plush/lfighter/synlfighter(src) + new /obj/item/kitchen/knife/combat/survival(src) + new /obj/item/grenade/syndieminibomb(src) + new /obj/item/screwdriver(src) diff --git a/nsv13/code/modules/uplink/uplink_items.dm b/nsv13/code/modules/uplink/uplink_items.dm index 2ea0e0785d9..fd5ac403f4c 100644 --- a/nsv13/code/modules/uplink/uplink_items.dm +++ b/nsv13/code/modules/uplink/uplink_items.dm @@ -23,3 +23,11 @@ cost = 20 cant_discount = TRUE surplus = 0 + +/datum/uplink_item/explosives/fighterplushie + name = "Plushie Bomb Kit" + desc = "A kit with all of the tools and items required to assemble your very own plushie bomb! \ + Take out the unsuspecting Nanotrasen scum with a gift they'll never expect. \ + Contains a Syndicate light fighter plush, syndicate minibomb, screwdriver and a survival knife" + item = /obj/item/storage/box/syndie_kit/plushie + cost = 8 diff --git a/nsv13/icons/obj/custom_plushes.dmi b/nsv13/icons/obj/custom_plushes.dmi index 07af6871b37..63b3474c15d 100644 Binary files a/nsv13/icons/obj/custom_plushes.dmi and b/nsv13/icons/obj/custom_plushes.dmi differ