Skip to content

Commit

Permalink
feat(balance): Tweaks to grav weapon as per play testing (#339)
Browse files Browse the repository at this point in the history
Increase the damage of the Grav-Pistol and add maintenance values for grav weapons.
  • Loading branch information
OH296 authored Dec 27, 2024
1 parent 79d0288 commit 43cd424
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions scripts/scr_weapon/scr_weapon.gml
Original file line number Diff line number Diff line change
Expand Up @@ -597,9 +597,9 @@ global.weapons = {
"Grav-Pistol": {
"abbreviation": "GrvPstl",
"attack": {
"standard": 100,
"master_crafted": 110,
"artifact": 120
"standard": 150,
"master_crafted": 200,
"artifact": 250
},
"description": "A smaller version of the Grav-Gun which utilises the gravitic reaction principle most commonly seen powering grav-vehicles such as the Land Speeder.",
"melee_hands": 0,
Expand All @@ -608,7 +608,8 @@ global.weapons = {
"range": 2.1,
"spli": 1,
"arp": 1,
"tags": ["grav", "pistol"]
"tags": ["grav", "pistol"],
"maintenance" : 0.8,
},
"Grav-Gun": {
"abbreviation": "GrvGn",
Expand All @@ -624,7 +625,8 @@ global.weapons = {
"range": 4,
"spli": 3,
"arp": 1,
"tags": ["grav"]
"tags": ["grav"],
"maintenance" : 0.1,
},
"Grav-Cannon": {
"abbreviation": "GrvCan",
Expand All @@ -640,7 +642,8 @@ global.weapons = {
"range": 8,
"spli": 6,
"arp": 1,
"tags": ["grav", "heavy_weapon"]
"tags": ["grav", "heavy_weapon"],
"maintenance" : 0.2,
},
"Underslung Bolter": {
"abbreviation": "UndBltr",
Expand Down

0 comments on commit 43cd424

Please sign in to comment.