Skip to content

Commit

Permalink
Propane accessories (CleverRaven#54143)
Browse files Browse the repository at this point in the history
* Propane accessories
Adds propane lantern, propane cooker, and gas forge.
  • Loading branch information
Drew4484 authored Jan 7, 2022
1 parent fba3191 commit 9b986bb
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 0 deletions.
25 changes: 25 additions & 0 deletions data/json/items/tool/cooking.json
Original file line number Diff line number Diff line change
Expand Up @@ -988,5 +988,30 @@
"default_magazine": "light_battery_cell"
}
]
},
{
"id": "propane_cooker",
"type": "TOOL",
"name": { "str": "propane cooker" },
"description": "This is a simple heater powered by propane. It is designed for cooking food.",
"weight": "800 g",
"volume": "1250 ml",
"price": 5000,
"price_postapoc": 250,
"to_hit": -1,
"bashing": 4,
"material": [ "steel" ],
"symbol": ";",
"color": "green",
"ammo": [ "propane" ],
"sub": "hotplate",
"pocket_data": [
{
"pocket_type": "MAGAZINE_WELL",
"item_restriction": [ "small_propane_tank", "medium_propane_tank", "large_propane_tank" ]
}
],
"charges_per_use": 1,
"use_action": [ "HOTPLATE", "HEAT_FOOD" ]
}
]
44 changes: 44 additions & 0 deletions data/json/items/tool/lighting.json
Original file line number Diff line number Diff line change
Expand Up @@ -708,5 +708,49 @@
],
"techniques": [ "WBLOCK_1" ],
"flags": [ "FIRE", "LIGHT_310", "CHARGEDIM", "FLAMING", "TRADER_AVOID", "WATER_EXTINGUISH", "BURNOUT" ]
},
{
"id": "propane_lantern",
"type": "TOOL",
"name": { "str": "propane lantern (off)", "str_pl": "propane lanterns (off)" },
"description": "This is a small propane powered lantern. It does not provide much light, but it lasts a long time. Use it to turn it on.",
"weight": "1400 g",
"volume": "750 ml",
"price": 3000,
"price_postapoc": 100,
"to_hit": 2,
"bashing": 1,
"material": [ "glass", "steel" ],
"symbol": ";",
"color": "yellow",
"ammo": [ "propane" ],
"pocket_data": [ { "pocket_type": "MAGAZINE_WELL", "rigid": true, "watertight": true, "item_restriction": [ "small_propane_tank" ] } ],
"charges_per_use": 1,
"use_action": {
"target": "propane_lantern_on",
"msg": "You turn the lamp on.",
"active": true,
"need_charges": 1,
"need_charges_msg": "The lamp is empty.",
"type": "transform"
},
"flags": [ "ALLOWS_REMOTE_USE" ]
},
{
"id": "propane_lantern_on",
"copy-from": "propane_lantern",
"type": "TOOL",
"name": { "str": "propane lantern (on)", "str_pl": "propane lanterns (on)" },
"description": "This is a small propane powered lantern. It does not provide much light, but it lasts a long time. It is turned on. Use it to turn it off.",
"power_draw": 60,
"revert_to": "propane_lantern",
"use_action": {
"ammo_scale": 0,
"target": "propane_lantern",
"msg": "The lantern is extinguished.",
"menu_text": "Turn off",
"type": "transform"
},
"flags": [ "LIGHT_15", "TRADER_AVOID", "ALLOWS_REMOTE_USE" ]
}
]
25 changes: 25 additions & 0 deletions data/json/items/tool/metalworking.json
Original file line number Diff line number Diff line change
Expand Up @@ -425,5 +425,30 @@
"symbol": ";",
"qualities": [ [ "GRIND", 2 ] ],
"flags": [ "DURABLE_MELEE" ]
},
{
"id": "gas_forge",
"type": "TOOL",
"name": { "str": "gas forge" },
"//": "Based on the Whisper Daddy 3 Burner Forge, large enough to craft tools and small weapons.",
"description": "This is a gas-fueled metalworking forge. If combined with the right tools, you could use this for metalworking.",
"weight": "32205 g",
"volume": "8 L",
"price": 80000,
"price_postapoc": 10000,
"to_hit": -5,
"bashing": 25,
"material": [ "steel" ],
"symbol": ";",
"color": "dark_gray",
"ammo": [ "propane" ],
"pocket_data": [
{
"pocket_type": "MAGAZINE_WELL",
"item_restriction": [ "small_propane_tank", "medium_propane_tank", "large_propane_tank" ]
}
],
"sub": "forge",
"flags": [ "ALLOWS_REMOTE_USE" ]
}
]
29 changes: 29 additions & 0 deletions data/json/recipes/recipe_others.json
Original file line number Diff line number Diff line change
Expand Up @@ -2313,5 +2313,34 @@
"autolearn": true,
"qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "CUT", "level": 2 } ],
"components": [ [ [ "training_dummy_light", 1 ] ], [ [ "duct_tape", 50 ], [ "cordage", 2, "LIST" ] ], [ [ "scrap", 150 ] ] ]
},
{
"type": "recipe",
"activity_level": "fake",
"result": "propane_cooker",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_TOOLS",
"skill_used": "fabrication",
"difficulty": 4,
"time": "10 m",
"reversible": true,
"autolearn": true,
"components": [ [ [ "propane_lantern", 2 ] ], [ [ "pilot_light", 1 ] ], [ [ "scrap", 3 ] ], [ [ "duct_tape", 50 ] ] ]
},
{
"type": "recipe",
"activity_level": "MODERATE_EXERCISE",
"result": "gas_forge",
"category": "CC_OTHER",
"subcategory": "CSC_OTHER_TOOLS",
"skill_used": "fabrication",
"difficulty": 7,
"time": "360 m",
"components": [
[ [ "propane_lantern", 3 ], [ "propane_cooker", 2 ] ],
[ [ "pilot_light", 1 ] ],
[ [ "scrap", 10 ] ],
[ [ "brick", 8 ] ]
]
}
]

0 comments on commit 9b986bb

Please sign in to comment.