-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
davidpwbrown
authored
Apr 4, 2020
1 parent
075f860
commit 53657b5
Showing
27 changed files
with
1,689 additions
and
127 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
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,32 @@ | ||
[ | ||
{ | ||
"id": "heavy_duty_military_rotor", | ||
"type": "GENERIC", | ||
"category": "veh_parts", | ||
"name": "heavy-duty military rotors", | ||
"name_plural": "sets of heavy-duty military rotors", | ||
"description": "A set of four rotor blades from a military attack helicopter.", | ||
"price": 23400, | ||
"weight": "452000 g", | ||
"volume": "452000 ml", | ||
"looks_like": "xl_wind_turbine", | ||
"material": "steel", | ||
"symbol": "X", | ||
"color": "dark_gray" | ||
}, | ||
{ | ||
"id": "small_helicopter_rotor", | ||
"type": "GENERIC", | ||
"category": "veh_parts", | ||
"name": "small civilian helicopter rotors", | ||
"name_plural": "sets of small civilian helicopter rotors", | ||
"description": "A set of four rotor blades from a civilian light helicopter.", | ||
"price": 1200, | ||
"weight": "251000 g", | ||
"volume": "251000 ml", | ||
"looks_like": "xl_wind_turbine", | ||
"material": "steel", | ||
"symbol": "X", | ||
"color": "blue" | ||
} | ||
] |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[ | ||
{ | ||
"abstract": "helicopter_rotors", | ||
"type": "vehicle_part", | ||
"location": "on_roof", | ||
"symbol": "X", | ||
"color": "light_blue", | ||
"broken_symbol": "O", | ||
"broken_color": "light_gray", | ||
"flags": [ "ROTOR" ], | ||
"description": "A set of aerofoil helicopter rotors, when spun at high speed, they generate thrust via lift." | ||
}, | ||
{ | ||
"id": "heavy_duty_military_rotor", | ||
"copy-from": "helicopter_rotors", | ||
"type": "vehicle_part", | ||
"name": "heavy-duty military rotors", | ||
"item": "heavy_duty_military_rotor", | ||
"//": "rotor diameter is in meters", | ||
"rotor_diameter": 15, | ||
"//": "difficulty is artificially high to prevent homemade helicopters - for the moment", | ||
"difficulty": 30, | ||
"durability": 450, | ||
"description": "A set of four military-grade helicopter rotor blades, used to provide lift by rotation.", | ||
"damage_modifier": 80, | ||
"breaks_into": [ { "item": "scrap", "count": [ 15, 30 ] }, { "item": "steel_chunk", "count": [ 8, 16 ] } ], | ||
"damage_reduction": { "all": 66 } | ||
}, | ||
{ | ||
"id": "small_civilian_rotors", | ||
"copy-from": "helicopter_rotors", | ||
"type": "vehicle_part", | ||
"name": "small helicopter rotors", | ||
"item": "small_helicopter_rotor", | ||
"//": "rotor diameter is in meters", | ||
"rotor_diameter": 8, | ||
"//": "difficulty is artificially high to prevent homemade helicopters - for the moment", | ||
"difficulty": 30, | ||
"durability": 100, | ||
"description": "A set of four military-grade helicopter rotor blades, used to provide lift by rotation.", | ||
"damage_modifier": 80, | ||
"breaks_into": [ { "item": "scrap", "count": [ 8, 15 ] }, { "item": "steel_chunk", "count": [ 2, 8 ] } ], | ||
"damage_reduction": { "all": 22 } | ||
}, | ||
{ | ||
"id": "heavy_duty_military_blackhawk_rotors", | ||
"copy-from": "heavy_duty_military_rotor", | ||
"type": "vehicle_part", | ||
"name": "heavy-duty military Blackhawk rotors", | ||
"item": "heavy_duty_military_rotor", | ||
"//": "rotor diameter is in meters", | ||
"description": "A set of four military-grade helicopter rotor blades, used to provide lift by rotation.", | ||
"rotor_diameter": 16 | ||
}, | ||
{ | ||
"id": "heavy_duty_military_osprey_rotors", | ||
"copy-from": "heavy_duty_military_rotor", | ||
"type": "vehicle_part", | ||
"name": "heavy-duty military Osprey rotors", | ||
"item": "heavy_duty_military_rotor", | ||
"//": "rotor diameter is in meters", | ||
"description": "A set of three military-grade helicopter rotor blades, used to provide lift by rotation.", | ||
"rotor_diameter": 11 | ||
} | ||
] |
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
Oops, something went wrong.