Fluid ingredients + some other work around this area

This commit is contained in:
modmuss50 2019-07-28 17:14:38 +01:00
parent 0118d5a999
commit 0da3168bbf
5 changed files with 71 additions and 74 deletions

View file

@ -1,16 +0,0 @@
modLoader="javafml"
loaderVersion="[13,)"
version="1"
[[mods]]
modId="techreborn"
version="${version}"
displayName="Tech Reborn"
description="Tech Reborn"
[[dependencies.techreborn]]
modId="reborncore"
mandatory=true
ordering="AFTER"
side="BOTH"
versionRange="[4.0.0,)"

View file

@ -0,0 +1,19 @@
{
"type": "techreborn:grinder",
"power": 10,
"time": 123,
"ingredients" : [
{
"item": "minecraft:diamond_sword",
"tag": {
"Damage": 2
}
}
],
"results" : [
{
"item": "minecraft:diamond",
"count": 4
}
]
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:grinder",
"power": 10,
"time": 123,
"ingredients" : [
{
"fluid": "minecraft:water"
}
],
"results" : [
{
"item": "minecraft:diamond",
"count": 4
}
]
}