Chemalyzer missing data (#18124)

* new analyzer stuff

* XGM isn't ingame stuff
This commit is contained in:
Will
2025-11-07 06:10:07 -05:00
committed by GitHub
parent df9d90b469
commit 73eeeda17d
2 changed files with 10 additions and 3 deletions
@@ -94,6 +94,13 @@
subdata["cooling_mod"] = R.coolant_modifier
if(R.id in get_addictive_reagents(ADDICT_ALL))
subdata["addictive"] = TRUE
subdata["industrial_use"] = R.industrial_use
subdata["supply_points"] = R.supply_conversion_value ? R.supply_conversion_value : 0
var/value = R.supply_conversion_value * REAGENTS_PER_SHEET * SSsupply.points_per_money
value = FLOOR(value * 100,1) / 100 // Truncate decimals
subdata["market_price"] = value
subdata["sintering"] = SSinternal_wiki.assemble_sintering(GLOB.reagent_sheets[R.id])
subdata["overdose"] = R.overdose
subdata["flavor"] = R.taste_description
subdata["allergen"] = SSinternal_wiki.assemble_allergens(R.allergen_type)
subdata["beakerAmount"] = found_reagents[ID]