Fixing problems of my mod

Place to get help with not working mods / modding interface.
Post Reply
Grundox
Inserter
Inserter
Posts: 43
Joined: Wed Nov 23, 2016 8:18 pm
Contact:

Fixing problems of my mod

Post by Grundox »

When I try to launch the game I get an error (image below) which tells me something I don't quite understand.
These are the recipes I'm using :

Code: Select all

data:extend({
{
  type = "recipe",
  name = "agate-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "agate", 1},
  results = 
  {
	{
	name = "silicon-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "argutite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "argutite", 1},
  results = 
  {
	{
	name = "germanium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "arsenolite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "arsenolite", 1},
  results = 
  {
	{
	name = "arsenic-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "avicennite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "avicennite", 1},
  results = 
  {
	{
	name = "tellurium-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "baddeleyite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "baddeleyite", 1},
  results = 
  {
	{
	name = "zirconium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bismite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "bismite", 1},
  results = 
  {
	{
	name = "bismuth-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "böhmite-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = { "böhmite", 1},
  results = 
  {
	{
	name = "aluminium-plate",
	probability = 0.25,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.25,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bromargyrite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "bromargyrite", 1},
  results = 
  {
	{
	name = "bromine-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "silver-plate",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bromellite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "bromellite", 1},
  results = 
  {
	{
	name = "beryllium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bunsenite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "bunsenite", 1},
  results = 
  {
	{
	name = "nickel-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "carlsbergite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "carlsbergite-earth", 1},
  results = 
  {
	{
	name = "chromium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "nitrogen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "carobbiite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "carobbiite", 1},
  results = 
  {
	{
	name = "potassium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "fluorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "chengdeite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "chengdeite", 1},
  results = 
  {
	{
	name = "iridium-plate",
	probability = 0.75,
	amount = 1
	},
	{
	name = "iron-plate",
	probability = 0.25,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "chlorargyrite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "chlorargyrite", 1},
  results = 
  {
	{
	name = "silver-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "chlorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "cooperite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "cooperite", 1},
  results = 
  {
	{
	name = "platinum-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "downeyite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "downeyite", 1},
  results = 
  {
	{
	name = "selenium",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "dzhalindite-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = { "dzhalindite", 1},
  results = 
  {
	{
	name = "indium-plate",
	probability = 0.143,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.429,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.428,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "erlichmanite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "erlichmanite", 1},
  results = 
  {
	{
	name = "osmium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "frankdicksonite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "frankdicksonite", 1},
  results = 
  {
	{
	name = "barium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "fluorine",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "fullerite-smelting",
  category = "1.0",
  energy_required = 1,
  ingredients = { "fullerite", 1},
  results = 
  {
	{
	name = "carbon",
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "griceite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "griceite", 1},
  results = 
  {
	{
	name = "lithium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "fluorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "hafnon-smelting",
  category = "2.1",
  energy_required = 1,
  ingredients = { "hafnon", 1},
  results = 
  {
	{
	name = "hafnium-plate",
	probability = 0.167,
	amount = 1
	},
	{
	name = "silicon-plate",
	probability = 0.167,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.666,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "halite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "halite", 1},
  results = 
  {
	{
	name = "sodium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "chlorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "heterogenit-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = { "heterogenit", 1},
  results = 
  {
	{
	name = "cobalt-plate",
	probability = 0.25,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.25,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "hunchunite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "hunchunite", 1},
  results = 
  {
	{
	name = "lead-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "gold-plate",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "hydropyrochlore-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = { "hydropyrochlore", 1},
  results = 
  {
	{
	name = "niobium-plate",
	probability = 0.069,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.414,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.517,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "laurite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "laurite", 1},
  results = 
  {
	{
	name = "ruthenium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "lime-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "lime", 1},
  results = 
  {
	{
	name = "calcium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "litharge-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "litharge", 1},
  results = 
  {
	{
	name = "lead-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "manganosite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "manganosite", 1},
  results = 
  {
	{
	name = "manganese-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "miassite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "miassite", 1},
  results = 
  {
	{
	name = "rhodium-plate",
	probability = 0.53125,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.46875,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "monteponite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "monteponite", 1},
  results = 
  {
	{
	name = "cadmium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "montroydite-smelting",
  category = "0.2",
  energy_required = 1,
  ingredients = { "montroydite", 1},
  results = 
  {
	{
	name = "mercury",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "moschelite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "moschelite", 1},
  results = 
  {
	{
	name = "iodine",
	probability = 0.5,
	amount = 1
	},
	{
	name = "mercury",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "palladinite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "palladinite", 1},
  results = 
  {
	{
	name = "palladium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "paramontroseite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "paramontroseite-earth", 1},
  results = 
  {
	{
	name = "vanadium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "periclase-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "periclase", 1},
  results = 
  {
	{
	name = "magnesium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "phosphammite-smelting",
  category = "1.3",
  energy_required = 1,
  ingredients = { "phosphammite", 1},
  results = 
  {
	{
	name = "phosphorus",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.5625,
	amount = 1
	},
	{
	name = "nitrogen",
	probability = 0.125,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.25,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "pitchblende-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "pitchblende", 1},
  results = 
  {
	{
	name = "uranium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "qingsongite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "qingsongite", 1},
  results = 
  {
	{
	name = "boron-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "nitrogen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "ramanite-(Cs)-smelting",
  category = "2.2",
  energy_required = 1,
  ingredients = { "ramanite-(Cs)", 1},
  results = 
  {
	{
	name = "boron-plate",
	probability = 0.19231,
	amount = 1
	},
	{
	name = "cesium-plate",
	probability = 0.03846,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.30769,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.46154,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "ramanite-(Rb)-smelting",
  category = "2.2",
  energy_required = 1,
  ingredients = { "ramanite-(Rb)", 1},
  results = 
  {
	{
	name = "boron-plate",
	probability = 0.19231,
	amount = 1
	},
	{
	name = "rubidium-plate",
	probability = 0.03846,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.30769,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.46154,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "rheniite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "rheniite", 1},
  results = 
  {
	{
	name = "rhenium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "romarchite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "romarchite", 1},
  results = 
  {
	{
	name = "tin-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "rosickýite-smelting",
  category = "1.0",
  energy_required = 1,
  ingredients = { "rosickýite", 1},
  results = 
  {
	{
	name = "sulfur",
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "rutile-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "rutile-earth", 1},
  results = 
  {
	{
	name = "titanium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "sénarmontite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "sénarmontite", 1},
  results = 
  {
	{
	name = "antimony-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "strontianite-smelting",
  category = "2.1",
  energy_required = 1,
  ingredients = { "strontianite", 1},
  results = 
  {
	{
	name = "carbon",
	probability = 0.2,
	amount = 1
	},
	{
	name = "strontium-plate",
	probability = 0.2,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tantite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "tantite", 1},
  results = 
  {
	{
	name = "tantalum-plate",
	probability = 0.286,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.714,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tellurite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "tellurite", 1},
  results = 
  {
	{
	name = "tellurium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tenorite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "tenorite", 1},
  results = 
  {
	{
	name = "copper-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "thorianite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "thorianite", 1},
  results = 
  {
	{
	name = "thorium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tsumgallite-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = { "tsumgallite", 1},
  results = 
  {
	{
	name = "gallium-plate",
	probability = 0.25,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.25,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tugarinovite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "tugarinovite", 1},
  results = 
  {
	{
	name = "molybdenum-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tungstenite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = { "tungstenite", 1},
  results = 
  {
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	},
	{
	name = "tungsten-plate",
	probability = 0.333,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "wüstite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "wüstite", 1},
  results = 
  {
	{
	name = "iron-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "yttrian earth-smelting",
  category = "16.0",
  energy_required = 1,
  ingredients = { "yttrian earth", 1},
  results = 
  {
	{
	name = "cerium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "dysprosium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "erbium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "europium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "gadolinium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "holmium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "lanthanum-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "lutetium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "neodymium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "praseodymium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "samarium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "scandium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "terbium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "thulium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "ytterbium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "yttrium-plate",
	probability = 0.0625,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "zincite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = { "zincite", 1},
  results = 
  {
	{
	name = "zinc-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
}
}
)

Can anyone please help me finding the mistake?
Attachments
error.PNG
error.PNG (365.08 KiB) Viewed 2402 times

orzelek
Smart Inserter
Smart Inserter
Posts: 3912
Joined: Fri Apr 03, 2015 10:20 am
Contact:

Re: Fixing problems of my mod

Post by orzelek »

I think you are missing one more set of {} in ingredients line.
It expects table that contains tables in it not single table.

Grundox
Inserter
Inserter
Posts: 43
Joined: Wed Nov 23, 2016 8:18 pm
Contact:

Re: Fixing problems of my mod

Post by Grundox »

okay this definately did something though I get a different error.

Code: Select all

data:extend({
{
  type = "recipe",
  name = "agate-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"agate", 1}},
  icon = "__grundoxores__/graphics/icons/ores/agate.png",
  results = 
  {
	{
	name = "silicon-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
  }
  },
{
  type = "recipe",
  name = "argutite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"argutite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/argutite.png",
  results = 
  {
	{
	name = "germanium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "arsenolite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"arsenolite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/arsenolite.png",
  results = 
  {
	{
	name = "arsenic-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "avicennite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"avicennite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/avicennite.png",
  results = 
  {
	{
	name = "tellurium-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "baddeleyite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"baddeleyite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/baddeleyite.png",
  results = 
  {
	{
	name = "zirconium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bismite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"bismite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/bismite.png",
  results = 
  {
	{
	name = "bismuth-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "böhmite-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = {{"böhmite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/böhmite.png",
  results = 
  {
	{
	name = "aluminium-plate",
	probability = 0.25,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.25,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bromargyrite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"bromargyrite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/bromargyrite.png",
  results = 
  {
	{
	name = "bromine-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "silver-plate",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bromellite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {"bromellite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/bromellite.png",
  results = 
  {
	{
	name = "beryllium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "bunsenite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"bunsenite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/bunsenite.png",
  results = 
  {
	{
	name = "nickel-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "carlsbergite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"carlsbergite-earth", 1}},
  icon = "__grundoxores__/graphics/icons/ores/carlsbergite.png",
  results = 
  {
	{
	name = "chromium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "nitrogen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "carobbiite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"carobbiite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/carobbiite.png",
  results = 
  {
	{
	name = "potassium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "fluorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "chengdeite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"chengdeite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/chengdeite.png",
  results = 
  {
	{
	name = "iridium-plate",
	probability = 0.75,
	amount = 1
	},
	{
	name = "iron-plate",
	probability = 0.25,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "chlorargyrite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"chlorargyrite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/chlorargyrite.png",
  results = 
  {
	{
	name = "silver-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "chlorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "cooperite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"cooperite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/cooperite.png",
  results = 
  {
	{
	name = "platinum-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "downeyite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"downeyite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/downeyite.png",
  results = 
  {
	{
	name = "selenium",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "dzhalindite-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = {{"dzhalindite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/dzhalindite.png",
  results = 
  {
	{
	name = "indium-plate",
	probability = 0.143,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.429,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.428,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "erlichmanite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"erlichmanite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/erlichmanite.png",
  results = 
  {
	{
	name = "osmium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "frankdicksonite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"frankdicksonite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/frankdicksonite.png",
  results = 
  {
	{
	name = "barium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "fluorine",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "fullerite-smelting",
  category = "1.0",
  energy_required = 1,
  ingredients = {{"fullerite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/fullerite.png",
  results = 
  {
	{
	name = "carbon",
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "griceite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"griceite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/griceite.png",
  results = 
  {
	{
	name = "lithium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "fluorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "hafnon-smelting",
  category = "2.1",
  energy_required = 1,
  ingredients = {{"hafnon", 1}},
  icon = "__grundoxores__/graphics/icons/ores/hafnon.png",
  results = 
  {
	{
	name = "hafnium-plate",
	probability = 0.167,
	amount = 1
	},
	{
	name = "silicon-plate",
	probability = 0.167,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.666,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "halite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"halite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/halite.png",
  results = 
  {
	{
	name = "sodium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "chlorine",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "heterogenit-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = {{"heterogenit", 1}},
  icon = "__grundoxores__/graphics/icons/ores/heterogenit.png",
  results = 
  {
	{
	name = "cobalt-plate",
	probability = 0.25,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.25,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "hunchunite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"hunchunite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/hunchunite.png",
  results = 
  {
	{
	name = "lead-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "gold-plate",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "hydropyrochlore-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = {{"hydropyrochlore", 1}},
  icon = "__grundoxores__/graphics/icons/ores/hydropyrochlore.png",
  results = 
  {
	{
	name = "niobium-plate",
	probability = 0.069,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.414,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.517,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "laurite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"laurite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/laurite.png",
  results = 
  {
	{
	name = "ruthenium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "lime-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"lime", 1}},
  icon = "__grundoxores__/graphics/icons/ores/lime.png",
  results = 
  {
	{
	name = "calcium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "litharge-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"litharge", 1}},
  icon = "__grundoxores__/graphics/icons/ores/litharge.png",
  results = 
  {
	{
	name = "lead-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "manganosite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"manganosite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/manganosite.png",
  results = 
  {
	{
	name = "manganese-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "miassite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"miassite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/miassite.png",
  results = 
  {
	{
	name = "rhodium-plate",
	probability = 0.53125,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.46875,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "monteponite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"monteponite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/monteponite.png",
  results = 
  {
	{
	name = "cadmium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "montroydite-smelting",
  category = "0.2",
  energy_required = 1,
  ingredients = {{"montroydite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/montroydite.png",
  results = 
  {
	{
	name = "mercury",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "moschelite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"moschelite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/moschelite.png",
  results = 
  {
	{
	name = "iodine",
	probability = 0.5,
	amount = 1
	},
	{
	name = "mercury",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "palladinite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"palladinite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/palladinite.png",
  results = 
  {
	{
	name = "palladium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "paramontroseite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"paramontroseite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/paramontroseite.png",
  results = 
  {
	{
	name = "vanadium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "periclase-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"periclase", 1}},
  icon = "__grundoxores__/graphics/icons/ores/periclase.png",
  results = 
  {
	{
	name = "magnesium-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "phosphammite-smelting",
  category = "1.3",
  energy_required = 1,
  ingredients = {{"phosphammite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/phosphammite.png",
  results = 
  {
	{
	name = "phosphorus",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.5625,
	amount = 1
	},
	{
	name = "nitrogen",
	probability = 0.125,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.25,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "pitchblende-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"pitchblende", 1}},
  icon = "__grundoxores__/graphics/icons/ores/pitchblende.png",
  results = 
  {
	{
	name = "uranium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "qingsongite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"qingsongite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/qingsongite.png",
  results = 
  {
	{
	name = "boron-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "nitrogen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "ramanite-(Cs)-smelting",
  category = "2.2",
  energy_required = 1,
  ingredients = {{"ramanite-(Cs)", 1}},
  icon = "__grundoxores__/graphics/icons/ores/ramanite-(Cs).png",
  results = 
  {
	{
	name = "boron-plate",
	probability = 0.19231,
	amount = 1
	},
	{
	name = "cesium-plate",
	probability = 0.03846,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.30769,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.46154,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "ramanite-(Rb)-smelting",
  category = "2.2",
  energy_required = 1,
  ingredients = {{"ramanite-(Rb)", 1}},
  icon = "__grundoxores__/graphics/icons/ores/ramanite-(Rb).png",
  results = 
  {
	{
	name = "boron-plate",
	probability = 0.19231,
	amount = 1
	},
	{
	name = "rubidium-plate",
	probability = 0.03846,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.30769,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.46154,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "rheniite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"rheniite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/rheniite.png",
  results = 
  {
	{
	name = "rhenium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "romarchite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"romarchite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/romarchite.png",
  results = 
  {
	{
	name = "tin-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "rosickýite-smelting",
  category = "1.0",
  energy_required = 1,
  ingredients = {{"rosickýite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/rosickýite.png",
  results = 
  {
	{
	name = "sulfur",
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "rutile-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"rutile-earth", 1}},
  icon = "__grundoxores__/graphics/icons/ores/rutile.png",
  results = 
  {
	{
	name = "titanium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "sénarmontite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"sénarmontite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/sénarmontite.png",
  results = 
  {
	{
	name = "antimony-plate",
	probability = 0.4,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "strontianite-smelting",
  category = "2.1",
  energy_required = 1,
  ingredients = {{"strontianite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/strontianite.png",
  results = 
  {
	{
	name = "carbon",
	probability = 0.2,
	amount = 1
	},
	{
	name = "strontium-plate",
	probability = 0.2,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.6,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tantite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"tantite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/tantite.png",
  results = 
  {
	{
	name = "tantalum-plate",
	probability = 0.286,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.714,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tellurite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"tellurite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/tellurite.png",
  results = 
  {
	{
	name = "tellurium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tenorite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"tenorite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/tenorite.png",
  results = 
  {
	{
	name = "copper-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "thorianite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"thorianite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/thorianite.png",
  results = 
  {
	{
	name = "thorium-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tsumgallite-smelting",
  category = "1.2",
  energy_required = 1,
  ingredients = {{"tsumgallite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/tsumgallite.png",
  results = 
  {
	{
	name = "gallium-plate",
	probability = 0.25,
	amount = 1
	},
	{
	name = "hydrogen",
	probability = 0.25,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tugarinovite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"tugarinovite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/tugarinovite.png",
  results = 
  {
	{
	name = "molybdenum-plate",
	probability = 0.333,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.667,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "tungstenite-smelting",
  category = "2.0",
  energy_required = 1,
  ingredients = {{"tungstenite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/tungstenite.png",
  results = 
  {
	{
	name = "sulfur",
	probability = 0.667,
	amount = 1
	},
	{
	name = "tungsten-plate",
	probability = 0.333,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "wüstite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"wüstite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/wüstite.png",
  results = 
  {
	{
	name = "iron-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "yttrian earth-smelting",
  category = "16.0",
  energy_required = 1,
  ingredients = {{"yttrian earth", 1}},
  icon = "__grundoxores__/graphics/icons/ores/yttrian earth.png",
  results = 
  {
	{
	name = "cerium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "dysprosium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "erbium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "europium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "gadolinium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "holmium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "lanthanum-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "lutetium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "neodymium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "praseodymium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "samarium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "scandium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "terbium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "thulium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "ytterbium-plate",
	probability = 0.0625,
	amount = 1
	},
	{
	name = "yttrium-plate",
	probability = 0.0625,
	amount = 1
	}
 }
},
{
  type = "recipe",
  name = "zincite-smelting",
  category = "1.1",
  energy_required = 1,
  ingredients = {{"zincite", 1}},
  icon = "__grundoxores__/graphics/icons/ores/zincite.png",
  results = 
  {
	{
	name = "zinc-plate",
	probability = 0.5,
	amount = 1
	},
	{
	name = "oxygen",
	probability = 0.5,
	amount = 1
	}
 }
}
})
Attachments
error.PNG
error.PNG (25.93 KiB) Viewed 2381 times

User avatar
bobingabout
Smart Inserter
Smart Inserter
Posts: 7352
Joined: Fri May 09, 2014 1:01 pm
Contact:

Re: Fixing problems of my mod

Post by bobingabout »

Second one, you're missing a } to close the first recipe.

Issue with the first one, when specifying a recipe that includes a full tagged table, you need to specify the item's type

Code: Select all

   {
   name = "oxygen",
   type = "item",
   probability = 0.667,
   amount = 1
   }
Although other types exist, like tool, armor, weapon etc, recipes use the simple type, so the only two valid types are fluid (If it's a fluid) or item (if it's any kind of item).
Creator of Bob's mods. Expanding your gameplay since version 0.9.8.
I also have a Patreon.

Grundox
Inserter
Inserter
Posts: 43
Joined: Wed Nov 23, 2016 8:18 pm
Contact:

Re: Fixing problems of my mod

Post by Grundox »

Now all of that is fixxed, thanks to you.
But now I get a different error again. It says that the graphics don't match the rules or something even though they were fine yesterday and I could even fully start the game and use these items ingame (without the recipes of course).
Attachments
error.PNG
error.PNG (387.17 KiB) Viewed 2349 times

User avatar
darkfrei
Smart Inserter
Smart Inserter
Posts: 2904
Joined: Thu Nov 20, 2014 11:11 pm
Contact:

Re: Fixing problems of my mod

Post by darkfrei »

Code: Select all

___
isn't same as

Code: Select all

__

Grundox
Inserter
Inserter
Posts: 43
Joined: Wed Nov 23, 2016 8:18 pm
Contact:

Re: Fixing problems of my mod

Post by Grundox »

thanks you that was the problem :'D

Post Reply

Return to “Modding help”