Skip to content

Instantly share code, notes, and snippets.

@dmillerw
Last active August 29, 2015 14:21
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 dmillerw/8f80aa98e794d0c51eae to your computer and use it in GitHub Desktop.
Save dmillerw/8f80aa98e794d0c51eae to your computer and use it in GitHub Desktop.
[
{
"input": [
{
"object": "generic.fluid",
"data": {
"fluid": "water",
"amount": 450
}
},
{
"object": "generic.item",
"data": {
"item": "stone",
"amount": 5
}
}
],
"process": {
"object": "barrel.process.mix"
},
"output": {
"object": "generic.fluid",
"data": {
"fluid": "lava",
"amount": 666
}
}
},
{
"input": [
{
"object": "generic.fluid",
"data": {
"fluid": "lava",
"amount": 450
}
},
{
"object": "generic.item",
"data": {
"item": "grass",
"amount": 1
}
}
],
"process": {
"object": "barrel.process.melt",
"data": {
"time": 500,
"heat": 450
}
},
"output": {
"object": "generic.item",
"data": {
"item": "stone",
"amount": 64
}
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment