added crops - but loot table does not work yet

This commit is contained in:
Jottyfan
2024-11-25 21:04:24 +01:00
parent 4e4742ae11
commit 346ee85ca3
44 changed files with 487 additions and 28 deletions

View File

@@ -0,0 +1,15 @@
{
"type": "crafting_shaped",
"pattern": [
"ccc",
"ccc",
"ccc"
],
"key": {
"c":"quickiemod:canolabottle"
},
"result": {
"id": "quickiemod:canolabottlestack",
"count": 1
}
}

View File

@@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"c",
"c",
"c"
],
"key": {
"c": "quickiemod:cotton"
},
"result": {
"id": "minecraft:string",
"count": 1
}
}

View File

@@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"minecraft:glass_bottle",
"quickiemod:canola"
],
"result": {
"id": "quickiemod:canolabottle",
"count": 1
}
}

View File

@@ -0,0 +1,10 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"quickiemod:canolabottlestack"
],
"result": {
"id": "quickiemod:canolabottle",
"count": 9
}
}