-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Aftershock] Price Related Bug-smashing (#79036)
* Correct prices and move IPAV armor from clothing to armor category * Lint * Move price overrides to Exoplanet Mod * Kick Test * Rename folder to please test gods * Kick Tests * Kick Test
- Loading branch information
1 parent
186d03b
commit 2911013
Showing
3 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
data/mods/aftershock_exoplanet/price_overrides/grenades.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"id": "smokebomb", | ||
"type": "GENERIC", | ||
"name": { "str": "smoke bomb" }, | ||
"copy-from": "smokebomb", | ||
"price": "150 USD", | ||
"price_postapoc": "150 USD" | ||
}, | ||
{ | ||
"id": "grenade_emp", | ||
"type": "TOOL", | ||
"name": { "str": "EMP grenade" }, | ||
"copy-from": "grenade_emp", | ||
"price": "500 USD", | ||
"price_postapoc": "500 USD" | ||
}, | ||
{ | ||
"id": "grenade", | ||
"type": "TOOL", | ||
"name": { "str": "grenade" }, | ||
"copy-from": "grenade", | ||
"price": "350 USD", | ||
"price_postapoc": "350 USD" | ||
}, | ||
{ | ||
"id": "grenade_inc", | ||
"type": "TOOL", | ||
"name": { "str": "incendiary grenade" }, | ||
"copy-from": "grenade_inc", | ||
"price": "450 USD", | ||
"price_postapoc": "450 USD" | ||
}, | ||
{ | ||
"id": "scrambler", | ||
"type": "TOOL", | ||
"name": { "str": "scrambler grenade" }, | ||
"copy-from": "scrambler", | ||
"price": "800 USD", | ||
"price_postapoc": "800 USD" | ||
} | ||
] |