Skip to content

Commit

Permalink
why did there have to be a refractor to full auto which forgets the m…
Browse files Browse the repository at this point in the history
…echanics of fullauto ramp-up that all FAs were balanced on i swear to god
  • Loading branch information
CapCamIII committed Jul 26, 2023
1 parent 13af81b commit cf2ff8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions code/modules/projectiles/guns/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@
current_mag = /obj/item/ammo_magazine/pkp
w_class = SIZE_LARGE
force = 30 //the image of a upp machinegunner beating someone to death with a gpmg makes me laugh
flags_gun_features = GUN_WIELDED_FIRING_ONLY|GUN_HAS_FULL_AUTO|GUN_FULL_AUTO_ON|GUN_FULL_AUTO_ONLY|GUN_CAN_POINTBLANK|GUN_AUTO_EJECTOR|GUN_SPECIALIST|GUN_AMMO_COUNTER
start_semiauto = FALSE
start_automatic = TRUE
flags_gun_features = GUN_WIELDED_FIRING_ONLY|GUN_CAN_POINTBLANK|GUN_AUTO_EJECTOR|GUN_SPECIALIST|GUN_AMMO_COUNTER
gun_category = GUN_CATEGORY_HEAVY
attachable_allowed = list(
/obj/item/attachable/pkpbarrel,
Expand Down Expand Up @@ -211,10 +213,11 @@
/obj/item/weapon/gun/pkp/set_gun_config_values()
..()
fire_delay = FIRE_DELAY_TIER_10
burst_amount = BURST_AMOUNT_TIER_5
burst_delay = FIRE_DELAY_TIER_10
burst_amount = BURST_AMOUNT_TIER_6
burst_delay = FIRE_DELAY_TIER_9
accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4
accuracy_mult_unwielded = BASE_ACCURACY_MULT
fa_max_scatter = SCATTER_AMOUNT_TIER_8
scatter = SCATTER_AMOUNT_TIER_10
burst_scatter_mult = SCATTER_AMOUNT_TIER_8
scatter_unwielded = SCATTER_AMOUNT_TIER_10
Expand Down
2 changes: 1 addition & 1 deletion code/modules/projectiles/guns/specialist.dm
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,9 @@
/obj/item/weapon/gun/rifle/sniper/svd/set_gun_config_values()
..()
set_fire_delay(FIRE_DELAY_TIER_5)
set_burst_amount(BURST_AMOUNT_TIER_1)
accuracy_mult = BASE_ACCURACY_MULT * 3
scatter = SCATTER_AMOUNT_TIER_8
burst_scatter_mult = SCATTER_AMOUNT_TIER_6
damage_mult = BASE_BULLET_DAMAGE_MULT
recoil = RECOIL_AMOUNT_TIER_5
damage_falloff_mult = 0
Expand Down

0 comments on commit cf2ff8d

Please sign in to comment.