upgrade to 1.21.3

This commit is contained in:
Jottyfan
2024-11-30 18:50:09 +01:00
parent 0079c721cc
commit 4c5dea1756
219 changed files with 1848 additions and 3815 deletions

View File

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "quickiemod:block/drillstop"
}
}
}

View File

@ -69,8 +69,8 @@
"block.quickiemod.itemhoarder": "Itemsauger",
"block.quickiemod.monsterhoarder": "Monstersauger",
"block.quickiemod.kelpstack": "Seegrassbündel",
"block.quickiemod.cottonplant": "Baumwollpflanze",
"block.quickiemod.canolaplant": "Canolapflanze",
"block.quickiemod.blockcottonplant": "Baumwollpflanze",
"block.quickiemod.blockcanolaplant": "Canolapflanze",
"block.quickiemod.blocksulphor": "Schwefelblock",
"block.quickiemod.blocksalpeter": "Salpeterblock",
"block.quickiemod.blockspeedpowder": "Fluchtpulverblock",
@ -103,6 +103,7 @@
"msg.buildingplan.failonblock": "Der Bau wurde abgelehnt, es ist im Weg: %s",
"msg.buildingplan.failonplayer": "Der Bau wurde abgelehnt, um Spieler %s nicht zu gefährden.",
"msg.itemhoarder.summary": "Der Itemsauger enthält: %s",
"msg.monsterhoarder.size": "Der Radius für diesen Monstersauger beträgt jetzt %d.",
"msg.notyetimplemented": "leider noch nicht verfügbar",
"msg.backpack.transfer.filled": "Der Rucksack wurde befüllt.",
"msg.backpack.transfer.cleared": "Der Rucksackinhalt wurde soweit möglich geleert.",

View File

@ -69,8 +69,8 @@
"block.quickiemod.itemhoarder": "item hoarder",
"block.quickiemod.monsterhoarder": "monster hoarder",
"block.quickiemod.kelpstack": "kelp bundle",
"block.quickiemod.cottonplant": "cotton plant",
"block.quickiemod.canolaplant": "canola plant",
"block.quickiemod.blockcottonplant": "cotton plant",
"block.quickiemod.blockcanolaplant": "canola plant",
"block.quickiemod.blocksulphor": "block of sulfur",
"block.quickiemod.blocksalpeter": "block of salpeter",
"block.quickiemod.blockspeedpowder": "block of speedpowder",
@ -103,6 +103,7 @@
"msg.buildingplan.failonblock": "The building execution was rejected because of %s",
"msg.buildingplan.failonplayer": "The building execution was rejected because of %s who could be injured.",
"msg.itemhoarder.summary": "The item hoarder contains: %s",
"msg.monsterhoarder.size": "The radius for this monster hoarder is %d from now on.",
"msg.notyetimplemented": "not yet implemented",
"msg.backpack.transfer.filled": "Filled the backpack.",
"msg.backpack.transfer.cleared": "Cleared the backpack as much as possible.",

View File

@ -1,5 +1,5 @@
{
"parent": "block/cube_bottom_top",
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"bottom": "quickiemod:block/blockstackerout",
"side": "quickiemod:block/blockstackerdown",

View File

@ -1,6 +0,0 @@
{
"parent": "block/cube_all",
"textures": {
"all": "quickiemod:block/drillstop"
}
}

View File

@ -1,10 +0,0 @@
{
"parent": "quickiemod:block/drillstop",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],
"translation": [ 0, 1.5, -2.75 ],
"scale": [ 0.375, 0.375, 0.375 ]
}
}
}

View File

@ -1,10 +1,25 @@
{
"parent": "quickiemod:block/kelpstack",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],
"translation": [ 0, 1.5, -2.75 ],
"scale": [ 0.375, 0.375, 0.375 ]
}
}
}
"parent": "block/block",
"textures": {
"particle": "quickiemod:block/kelpstack_side",
"down": "quickiemod:block/kelpstack_bottom",
"up": "quickiemod:block/kelpstack_top",
"north": "quickiemod:block/kelpstack_side",
"east": "quickiemod:block/kelpstack_side",
"south": "quickiemod:block/kelpstack_side",
"west": "quickiemod:block/kelpstack_side"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
"faces": {
"down": { "texture": "#down", "cullface": "down" },
"up": { "texture": "#up", "cullface": "up" },
"north": { "texture": "#north", "cullface": "north" },
"south": { "uv": [16, 0, 0, 16], "texture": "#south", "cullface": "south" },
"west": { "texture": "#west", "cullface": "west" },
"east": { "uv": [16, 0, 0, 16], "texture": "#east", "cullface": "east" }
}
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -1,6 +1,11 @@
{
"replace": false,
"values": [
"quickiemod:blocksulphor",
"quickiemod:blocksalpeter",
"quickiemod:monsterhoarder",
"quickiemod:lavahoarder",
"quickiemod:emptylavahoarder",
"quickiemod:oresulphor",
"quickiemod:oredeepslatesulphor",
"quickiemod:orenethersulphor",

View File

@ -1,5 +0,0 @@
{
"values": [
"quickiemod:speedpowdershears"
]
}

View File

@ -1,5 +0,0 @@
{
"values": [
"quickiemod:speedpowdershears"
]
}

View File

@ -1,21 +0,0 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"quickiemod:blocksalpeter"
]
},
"criteria": {
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "quickiemod:blocksalpeter"
}
}
},
"requirements": [
[
"has_the_recipe"
]
]
}

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:oxidized_copper"
},
"ingredient": "minecraft:oxidized_copper",
"result": {
"id": "quickiemod:oxidizedcopperpowder"
},

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:oxidized_cut_copper"
},
"ingredient": "minecraft:oxidized_cut_copper",
"result": {
"id": "quickiemod:oxidizedcopperpowder"
},

View File

@ -1,13 +1,8 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:oxidized_cut_copper_stairs"
},
"ingredient": "minecraft:oxidized_cut_copper_stairs",
"result": {
"id": "quickiemod:oxidizedcopperpowder"},
"experience": 0.1,
"cookingtime": 200
},
"experience": 0.1,
"cookingtime": 200
}

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "minecraft:oxidized_cut_copper_slab"
},
"ingredient": "minecraft:oxidized_cut_copper_slab",
"result": {
"id": "quickiemod:oxidizedcopperpowder"},
"experience": 0.1,

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "quickiemod:quickiepowder"
},
"ingredient": "quickiemod:quickiepowder",
"result": {"id":"quickiemod:quickieingot"},
"experience": 0.1,
"cookingtime": 200

View File

@ -2,9 +2,7 @@
"type": "minecraft:blasting",
"group": "ores",
"ingredient": [
{
"item": "minecraft:dead_brain_coral_block"
}
"minecraft:dead_brain_coral_block"
],
"result": {
"id":"quickiemod:salpeter"

View File

@ -2,9 +2,7 @@
"type": "minecraft:blasting",
"group": "ores",
"ingredient": [
{
"item": "minecraft:dead_bubble_coral_block"
}
"minecraft:dead_bubble_coral_block"
],
"result": {
"id":"quickiemod:salpeter"

View File

@ -2,9 +2,7 @@
"type": "minecraft:blasting",
"group": "ores",
"ingredient": [
{
"item": "minecraft:dead_fire_coral_block"
}
"minecraft:dead_fire_coral_block"
],
"result": {
"id":"quickiemod:salpeter"

View File

@ -2,9 +2,7 @@
"type": "minecraft:blasting",
"group": "ores",
"ingredient": [
{
"item": "minecraft:dead_horn_coral_block"
}
"minecraft:dead_horn_coral_block"
],
"result": {
"id":"quickiemod:salpeter"

View File

@ -2,9 +2,7 @@
"type": "minecraft:blasting",
"group": "ores",
"ingredient": [
{
"item": "minecraft:dead_tube_coral_block"
}
"minecraft:dead_tube_coral_block"
],
"result": {
"id":"quickiemod:salpeter"

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:blasting",
"ingredient": {
"item": "quickiemod:speedpowder"
},
"ingredient": "quickiemod:speedpowder",
"result": {"id":"quickiemod:speedingot"},
"experience": 0.1,
"cookingtime": 200

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:campfire_cooking",
"ingredient": {
"item": "quickiemod:kelpstack"
},
"ingredient": "quickiemod:kelpstack",
"result": {
"id": "minecraft:dried_kelp_block"
},

View File

@ -1,10 +1,8 @@
{
"type": "minecraft:campfire_cooking",
"ingredient": {
"item": "quickiemod:stub"
},
"ingredient": "quickiemod:stub",
"result": {
"id":"minecraft:torch"
"id": "minecraft:torch"
},
"experience": 0.1,
"cookingtime": 20

View File

@ -6,9 +6,7 @@
"sss"
],
"key": {
"s": {
"item": "quickiemod:quickiepowder"
}
"s": "quickiemod:quickiepowder"
},
"result": {
"id": "quickiemod:blockquickiepowder",

View File

@ -6,9 +6,7 @@
"sss"
],
"key": {
"s": {
"item": "quickiemod:salpeter"
}
"s": "quickiemod:salpeter"
},
"result": {
"id": "quickiemod:blocksalpeter",

View File

@ -6,9 +6,7 @@
"sss"
],
"key": {
"s": {
"item": "quickiemod:speedpowder"
}
"s": "quickiemod:speedpowder"
},
"result": {
"id": "quickiemod:blockspeedpowder",

View File

@ -6,12 +6,11 @@
" s "
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"c": {
"tag": "c:chests"
}
"s": "quickiemod:speedingot",
"c": [
"minecraft:chest",
"minecraft:barrel"
]
},
"result": {
"id": "quickiemod:blockstackerdown",

View File

@ -6,9 +6,7 @@
"sss"
],
"key": {
"s": {
"item": "quickiemod:sulphor"
}
"s": "quickiemod:sulphor"
},
"result": {
"id": "quickiemod:blocksulphor",

View File

@ -6,9 +6,7 @@
"ccc"
],
"key": {
"c": {
"item": "quickiemod:canolabottle"
}
"c":"quickiemod:canolabottle"
},
"result": {
"id": "quickiemod:canolabottlestack",

View File

@ -5,9 +5,7 @@
"cc"
],
"key": {
"c": {
"item": "minecraft:carrot"
}
"c": "minecraft:carrot"
},
"result": {
"id": "quickiemod:carrotstack"

View File

@ -1,17 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"q q",
"qbq",
"dqd",
" d "
],
"key": {
"q": {
"item": "quickiemod:quickieingot"
},
"d": {
"item": "minecraft:diamond"
}
"q": "quickiemod:quickieingot",
"d": "minecraft:diamond",
"b": "minecraft:barrel"
},
"result": {
"id": "quickiemod:drill",

View File

@ -1,20 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ooo",
"oso",
"ooo"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"o": {
"item": "minecraft:obsidian"
}
},
"result": {
"id": "quickiemod:drillstop",
"count": 1
}
}

View File

@ -1,17 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ooo",
"obo",
"ooo"
"oio",
"ibi",
"oio"
],
"key": {
"o": {
"item": "minecraft:obsidian"
},
"b": {
"item": "minecraft:bucket"
}
"o": "minecraft:obsidian",
"i": "quickiemod:quickieingot",
"b": "minecraft:bucket"
},
"result": {
"id": "quickiemod:emptylavahoarder",

View File

@ -2,16 +2,12 @@
"type": "minecraft:crafting_shaped",
"pattern": [
"ooo",
"oso",
"obo",
"ooo"
],
"key": {
"o": {
"item": "quickiemod:speedpowder"
},
"s": {
"item": "minecraft:barrel"
}
"o": "quickiemod:speedingot",
"b": "minecraft:barrel"
},
"result": {
"id": "quickiemod:itemhoarder",

View File

@ -2,16 +2,12 @@
"type": "minecraft:crafting_shaped",
"pattern": [
"ooo",
"oso",
"oco",
"ooo"
],
"key": {
"o": {
"item": "quickiemod:speedpowder"
},
"s": {
"tag": "c:chests"
}
"o": "quickiemod:speedingot",
"c": "minecraft:chest"
},
"result": {
"id": "quickiemod:itemhoarder",

View File

@ -6,9 +6,7 @@
"kkk"
],
"key": {
"k": {
"item": "minecraft:kelp"
}
"k": "minecraft:kelp"
},
"result": {
"id": "quickiemod:kelpstack",

View File

@ -1,17 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"qqq",
"oqo",
"qtq",
"qqq"
"oqo"
],
"key": {
"q": {
"item": "quickiemod:quickieingot"
},
"t": {
"item": "minecraft:torch"
}
"q": "quickiemod:quickieingot",
"t": "minecraft:torch",
"o": "minecraft:obsidian"
},
"result": {
"id": "quickiemod:monsterhoarder",

View File

@ -7,12 +7,8 @@
" |"
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:quickieingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:quickiepowderaxe",

View File

@ -7,12 +7,8 @@
" |"
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:quickieingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:quickiepowderhoe",

View File

@ -7,12 +7,8 @@
" | "
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:quickieingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:quickiepowderpickaxe",

View File

@ -7,12 +7,8 @@
"|"
],
"key": {
"s": {
"item": "quickiemod:quickieingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:quickieingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:quickiepowdershovel",

View File

@ -6,9 +6,7 @@
"# "
],
"key": {
"#": {
"item": "quickiemod:speedingot"
}
"#": "quickiemod:speedingot"
},
"result": {
"id": "quickiemod:speedpowdershears"

View File

@ -7,12 +7,8 @@
" |"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:speedingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:speedpowderaxe",

View File

@ -7,12 +7,8 @@
" |"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:speedingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:speedpowderhoe",

View File

@ -7,12 +7,8 @@
" | "
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:speedingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:speedpowderpickaxe",

View File

@ -7,12 +7,8 @@
"|"
],
"key": {
"s": {
"item": "quickiemod:speedingot"
},
"|": {
"item": "minecraft:stick"
}
"s": "quickiemod:speedingot",
"|": "minecraft:stick"
},
"result": {
"id": "quickiemod:speedpowdershovel",

View File

@ -6,9 +6,7 @@
"c"
],
"key": {
"c": {
"item": "quickiemod:cotton"
}
"c": "quickiemod:cotton"
},
"result": {
"id": "minecraft:string",

View File

@ -1,12 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:slime_block"
},
{
"item": "quickiemod:blockspeedpowder"
}
"minecraft:slime_block",
"quickiemod:blockspeedpowder"
],
"result": {
"id": "quickiemod:blockquickiepowder",

View File

@ -1,13 +1,10 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blocksalpeter"
},{
"item": "quickiemod:blocksulphor"
},{
"item": "minecraft:coal_block"
}
"quickiemod:blocksalpeter",
"quickiemod:blocksulphor",
"minecraft:coal_block",
"minecraft:redstone_block"
],
"result": {
"id": "quickiemod:blockspeedpowder",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockstackerup"
}
"quickiemod:blockstackerup"
],
"result": {
"id": "quickiemod:blockstackerdown",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockstackerdown"
}
"quickiemod:blockstackerdown"
],
"result": {
"id": "quickiemod:blockstackereast",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockstackerwest"
}
"quickiemod:blockstackerwest"
],
"result": {
"id": "quickiemod:blockstackernorth",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockstackereast"
}
"quickiemod:blockstackereast"
],
"result": {
"id": "quickiemod:blockstackersouth",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockstackernorth"
}
"quickiemod:blockstackernorth"
],
"result": {
"id": "quickiemod:blockstackerup",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockstackersouth"
}
"quickiemod:blockstackersouth"
],
"result": {
"id": "quickiemod:blockstackerwest",

View File

@ -1,12 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:glass_bottle"
},
{
"item": "quickiemod:canola"
}
"minecraft:glass_bottle",
"quickiemod:canola"
],
"result": {
"id": "quickiemod:canolabottle",

View File

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

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:carrotstack"
}
"quickiemod:carrotstack"
],
"result": {
"id": "minecraft:carrot",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:drill"
}
"quickiemod:drill"
],
"result": {
"id": "quickiemod:drilleast",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:drilleast"
}
"quickiemod:drilleast"
],
"result": {
"id": "quickiemod:drillsouth",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:drillnorth"
}
"quickiemod:drillnorth"
],
"result": {
"id": "quickiemod:drill",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:drillsouth"
}
"quickiemod:drillsouth"
],
"result": {
"id": "quickiemod:drillwest",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:drillwest"
}
"quickiemod:drillwest"
],
"result": {
"id": "quickiemod:drillnorth",

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:item_frame"
},
{
"item": "minecraft:glowstone_dust"
}
],
"result": {
"id": "minecraft:glow_item_frame",
"count": 2
}
}

View File

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

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockquickiepowder"
}
"quickiemod:blockquickiepowder"
],
"result": {
"id": "quickiemod:quickiepowder",

View File

@ -1,12 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:speedpowder"
},
{
"item": "quickiemod:oxidizedcopperpowder"
}
"quickiemod:speedpowder",
"quickiemod:oxidizedcopperpowder"
],
"result": {
"id": "quickiemod:quickiepowder",

View File

@ -1,12 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:speedpowder"
},
{
"item": "minecraft:slime_ball"
}
"quickiemod:speedpowder",
"minecraft:slime_ball"
],
"result": {
"id": "quickiemod:quickiepowder",

View File

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

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blocksalpeter"
}
"quickiemod:blocksalpeter"
],
"result": {
"id": "quickiemod:salpeter",

View File

@ -1,12 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:gunpowder"
},
{
"item": "minecraft:redstone"
}
"minecraft:gunpowder",
"minecraft:redstone"
],
"result": {
"id": "quickiemod:speedpowder",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blockspeedpowder"
}
"quickiemod:blockspeedpowder"
],
"result": {
"id": "quickiemod:speedpowder",

View File

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

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:white_wool"
}
"minecraft:white_wool"
],
"result": {
"id": "minecraft:string",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:stick"
}
"minecraft:stick"
],
"result": {
"id": "quickiemod:stub",

View File

@ -1,9 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiemod:blocksulphor"
}
"quickiemod:blocksulphor"
],
"result": {
"id": "quickiemod:sulphor",

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:smelting",
"group": "ores",
"ingredient": [
{
"item": "quickiemod:dirtsalpeter"
}
],
"result": {
"id":"quickiemod:salpeter"
},
"count": 1,
"experience": 0.5,
"cookingtime": 200
}

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:smelting",
"group": "ores",
"ingredient": [
{
"item": "quickiemod:oresalpeter"
}
],
"result": {
"id":"quickiemod:salpeter"
},
"count": 1,
"experience": 0.5,
"cookingtime": 200
}

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:smelting",
"group": "ores",
"ingredient": [
{
"item": "quickiemod:oresandsalpeter"
}
],
"result": {
"id":"quickiemod:salpeter"
},
"count": 1,
"experience": 0.5,
"cookingtime": 200
}

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:smelting",
"group": "ores",
"ingredient": [
{
"item": "quickiemod:sandsalpeter"
}
],
"result": {
"id":"quickiemod:salpeter"
},
"count": 1,
"experience": 0.5,
"cookingtime": 200
}

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:smelting",
"group": "ores",
"ingredient": [
{
"item": "quickiemod:orenethersulphor"
}
],
"result": {
"id":"quickiemod:sulphor"
},
"count": 1,
"experience": 0.5,
"cookingtime": 200
}

View File

@ -1,15 +0,0 @@
{
"type": "minecraft:smelting",
"group": "ores",
"ingredient": [
{
"item": "quickiemod:oresulphor"
}
],
"result": {
"id": "quickiemod:sulphor"
},
"count": 1,
"experience": 0.5,
"cookingtime": 200
}

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:smoking",
"ingredient": {
"item": "quickiemod:kelpstack"
},
"ingredient": "quickiemod:kelpstack",
"result": {
"id": "minecraft:dried_kelp_block"
},

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:smoking",
"ingredient": {
"item": "quickiemod:rotten_flesh_stripes"
},
"ingredient": "quickiemod:rotten_flesh_stripes",
"result": {
"id":"minecraft:leather"
},

View File

@ -1,8 +1,6 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "minecraft:rotten_flesh"
},
"ingredient": "minecraft:rotten_flesh",
"result": {
"id": "quickiemod:rotten_flesh_stripes"
},

View File

@ -2,7 +2,7 @@
"schemaVersion": 1,
"id": "quickiemod",
"version": "${version}",
"name": "QuickieMod",
"name": "Quickiemod",
"description": "Speed up daily work in Minecraft.",
"authors": [
"jottyfan"
@ -16,25 +16,24 @@
"environment": "*",
"entrypoints": {
"main": [
"de.jottyfan.quickiemod.QuickieMod"
"de.jottyfan.quickiemod.Quickiemod"
],
"fabric-datagen": [
"de.jottyfan.quickiemod.QuickieModDataGenerator"
"de.jottyfan.quickiemod.QuickiemodDataGenerator"
],
"client": [
"de.jottyfan.quickiemod.QuickieModClient"
"de.jottyfan.quickiemod.QuickiemodClient"
]
},
"mixins": [
"quickiemod.mixins.json"
],
"depends": {
"fabricloader": ">=0.15.11",
"minecraft": "~1.21.1",
"fabricloader": ">=0.16.9",
"minecraft": "~1.21.3",
"java": ">=21",
"fabric-api": "*"
},
"suggests": {
"flamingo": "*"
"another-mod": "*"
}
}

View File

@ -1,14 +0,0 @@
{
"required": true,
"minVersion": "0.8",
"package": "de.jottyfan.quickiemod.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
"BlockBreakMixin"
],
"client": [
],
"injectors": {
"defaultRequire": 1
}
}