Skip to content

Commit

Permalink
Flammable liquid infrastructure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian-Otten committed Apr 12, 2020
1 parent 217f423 commit d6a3800
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 15 deletions.
17 changes: 2 additions & 15 deletions data/json/recipes/weapon/explosive.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,21 +209,8 @@
"time": "30 s",
"reversible": true,
"autolearn": true,
"components": [
[ [ "rag", 1 ] ],
[ [ "bottle_glass", 1 ], [ "flask_glass", 1 ], [ "clay_canister", 1 ] ],
[
[ "gasoline", 500 ],
[ "diesel", 500 ],
[ "biodiesel", 500 ],
[ "chem_ethanol", 500 ],
[ "chem_methanol", 500 ],
[ "ether", 500 ],
[ "denat_alcohol", 500 ],
[ "lamp_oil", 500 ],
[ "motor_oil", 500 ]
]
]
"using": [ [ "flammable_liquid", 500 ] ],
"components": [ [ [ "rag", 1 ] ], [ [ "bottle_glass", 1 ], [ "flask_glass", 1 ], [ "clay_canister", 1 ] ] ]
},
{
"result": "nail_bomb",
Expand Down
41 changes: 41 additions & 0 deletions data/json/requirements/explosives.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,45 @@
[
{
"id": "flammable_liquid",
"type": "requirement",
"//": "This should contain all flammable liquids useful for things like molotovs, 1 mL.",
"components": [
[
[ "gasoline", 1 ],
[ "diesel", 1 ],
[ "biodiesel", 1 ],
[ "chem_ethanol", 1 ],
[ "chem_methanol", 1 ],
[ "ether", 1 ],
[ "denat_alcohol", 1 ],
[ "lamp_oil", 1 ],
[ "motor_oil", 1 ],
[ "jp8", 1 ],
[ "avgas", 1 ]
]
]
},
{
"id": "accelerant_liquid",
"type": "requirement",
"//": "This should contain all flammable liquids with a flash point below 30 degrees centigrade, 1 mL.",
"components": [
[
[ "gasoline", 1 ],
[ "chem_ethanol", 1 ],
[ "chem_methanol", 1 ],
[ "ether", 1 ],
[ "denat_alcohol", 1 ],
[ "avgas", 1 ]
]
]
},
{
"id": "fuel_liquid",
"type": "requirement",
"//": "This should contain all flammable liquids with a flash point above 30 degrees centigrade, 1 mL.",
"components": [ [ [ "diesel", 1 ], [ "biodiesel", 1 ], [ "lamp_oil", 1 ], [ "jp8", 1 ], [ "motor_oil", 1 ] ] ]
},
{
"id": "volatile_explosive",
"type": "requirement",
Expand Down

0 comments on commit d6a3800

Please sign in to comment.