Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(balance): Tweaks to grav weapon as per play testing #339

Merged
merged 2 commits into from
Dec 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 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 @@ -641,6 +643,7 @@ global.weapons = {
"spli": 6,
"arp": 1,
"tags": ["grav", "heavy_weapon"]
OH296 marked this conversation as resolved.
Show resolved Hide resolved
"maintenance" : 0.2,
},
"Underslung Bolter": {
"abbreviation": "UndBltr",
Expand Down
Loading