-
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.
Merge pull request #40008 from Soup-de-Loop/soupdeloop-blazemod-PR24
Blazemod Mini-PR: Separate blaze turrets from expanded vanilla turrets
- Loading branch information
Showing
2 changed files
with
118 additions
and
116 deletions.
There are no files selected for viewing
118 changes: 118 additions & 0 deletions
118
data/mods/blazemod/vehicleparts/blaze_custom_turret.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,118 @@ | ||
[ | ||
{ | ||
"id": "mounted_cangun", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted slingshot cannon" }, | ||
"item": "cangun", | ||
"color": "brown", | ||
"broken_color": "brown", | ||
"breaks_into": [ { "item": "cangun", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 4 ] ] }, "removal": { "skills": [ [ "mechanics", 2 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_cutter", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted lacerator" }, | ||
"item": "cutter", | ||
"broken_symbol": "x", | ||
"color": "dark_gray", | ||
"broken_color": "dark_gray", | ||
"power": -1750, | ||
"breaks_into": [ { "item": "cutter", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 4 ] ] }, "removal": { "skills": [ [ "mechanics", 2 ] ] } }, | ||
"extend": { "flags": [ "EXTRA_DRAG" ] } | ||
}, | ||
{ | ||
"id": "mounted_gattler", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted rotary cannon" }, | ||
"item": "gattler", | ||
"color": "dark_gray", | ||
"broken_color": "dark_gray", | ||
"breaks_into": [ { "item": "gattler", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 5 ] ] }, "removal": { "skills": [ [ "mechanics", 3 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_lasgun", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted laser cannon" }, | ||
"item": "lasgun", | ||
"color": "blue", | ||
"broken_color": "blue", | ||
"breaks_into": [ { "item": "lasgun", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 6 ] ] }, "removal": { "skills": [ [ "mechanics", 4 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_lasgunp", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted pulse laser" }, | ||
"item": "lasgunp", | ||
"color": "blue", | ||
"broken_color": "blue", | ||
"breaks_into": [ { "item": "lasgun", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 6 ] ] }, "removal": { "skills": [ [ "mechanics", 4 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_lasgunx", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted turbolaser" }, | ||
"item": "lasgunx", | ||
"color": "magenta", | ||
"broken_color": "magenta", | ||
"breaks_into": [ { "item": "lasgunx", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 6 ] ] }, "removal": { "skills": [ [ "mechanics", 4 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_ripper", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted ripper" }, | ||
"item": "ripper", | ||
"broken_symbol": "x", | ||
"color": "dark_gray", | ||
"broken_color": "dark_gray", | ||
"power": -8750, | ||
"breaks_into": [ { "item": "ripper", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 5 ] ] }, "removal": { "skills": [ [ "mechanics", 3 ] ] } }, | ||
"extend": { "flags": [ "EXTRA_DRAG" ] } | ||
}, | ||
{ | ||
"id": "mounted_scorpion", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted scorpion ballista" }, | ||
"item": "scorpion", | ||
"color": "brown", | ||
"broken_color": "brown", | ||
"breaks_into": [ { "item": "scorpion", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 4 ] ] }, "removal": { "skills": [ [ "mechanics", 2 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_slauncher", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted speargun" }, | ||
"item": "slauncher", | ||
"color": "light_gray", | ||
"broken_color": "light_gray", | ||
"breaks_into": [ { "item": "slauncher", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 3 ] ] }, "removal": { "skills": [ [ "mechanics", 2 ] ] } } | ||
}, | ||
{ | ||
"id": "mounted_teslagun", | ||
"copy-from": "turret", | ||
"type": "vehicle_part", | ||
"name": { "str": "mounted tesla cannon" }, | ||
"item": "teslagun", | ||
"color": "blue", | ||
"broken_color": "blue", | ||
"breaks_into": [ { "item": "teslagun", "count": [ 0, 1 ] } ], | ||
"requirements": { "install": { "skills": [ [ "mechanics", 3 ] ] }, "removal": { "skills": [ [ "mechanics", 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