diff --git a/icons/obj/custom.dmi b/icons/obj/custom.dmi index ea8c278053..94ed717a41 100644 Binary files a/icons/obj/custom.dmi and b/icons/obj/custom.dmi differ 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/custom_loadout/custom_items.dm b/modular_citadel/code/modules/custom_loadout/custom_items.dm index 113f0546d9..830783e564 100644 --- a/modular_citadel/code/modules/custom_loadout/custom_items.dm +++ b/modular_citadel/code/modules/custom_loadout/custom_items.dm @@ -397,3 +397,11 @@ desc = "Comfy Lucky Jackboots with the word Luck on them." item_state = "luckyjack" icon_state = "luckyjack" + +/obj/item/toy/gun/m41 + name = "M41" + desc = "An M41 that fires dummy rounds!" + icon_state = "toym41" + icon = 'icons/obj/custom.dmi' + fire_sound = 'sound/weapons/gunshot_smg.ogg' + materials = list(MAT_METAL=2000, MAT_GLASS=250) \ No newline at end of file