Uhh, didn't know it would do that 😅

Un-removed RYS compat, apperently that breaks things
This commit is contained in:
Bobert 2021-01-16 13:10:08 -07:00
parent 1622d71929
commit 32d240f91d
5 changed files with 145 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "rys"
}
],
"type": "create:splashing",
"group": "minecraft:misc",
"ingredients": [
{
"item": "rys:tough_dirt"
}
],
"results": [
{
"item": "rys:smooth_dirt",
"count": 1
}
]
}

View file

@ -0,0 +1,31 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "rys"
}
],
"type": "create:splashing",
"group": "minecraft:misc",
"ingredients": [
{
"item": "rys:clay_deposit"
}
],
"results": [
{
"item": "minecraft:clay_ball",
"count": 2
},
{
"item": "minecraft:clay_ball",
"count": 4,
"chance": 0.5
},
{
"item": "minecraft:dirt",
"count": 1,
"chance": 0.125
}
]
}

View file

@ -0,0 +1,31 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "rys"
}
],
"type": "create:splashing",
"group": "minecraft:misc",
"ingredients": [
{
"item": "rys:gold_deposit"
}
],
"results": [
{
"item": "minecraft:gold_nugget",
"count": 2
},
{
"item": "minecraft:gold_nugget",
"count": 4,
"chance": 0.5
},
{
"item": "minecraft:dirt",
"count": 1,
"chance": 0.125
}
]
}

View file

@ -0,0 +1,31 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "rys"
}
],
"type": "create:splashing",
"group": "minecraft:misc",
"ingredients": [
{
"item": "rys:iron_deposit"
}
],
"results": [
{
"item": "minecraft:iron_nugget",
"count": 2
},
{
"item": "minecraft:iron_nugget",
"count": 4,
"chance": 0.5
},
{
"item": "minecraft:dirt",
"count": 1,
"chance": 0.125
}
]
}

View file

@ -0,0 +1,31 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "rys"
}
],
"type": "create:splashing",
"group": "minecraft:misc",
"ingredients": [
{
"item": "rys:peat_deposit"
}
],
"results": [
{
"item": "rys:peat",
"count": 2
},
{
"item": "rys:peat",
"count": 4,
"chance": 0.5
},
{
"item": "minecraft:dirt",
"count": 1,
"chance": 0.125
}
]
}