fixed recipes, working tools

This commit is contained in:
Jottyfan
2024-06-15 14:45:22 +02:00
parent caef9eed83
commit 72b9c7dece
140 changed files with 2377 additions and 43 deletions

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "quickiemod:item/quickiepowderaxe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/quickiepowderhoe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/quickiepowderpickaxe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/quickiepowdershovel"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/quickiepowderwaterhoe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/speedpowderaxe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/speedpowderhoe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/speedpowderpickaxe"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/speedpowdershovel"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiemod:item/speedpowderwaterhoe"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,7 @@
{
"replace": false,
"values": [
"quickiemod:speedpowderaxe",
"quickiemod:quickiepowderaxe"
]
}

View File

@ -0,0 +1,9 @@
{
"replace": false,
"values": [
"quickiemod:speedpowderhoe",
"quickiemod:speedpowderwaterhoe",
"quickiemod:quickiepowderhoe",
"quickiemod:quickiepowderwaterhoe"
]
}

View File

@ -0,0 +1,7 @@
{
"replace": false,
"values": [
"quickiemod:speedpowderpickaxe",
"quickiemod:quickiepowderpickaxe"
]
}

View File

@ -0,0 +1,7 @@
{
"replace": false,
"values": [
"quickiemod:speedpowdershovel",
"quickiemod:quickiepowdershovel"
]
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"ss",
"s|",
" |"
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:quickiepowderaxe",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"ss",
" |",
" |"
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:quickiepowderhoe",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"sss",
" | ",
" | "
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:quickiepowderpickaxe",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"s",
"|",
"|"
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:quickiepowdershovel",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"ss",
"s|",
" |"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:speedpowderaxe",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"ss",
" |",
" |"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:speedpowderhoe",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"sss",
" | ",
" | "
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:speedpowderpickaxe",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "tools",
"pattern": [
"s",
"|",
"|"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"id": "quickiemod:speedpowdershovel",
"count": 1
}
}

View File

@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:coal"
},
{
"item": "quickiemod:sulphor"
},
{
"item": "quickiemod:salpeter"
}
],
"result": {
"id": "minecraft:gunpowder",
"count": 1
}
}

View File

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:water_bucket"
},
{
"item": "quickiemod:quickiepowderhoe"
}
],
"result": {
"id": "quickiemod:quickiepowderwaterhoe",
"count": 1
}
}

View File

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:water_bucket"
},
{
"item": "quickiemod:speedpowderhoe"
}
],
"result": {
"id": "quickiemod:speedpowderwaterhoe",
"count": 1
}
}

View File

@ -0,0 +1,12 @@
{
"replace": false,
"values": [
"quickiemod:oresulphor",
"quickiemod:oredeepslatesulphor",
"quickiemod:orenethersulphor",
"quickiemod:oresalpeter",
"quickiemod:oresandsalpeter",
"quickiemod:sandsalpeter",
"quickiemod:dirtsalpeter"
]
}

View File

@ -19,6 +19,9 @@
"absolute": 5
}
}
},
{
"type": "minecraft:biome"
}
]
}

View File

@ -19,6 +19,9 @@
"absolute": 16
}
}
},
{
"type": "minecraft:biome"
}
]
}

View File

@ -19,6 +19,9 @@
"absolute": -125
}
}
},
{
"type": "minecraft:biome"
}
]
}

View File

@ -19,6 +19,9 @@
"absolute": 5
}
}
},
{
"type": "minecraft:biome"
}
]
}

View File

@ -19,6 +19,9 @@
"absolute": 0
}
}
},
{
"type": "minecraft:biome"
}
]
}

View File

@ -19,6 +19,9 @@
"absolute": 32
}
}
},
{
"type": "minecraft:biome"
}
]
}

Some files were not shown because too many files have changed in this diff Show More