Skip to content

Commit

Permalink
NGR Turret ammo swap (#3726)
Browse files Browse the repository at this point in the history
🆑
balance: medium and light ngr turrets swapped ammo. mediums should be
more effective now.
/🆑
  • Loading branch information
Erikafox authored Nov 14, 2024
1 parent fded746 commit 7dcd844
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions code/game/machinery/porta_turret/portable_turret.dm
Original file line number Diff line number Diff line change
Expand Up @@ -914,19 +914,19 @@ DEFINE_BITFIELD(turret_flags, list(
/obj/machinery/porta_turret/ship/ngr
name = "Oasis Turret"
desc = "A turret manufactured by the New Gorlex Republic for its ships and installations. Proudly manufactured within the nation!"
stun_projectile = /obj/projectile/bullet/c45/rubber
stun_projectile_sound = 'sound/weapons/gun/smg/cobra.ogg'
lethal_projectile = /obj/projectile/bullet/c45
lethal_projectile_sound = 'sound/weapons/gun/smg/cobra.ogg'
stun_projectile = /obj/projectile/bullet/c57x39mm/rubber
stun_projectile_sound = 'sound/weapons/gun/smg/sidewinder.ogg'
lethal_projectile = /obj/projectile/bullet/c57x39mm
lethal_projectile_sound = 'sound/weapons/gun/smg/sidewinder.ogg'
faction = list(FACTION_NGR, FACTION_PLAYER_SYNDICATE, "turret") //player_syndicate is just to be safe

/obj/machinery/porta_turret/ship/ngr/light
name = "Sonoran Turret"
desc = "A light turret manufactured by the New Gorlex Republic for its ships and installations. Proudly manufactured within the Nation, using locally produced munitions!"
stun_projectile = /obj/projectile/bullet/c57x39mm/rubber
stun_projectile_sound = 'sound/weapons/gun/smg/sidewinder.ogg'
lethal_projectile = /obj/projectile/bullet/c57x39mm
lethal_projectile_sound = 'sound/weapons/gun/smg/sidewinder.ogg'
stun_projectile = /obj/projectile/bullet/c45/rubber
stun_projectile_sound = 'sound/weapons/gun/smg/cobra.ogg'
lethal_projectile = /obj/projectile/bullet/c45
lethal_projectile_sound = 'sound/weapons/gun/smg/cobra.ogg'
scan_range = 7
shot_delay = 10

Expand Down

0 comments on commit 7dcd844

Please sign in to comment.