Add filling and emptying recipes for Neapolitan's milk bottle

This commit is contained in:
Mario 2021-05-07 18:32:10 +10:00
parent 0b72781e07
commit 14e6db837b
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "neapolitan"
}
],
"type": "create:emptying",
"ingredients": [
{
"item": "neapolitan:milk_bottle"
}
],
"results": [
{
"item": "minecraft:glass_bottle"
},
{
"fluid": "create:milk",
"amount": 250
}
]
}

View File

@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "neapolitan"
}
],
"type": "create:filling",
"ingredients": [
{
"item": "minecraft:glass_bottle"
},
{
"fluidTag": "forge:milk",
"amount": 250
}
],
"results": [
{
"item": "neapolitan:milk_bottle"
}
]
}