Skip to content

Instantly share code, notes, and snippets.

@giodamelio
Created March 6, 2012 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giodamelio/1989842 to your computer and use it in GitHub Desktop.
Save giodamelio/1989842 to your computer and use it in GitHub Desktop.
Minecraft Recipes
recipes = {
"solar_panel": {
"type": "craft",
"ingredients": {
"input": [
"coal_dust",
"glass",
"coal_dust",
"glass",
"coal_dust",
"glass",
"electronic_circuit",
"generator",
"electronic_circuit"
],
"output": {
"item": "solar_panel",
"quantity": 1
}
}
},
"re_battery": {
"type": "craft",
"ingredients": {
"input": [
"nothing",
"insulated_copper_cable",
"nothing",
"tin",
"redstone",
"tin",
"tin",
"redstone",
"tin"
],
"output": {
"item": "re_battery",
"quantity": 1
}
}
},
"insulated_copper_cable": {
"type": "craft",
"ingredients": {
"input": [
"rubber",
"rubber",
"rubber",
"copper",
"copper",
"copper",
"rubber",
"rubber",
"rubber"
],
"output": {
"item": "insulated_copper_cable",
"quantity": 6
}
}
},
"electronic_circuit": {
"type": "craft",
"ingredients": {
"input": [
"insulated_copper_cable",
"insulated_copper_cable",
"insulated_copper_cable",
"redstone",
"refined_iron",
"redstone",
"insulated_copper_cable",
"insulated_copper_cable",
"insulated_copper_cable"
],
"output": {
"item": "electronic_circuit",
"quantity": 1
}
}
},
"machine": {
"type": "craft",
"ingredients": {
"input": [
"refined_iron",
"refined_iron",
"refined_iron",
"refined_iron",
"nothing",
"refined_iron",
"refined_iron",
"refined_iron",
"refined_iron"
],
"output": {
"item": "machine",
"quantity": 1
}
}
},
"generator": {
"type": "craft",
"ingredients": {
"input": [
"nothing",
"re_battery",
"nothing",
"nothing",
"machine",
"nothing",
"nothing",
"furnace",
"nothing"
],
"output": {
"item": "generator",
"quantity": 1
}
}
},
"solar_panel": {
"type": "craft",
"ingredients": {
"input": [
"coal_dust",
"glass",
"coal_dust",
"glass",
"coal_dust",
"glass",
"electronic_circuit",
"generator",
"electronic_circuit"
],
"output": {
"item": "solar_panel",
"quantity": 1
}
}
},
"furnace": {
"type": "craft",
"ingredients": {
"input": [
"cobblestone",
"cobblestone",
"cobblestone",
"cobblestone",
"nothing",
"cobblestone",
"cobblestone",
"cobblestone",
"cobblestone"
],
"output": {
"item": "furnace",
"quantity": 1
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment