Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extracts and concentrates pt4 #37946

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions data/json/items/tool/science.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,101 @@
],
"magazine_well": 0
},
{
"id": "vac_oven_small",
"type": "TOOL",
"name": { "str": "small vacuum oven" },
"description": "A small 0.9 cubic foot vacuum oven used to purge residual solvents out of liquids and solid. Looks kind of like a microwave.",
"looks_like": "microwave",
"weight": "40860 g",
"ammo": "battery",
"charges_per_use": 1,
"magazines": [ [ "battery", [ "large_storage_battery", "storage_battery" ] ] ],
"volume": "27 L",
"price": 100000,
"to_hit": -10,
"bashing": 10,
"material": "steel",
"symbol": "E",
"flags": [ "ALLOWS_REMOTE_USE" ],
"color": "dark_gray"
},
{
"id": "vac_oven_small_full",
"type": "TOOL",
"name": { "str": "filled small vacuum oven" },
"description": "A small vacuum oven filled with extract ready to be purged of residual solvents.",
"looks_like": "microwave",
"weight": "40860 g",
"volume": "27 L",
"price": 100000,
"to_hit": -10,
"bashing": 10,
"material": "steel",
"ammo": "battery",
"charges_per_use": 1,
"magazines": [ [ "battery", [ "large_storage_battery", "storage_battery" ] ] ],
"symbol": "E",
"color": "dark_gray",
"use_action": {
"target": "vac_oven_small_on",
"msg": "You turn on the vacuum oven and pump.",
"active": true,
"need_charges": 1,
"need_charges_msg": "The vacuum oven's batteries need more charge.",
"type": "transform"
},
"flags": [ "TRADER_AVOID", "ALLOWS_REMOTE_USE" ]
},
{
"id": "vac_oven_small_on",
"type": "TOOL",
"name": { "str": "small vacuum oven (on)", "str_pl": "small vacuum ovens (on)" },
"description": "A small vacuum oven filled with extract currently purging out all residual solvents. This process takes about 72hrs.",
"looks_like": "microwave",
"weight": "40952 g",
"volume": "27 L",
"price": 100000,
"to_hit": -10,
"bashing": 10,
"ammo": "battery",
"power_draw": 120000,
"revert_to": "vac_oven_small_full",
"charges_per_use": 1,
"magazines": [ [ "battery", [ "large_storage_battery", "storage_battery" ] ] ],
"material": "steel",
"symbol": "E",
"color": "dark_gray",
"use_action": {
"target": "vac_oven_small_done",
"msg": "The vacuum oven is done purging. Your shatter is ready!",
"active": false,
"moves": 0,
"type": "delayed_transform",
"transform_age": 259200,
"not_ready_msg": "The vacuum oven is still purging."
},
"flags": [ "TRADER_AVOID", "NO_UNLOAD", "ALLOWS_REMOTE_USE" ]
},
{
"id": "vac_oven_small_done",
"type": "TOOL",
"name": { "str": "finished small vacuum oven" },
"description": "A small vacuum oven filled with extract ready to package up for consumption. WooHoo!",
"looks_like": "microwave",
"weight": "40944 g",
"volume": "27 L",
"price": 100000,
"to_hit": -10,
"bashing": 10,
"ammo": "battery",
"charges_per_use": 1,
"magazines": [ [ "battery", [ "large_storage_battery", "storage_battery" ] ] ],
"material": "steel",
"symbol": "E",
"color": "dark_gray",
"flags": [ "TRADER_AVOID", "ALLOWS_REMOTE_USE" ]
},
{
"id": "closed_loop_extractor_small",
"type": "TOOL",
Expand Down