diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm index 5bdddb9542..68eb6d40ea 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm @@ -195,9 +195,12 @@ /mob/living/simple_mob/humanoid/merc/ranged/rifle/mag loot_list = list(/obj/item/weapon/gun/magnetic/railgun/flechette = 100) - projectiletype = /obj/item/projectile/bullet/magnetic/flechette + projectiletype = /obj/item/projectile/bullet/magnetic/flechette/rapid // Who thought rapid fire 20 damage with 100% armor pen was a good idea? CH edit projectilesound = 'sound/weapons/rapidslice.ogg' + projectile_dispersion = 5 + projectile_accuracy = -20 + base_attack_cooldown = 15 reload_max = 10 // Laser Rifle diff --git a/code/modules/projectiles/projectile/magnetic_ch.dm b/code/modules/projectiles/projectile/magnetic_ch.dm new file mode 100644 index 0000000000..e86fc19557 --- /dev/null +++ b/code/modules/projectiles/projectile/magnetic_ch.dm @@ -0,0 +1,6 @@ +/obj/item/projectile/bullet/magnetic/flechette/rapid + name = "rapid flechette" + icon_state = "flechette" + fire_sound = 'sound/weapons/rapidslice.ogg' + damage = 10 + armor_penetration = 35 \ No newline at end of file diff --git a/vorestation.dme b/vorestation.dme index 8423b17e43..9d7dfff75d 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -3378,6 +3378,7 @@ #include "code\modules\projectiles\projectile\force.dm" #include "code\modules\projectiles\projectile\hook.dm" #include "code\modules\projectiles\projectile\magnetic.dm" +#include "code\modules\projectiles\projectile\magnetic_ch.dm" #include "code\modules\projectiles\projectile\pellets.dm" #include "code\modules\projectiles\projectile\scatter.dm" #include "code\modules\projectiles\projectile\special.dm"