diff --git a/code/game/mecha/equipment/weapons/weapons.dm b/code/game/mecha/equipment/weapons/weapons.dm index 35e463d0127..ab9d4d2aca0 100644 --- a/code/game/mecha/equipment/weapons/weapons.dm +++ b/code/game/mecha/equipment/weapons/weapons.dm @@ -109,6 +109,18 @@ variance = 40 fire_sound = 'sound/weapons/taser2.ogg' +/obj/item/mecha_parts/mecha_equipment/weapon/energy/shotgun_laser + equip_cooldown = 2 SECONDS + name = "MESG-02 Laser Scattercannon" + desc = "A large-bore energy shotgun, configured to fire a large blast of lethal laser pellets." + icon_state = "mecha_laser_shotgun" + origin_tech = "materials=4;combat=5;" + energy_drain = 35 // This is per shot + 1x cost, so 560 per shot + projectile = /obj/item/projectile/beam/scatter/eshotgun + projectiles_per_shot = 15 + variance = 40 + fire_sound = 'sound/weapons/lasercannonfire.ogg' + /obj/item/mecha_parts/mecha_equipment/weapon/energy/ion equip_cooldown = 4 SECONDS name = "mkIV Ion Heavy Scatter Cannon" diff --git a/code/modules/research/designs/mechfabricator_designs.dm b/code/modules/research/designs/mechfabricator_designs.dm index 75339943b47..7183d356500 100644 --- a/code/modules/research/designs/mechfabricator_designs.dm +++ b/code/modules/research/designs/mechfabricator_designs.dm @@ -1069,6 +1069,17 @@ construction_time = 10 SECONDS category = list("Exosuit Equipment") +/datum/design/mech_laser_shotgun + name = "Exosuit Weapon (MESG-02 Laser Scattercannon)" + desc = "Allows for the construction of MESG-02 Laser Scattercannon." + id = "mech_ion" + build_type = MECHFAB + req_tech = list("combat" = 6, "materials" = 5) + build_path = /obj/item/mecha_parts/mecha_equipment/weapon/energy/shotgun_laser + materials = list(MAT_METAL=10000,MAT_GOLD=6000) + construction_time = 10 SECONDS + category = list("Exosuit Equipment") + /datum/design/mech_ion name = "Exosuit Weapon (MKIV Ion Heavy Cannon)" desc = "Allows for the construction of MKIV Ion Heavy Cannon." diff --git a/icons/mecha/mecha_equipment.dmi b/icons/mecha/mecha_equipment.dmi index 9b6816e343e..35757987ae5 100644 Binary files a/icons/mecha/mecha_equipment.dmi and b/icons/mecha/mecha_equipment.dmi differ