-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0f67aa
commit 499203a
Showing
36 changed files
with
273 additions
and
492 deletions.
There are no files selected for viewing
123 changes: 0 additions & 123 deletions
123
data/Legacy_mods/mods/blazemod/Blazemod/blaze_override.json
This file was deleted.
Oops, something went wrong.
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
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
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
41 changes: 41 additions & 0 deletions
41
data/Legacy_mods/mods/blazemod/Blazemod/items/ammo/metal_rail.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,41 @@ | ||
[ | ||
{ | ||
"id": "rebar_rail", | ||
"type": "AMMO", | ||
"name": { "str": "rebar rail" }, | ||
"description": "A short piece of ferromagnetic rebar which has been straightened and sharpened on one end. Could be used as a projectile by a sufficiently powerful electromagnetic weapon.", | ||
"weight": "236 g", | ||
"longest_side": "16 cm", | ||
"volume": "300 ml", | ||
"price": 1000, | ||
"price_postapoc": 250, | ||
"to_hit": -1, | ||
"material": [ "steel" ], | ||
"symbol": "=", | ||
"color": "light_gray", | ||
"count": 10, | ||
"ammo_type": "metal_rail", | ||
"range": 40, | ||
"damage": { "damage_type": "stab", "amount": 70, "armor_penetration": 25 }, | ||
"dispersion": 150, | ||
"effects": [ "RECYCLED", "NON_FOULING" ], | ||
"melee_damage": { "bash": 5, "cut": 1 } | ||
}, | ||
{ | ||
"id": "steel_rail", | ||
"copy-from": "rebar_rail", | ||
"type": "AMMO", | ||
"name": { "str": "steel rail" }, | ||
"description": "A short piece of steel which has been forged true and sharpened on one end. Could be used as a projectile by a sufficiently powerful electromagnetic weapon.", | ||
"weight": "212 g", | ||
"volume": "270 ml", | ||
"price": 1500, | ||
"price_postapoc": 500, | ||
"material": [ "steel" ], | ||
"color": "light_gray", | ||
"dispersion": 0, | ||
"effects": [ "NEVER_MISFIRES", "NON_FOULING" ], | ||
"relative": { "range": 10, "damage": { "damage_type": "stab", "amount": -5, "armor_penetration": 15 } }, | ||
"melee_damage": { "bash": 4, "cut": 2 } | ||
} | ||
] |
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
8 changes: 8 additions & 0 deletions
8
data/Legacy_mods/mods/blazemod/Blazemod/items/ammo_types.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,8 @@ | ||
[ | ||
{ | ||
"type": "ammunition_type", | ||
"id": "metal_rail", | ||
"name": "ferrous rail projectile", | ||
"default": "rebar_rail" | ||
} | ||
] |
Oops, something went wrong.