Merge pull request #15257 from shmabuu/shotgun-op-pls-nerf

Two handed Shotguns
This commit is contained in:
Fox McCloud
2021-01-11 00:12:39 -05:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
@@ -330,6 +330,7 @@
icon_state = "dshotgun"
item_state = "shotgun"
w_class = WEIGHT_CLASS_BULKY
weapon_weight = WEAPON_HEAVY
force = 10
flags = CONDUCT
slot_flags = SLOT_BACK
@@ -362,6 +363,10 @@
else
return ..()
/obj/item/gun/projectile/revolver/doublebarrel/sawoff(mob/user)
. = ..()
weapon_weight = WEAPON_MEDIUM
/obj/item/gun/projectile/revolver/doublebarrel/attack_self(mob/living/user)
var/num_unloaded = 0
while(get_ammo() > 0)
@@ -12,7 +12,7 @@
mag_type = /obj/item/ammo_box/magazine/internal/shot
fire_sound = 'sound/weapons/gunshots/gunshot_shotgun.ogg'
var/recentpump = 0 // to prevent spammage
weapon_weight = WEAPON_MEDIUM
weapon_weight = WEAPON_HEAVY
/obj/item/gun/projectile/shotgun/attackby(obj/item/A, mob/user, params)
. = ..()