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

Chemistry Tools 2: Add basic analytical science tools #27212

Merged
merged 15 commits into from Jan 6, 2019
93 changes: 93 additions & 0 deletions data/json/items/tools.json
Expand Up @@ -1506,6 +1506,99 @@
"color": "light_gray",
"qualities": [ [ "DISTILL", 1 ], [ "CHEM", 2 ], [ "BOIL", 1 ] ]
},
{
"id": "analytical_set_basic",
"type": "TOOL",
"category": "tools",
"name": "basic laboratory analysis kit",
"description": "This hefty kit contains some basic things you should probably not try to do precise chemistry without: namely, a small balance scale, a spectrophotometer, a melting point apparatus, a pH meter, and a set of paper for thin layer chromatography. This makes it a lot easier to feel confident that the chemical you've made is what you think you've made.",
I-am-Erk marked this conversation as resolved.
Show resolved Hide resolved
"weight": 12500,
"volume": 20,
"price": 25000,
"ammo": "battery",
"max_charges": 300,
"to_hit": -5,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "light_gray",
"qualities": [ [ "ANALYSIS", 1 ] ]
},
{
"id": "balance_small",
"type": "TOOL",
"category": "tools",
"name": "small weight scale",
"description": "This is a simple scale that uses a set of steel weights on sliding bars to measure a sample's mass quite accurately.",
"weight": 1000,
"volume": 8,
"price": 1600,
"to_hit": -5,
"material": [ "steel" ],
"symbol": ";",
"color": "light_gray",
},
{
"id": "spectrophotometer",
"type": "TOOL",
"category": "tools",
"name": "spectrophotometer",
"description": "This ubiquitous analytical chemistry tool measures the light absorption of a liquid sample in a special tube called a burette.",
"weight": 5000,
"volume": 8,
"price": 8000,
"ammo": "battery",
"max_charges": 100,
"to_hit": -5,
"material": [ "plastic", "steel" ],
"symbol": ";",
"color": "light_gray",
},
{
"id": "burettes",
"type": "TOOL",
"category": "tools",
"name": "set of spectrometry burettes",
I-am-Erk marked this conversation as resolved.
Show resolved Hide resolved
"description": "This is a small box filled with precisely calibrated square plastic tubes for laboratory spectrometer use.",
"weight": 500,
"volume": 1,
"price": 1200,
"to_hit": -5,
"material": [ "plastic" ],
"symbol": ";",
"color": "light_gray",
},
{
"id": "ph_meter",
"type": "TOOL",
"category": "tools",
"name": "pH meter",
"description": "This is basically a pair of glass probes on a voltmeter. By putting one probe into a calibration solution (conveniently included) and the other in a substance, you can calculate the acidity.",
"weight": 3000,
"volume": 6,
"price": 6000,
"ammo": "battery",
"max_charges": 100,
"to_hit": -5,
"material": [ "plastic", "glass" ],
"symbol": ";",
"color": "light_gray",
},
{
"id": "melting_point",
"type": "TOOL",
"category": "tools",
"name": "melting point apparatus",
I-am-Erk marked this conversation as resolved.
Show resolved Hide resolved
"description": "This is basically a hot plate, with a metal housing attached. The metal housing has a magnification viewport and a slot into which a capillary tube containing a crystallized sample is inserted. The device lets you precisely measure the melting point of a crystal, a property very useful in identifying what it is and how pure it is.",
"weight": 5000,
"volume": 6,
"price": 6000,
"ammo": "battery",
"max_charges": 100,
"to_hit": -5,
"material": [ "plastic", "glass" ],
"symbol": ";",
"color": "light_gray",
},
{
"id": "chipper",
"type": "TOOL",
Expand Down