From a80b4a5e57c73e324490577066f0c47704b9d25f Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 22 Jan 2021 20:19:36 +0100 Subject: [PATCH] wip #4164 --- WearParts/js/script.js | 61 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/WearParts/js/script.js b/WearParts/js/script.js index bdb9863..d127bdc 100644 --- a/WearParts/js/script.js +++ b/WearParts/js/script.js @@ -1,6 +1,67 @@ window.updateFormAgain = false; DEV = false; +var ores = { + "Andesite": 2.8, + "Barite": 4.3, + "Basalt": 2.9, + "Bauxite": 2.4, + "Cement clinker": 3.1, + "Cement raw material": 2.7, + "Clay": 2.2, + "Coal": 1.6, + "Coke": 1.5, + "Copper ore": 3.0, + "Diorite": 2.8, + "Dolomite": 2.9, + "Emery": 3.5, + "Feldspar": 2.6, + "Ferro-chrome": 6.7, + "Ferro-maganese": 6.7, + "Ferro-silicon": 4.9, + "Flint": 2.7, + "Fluorspar": 3.0, + "Gabbro": 2.8, + "Glass": 2.6, + "Gneiss": 2.7, + "Gold ore": 2.9, + "Granite": 2.7, + "Graphite": 1.8, + "Gravel": 2.7, + "Gypsum rock": 2.7, + "Hematite": 5.2, + "Lead ore": 3.4, + "Lead-zinc ore": 3.4, + "Limestone": 2.7, + "Magnetite": 5.2, + "Magnesite": 2.7, + "Manganese ore": 3.7, + "Molybdenum": 2.7, + "Nickel ore": 3.3, + "Oil shale": 1.8, + "Phosphate rock": 2.7, + "Potash ore": 2.4, + "Pyrite ore": 3.5, + "Pyrrhotite ore": 4.0, + "Quartz": 2.6, + "Quartzite": 2.7, + "Rutile ore": 2.8, + "Shale": 2.6, + "Silica sand": 2.7, + "Silicon carbide": 2.7, + "Slag": 2.9, + "Slate": 2.5, + "Sodium silicate": 2.1, + "Spodumene ore": 2.8, + "Syenite": 2.7, + "Taconite": 2.7, + "Tin ore": 3.9, + "Titanium ore": 4.2, + "Trap rock": 2.9, + "Zinc ore": 3.7, + "Other...": 0 +}; + $(function () { parseData(); -- 2.39.5