diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index b53cbe4712..ea75fe449f 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -313,3 +313,9 @@ datum/gear/darksabresheath category = SLOT_IN_BACKPACK path = /obj/item/clothing/shoes/lucky ckeywhitelist = list("donaldtrumpthecommunist") + +/datum/gear/m41 + name = "Toy M41" + category = SLOT_IN_BACKPACK + path = /obj/item/toy/gun/m41 + ckeywhitelist = list("ThalVerscholen") diff --git a/modular_citadel/code/modules/projectiles/guns/toys.dm b/modular_citadel/code/modules/projectiles/guns/toys.dm index d6b80a95e5..a90ea999a4 100644 --- a/modular_citadel/code/modules/projectiles/guns/toys.dm +++ b/modular_citadel/code/modules/projectiles/guns/toys.dm @@ -57,4 +57,12 @@ desc = "An authentic cap-firing reproduction of a F3 Justicar big-bore revolver! Pretend to blow your friend's brains out with this 100% safe toy! Satisfaction guaranteed!" icon_state = "justicar" icon = 'modular_citadel/icons/obj/guns/toys.dmi' - materials = list(MAT_METAL=2000, MAT_GLASS=250) \ No newline at end of file + materials = list(MAT_METAL=2000, MAT_GLASS=250) + + +/obj/item/toy/gun/m41 + name = "Toy M41A Pulse Rifle" + desc = "A toy replica of the Corporate Mercenaries' standard issue rifle. For Avtomat is inscribed on the side." + icon_state = "toym41" + icon = 'modular_citadel/icons/obj/guns/toys.dmi' + materials = list(MAT_METAL=2000, MAT_GLASS=250) diff --git a/modular_citadel/icons/obj/guns/toys.dmi b/modular_citadel/icons/obj/guns/toys.dmi index 3c8595f405..4c58734754 100644 Binary files a/modular_citadel/icons/obj/guns/toys.dmi and b/modular_citadel/icons/obj/guns/toys.dmi differ