diff --git a/build.gradle b/build.gradle index f84f114..e16ccb7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.8-SNAPSHOT' + id 'fabric-loom' version '1.9-SNAPSHOT' id 'maven-publish' } diff --git a/gradle.properties b/gradle.properties index 3afc9a7..65e0a60 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,14 +4,14 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=1.21.3 -yarn_mappings=1.21.3+build.2 +minecraft_version=1.21.4 +yarn_mappings=1.21.4+build.1 loader_version=0.16.9 # Mod Properties -mod_version=1.21.3.2 +mod_version=1.21.4.0 maven_group=de.jottyfan.quickiemod archives_base_name=quickiemod # Dependencies -fabric_version=0.108.0+1.21.3 \ No newline at end of file +fabric_version=0.110.5+1.21.4 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index df97d72..e2847c8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/main/resources/assets/quickiemod/items/blockquickiepowder.json b/src/main/resources/assets/quickiemod/items/blockquickiepowder.json new file mode 100644 index 0000000..6cd8442 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockquickiepowder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/blockquickiepowder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blocksalpeter.json b/src/main/resources/assets/quickiemod/items/blocksalpeter.json new file mode 100644 index 0000000..5f3ffc0 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blocksalpeter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blocksalpeter" + } +} diff --git a/src/main/resources/assets/quickiemod/items/blockspeedpowder.json b/src/main/resources/assets/quickiemod/items/blockspeedpowder.json new file mode 100644 index 0000000..fe26033 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockspeedpowder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockspeedpowder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blockstackerdown.json b/src/main/resources/assets/quickiemod/items/blockstackerdown.json new file mode 100644 index 0000000..ced887e --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockstackerdown.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockstackerdown" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blockstackereast.json b/src/main/resources/assets/quickiemod/items/blockstackereast.json new file mode 100644 index 0000000..e3bf9de --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockstackereast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockstackereast" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blockstackernorth.json b/src/main/resources/assets/quickiemod/items/blockstackernorth.json new file mode 100644 index 0000000..5977b1b --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockstackernorth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockstackernorth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blockstackersouth.json b/src/main/resources/assets/quickiemod/items/blockstackersouth.json new file mode 100644 index 0000000..d8a40d9 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockstackersouth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockstackersouth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blockstackerup.json b/src/main/resources/assets/quickiemod/items/blockstackerup.json new file mode 100644 index 0000000..85fd563 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockstackerup.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockstackerup" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blockstackerwest.json b/src/main/resources/assets/quickiemod/items/blockstackerwest.json new file mode 100644 index 0000000..72ce005 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blockstackerwest.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blockstackerwest" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/blocksulphor.json b/src/main/resources/assets/quickiemod/items/blocksulphor.json new file mode 100644 index 0000000..636f8a3 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/blocksulphor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/blocksulphor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/canola.json b/src/main/resources/assets/quickiemod/items/canola.json new file mode 100644 index 0000000..5c6958e --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/canola.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/canola" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/canolabottle.json b/src/main/resources/assets/quickiemod/items/canolabottle.json new file mode 100644 index 0000000..e59160d --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/canolabottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/canolabottle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/canolabottlestack.json b/src/main/resources/assets/quickiemod/items/canolabottlestack.json new file mode 100644 index 0000000..668e963 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/canolabottlestack.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/canolabottlestack" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/canolaplant.json b/src/main/resources/assets/quickiemod/items/canolaplant.json new file mode 100644 index 0000000..cd6faa2 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/canolaplant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/canolaseed" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/canolaseed.json b/src/main/resources/assets/quickiemod/items/canolaseed.json new file mode 100644 index 0000000..cd6faa2 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/canolaseed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/canolaseed" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/carrotstack.json b/src/main/resources/assets/quickiemod/items/carrotstack.json new file mode 100644 index 0000000..65e39ed --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/carrotstack.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/carrotstack" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/cotton.json b/src/main/resources/assets/quickiemod/items/cotton.json new file mode 100644 index 0000000..f83f171 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/cotton.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/cotton" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/cottonplant.json b/src/main/resources/assets/quickiemod/items/cottonplant.json new file mode 100644 index 0000000..8116291 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/cottonplant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/cottonseed" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/cottonseed.json b/src/main/resources/assets/quickiemod/items/cottonseed.json new file mode 100644 index 0000000..8116291 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/cottonseed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/cottonseed" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/dirtsalpeter.json b/src/main/resources/assets/quickiemod/items/dirtsalpeter.json new file mode 100644 index 0000000..1db9d05 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/dirtsalpeter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/dirtsalpeter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/drill.json b/src/main/resources/assets/quickiemod/items/drill.json new file mode 100644 index 0000000..29deca3 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/drill.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/drill" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/drilleast.json b/src/main/resources/assets/quickiemod/items/drilleast.json new file mode 100644 index 0000000..82c3385 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/drilleast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/drilleast" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/drillnorth.json b/src/main/resources/assets/quickiemod/items/drillnorth.json new file mode 100644 index 0000000..c5de1c8 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/drillnorth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/drillnorth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/drillsouth.json b/src/main/resources/assets/quickiemod/items/drillsouth.json new file mode 100644 index 0000000..8f9a2f9 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/drillsouth.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/drillsouth" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/drillwest.json b/src/main/resources/assets/quickiemod/items/drillwest.json new file mode 100644 index 0000000..6a11399 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/drillwest.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/drillwest" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/emptylavahoarder.json b/src/main/resources/assets/quickiemod/items/emptylavahoarder.json new file mode 100644 index 0000000..6b09a70 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/emptylavahoarder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/emptylavahoarder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/itemhoarder.json b/src/main/resources/assets/quickiemod/items/itemhoarder.json new file mode 100644 index 0000000..b9fc1b4 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/itemhoarder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/itemhoarder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/kelpstack.json b/src/main/resources/assets/quickiemod/items/kelpstack.json new file mode 100644 index 0000000..c898de6 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/kelpstack.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/kelpstack" + } +} diff --git a/src/main/resources/assets/quickiemod/items/lavahoarder.json b/src/main/resources/assets/quickiemod/items/lavahoarder.json new file mode 100644 index 0000000..7a1185d --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/lavahoarder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/lavahoarder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/monsterhoarder.json b/src/main/resources/assets/quickiemod/items/monsterhoarder.json new file mode 100644 index 0000000..adc3ce3 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/monsterhoarder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/monsterhoarder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/oredeepslatesulphor.json b/src/main/resources/assets/quickiemod/items/oredeepslatesulphor.json new file mode 100644 index 0000000..0e61ded --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/oredeepslatesulphor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/oredeepslatesulphor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/orenethersulphor.json b/src/main/resources/assets/quickiemod/items/orenethersulphor.json new file mode 100644 index 0000000..03d461c --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/orenethersulphor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/orenethersulphor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/oresalpeter.json b/src/main/resources/assets/quickiemod/items/oresalpeter.json new file mode 100644 index 0000000..e3f94d2 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/oresalpeter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/oresalpeter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/oresandsalpeter.json b/src/main/resources/assets/quickiemod/items/oresandsalpeter.json new file mode 100644 index 0000000..78aeba2 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/oresandsalpeter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/oresandsalpeter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/oresulphor.json b/src/main/resources/assets/quickiemod/items/oresulphor.json new file mode 100644 index 0000000..308bd1e --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/oresulphor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/oresulphor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/oxidizedcopperpowder.json b/src/main/resources/assets/quickiemod/items/oxidizedcopperpowder.json new file mode 100644 index 0000000..83161d3 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/oxidizedcopperpowder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/oxidizedcopperpowder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickieingot.json b/src/main/resources/assets/quickiemod/items/quickieingot.json new file mode 100644 index 0000000..8f1c438 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickieingot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickieingot" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickiepowder.json b/src/main/resources/assets/quickiemod/items/quickiepowder.json new file mode 100644 index 0000000..b0454be --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickiepowder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickiepowder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickiepowderaxe.json b/src/main/resources/assets/quickiemod/items/quickiepowderaxe.json new file mode 100644 index 0000000..8ee6cb8 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickiepowderaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickiepowderaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickiepowderhoe.json b/src/main/resources/assets/quickiemod/items/quickiepowderhoe.json new file mode 100644 index 0000000..364a0d8 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickiepowderhoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickiepowderhoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickiepowderpickaxe.json b/src/main/resources/assets/quickiemod/items/quickiepowderpickaxe.json new file mode 100644 index 0000000..6538372 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickiepowderpickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickiepowderpickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickiepowdershovel.json b/src/main/resources/assets/quickiemod/items/quickiepowdershovel.json new file mode 100644 index 0000000..3b398e5 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickiepowdershovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickiepowdershovel" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/quickiepowderwaterhoe.json b/src/main/resources/assets/quickiemod/items/quickiepowderwaterhoe.json new file mode 100644 index 0000000..45f7a92 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/quickiepowderwaterhoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/quickiepowderwaterhoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/rotten_flesh_stripes.json b/src/main/resources/assets/quickiemod/items/rotten_flesh_stripes.json new file mode 100644 index 0000000..cee9425 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/rotten_flesh_stripes.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/rotten_flesh_stripes" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/salpeter.json b/src/main/resources/assets/quickiemod/items/salpeter.json new file mode 100644 index 0000000..795a726 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/salpeter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/salpeter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/sandsalpeter.json b/src/main/resources/assets/quickiemod/items/sandsalpeter.json new file mode 100644 index 0000000..8cebb9f --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/sandsalpeter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:block/sandsalpeter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedingot.json b/src/main/resources/assets/quickiemod/items/speedingot.json new file mode 100644 index 0000000..b63685c --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedingot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedingot" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowder.json b/src/main/resources/assets/quickiemod/items/speedpowder.json new file mode 100644 index 0000000..47640cf --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowder.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowderaxe.json b/src/main/resources/assets/quickiemod/items/speedpowderaxe.json new file mode 100644 index 0000000..b56c62b --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowderaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowderaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowderhoe.json b/src/main/resources/assets/quickiemod/items/speedpowderhoe.json new file mode 100644 index 0000000..a2ec66f --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowderhoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowderhoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowderpickaxe.json b/src/main/resources/assets/quickiemod/items/speedpowderpickaxe.json new file mode 100644 index 0000000..576c24e --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowderpickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowderpickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowdershears.json b/src/main/resources/assets/quickiemod/items/speedpowdershears.json new file mode 100644 index 0000000..733177f --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowdershears.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowdershears" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowdershovel.json b/src/main/resources/assets/quickiemod/items/speedpowdershovel.json new file mode 100644 index 0000000..b243628 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowdershovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowdershovel" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/speedpowderwaterhoe.json b/src/main/resources/assets/quickiemod/items/speedpowderwaterhoe.json new file mode 100644 index 0000000..0b789c7 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/speedpowderwaterhoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/speedpowderwaterhoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/stub.json b/src/main/resources/assets/quickiemod/items/stub.json new file mode 100644 index 0000000..111c245 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/stub.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/stub" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/quickiemod/items/sulphor.json b/src/main/resources/assets/quickiemod/items/sulphor.json new file mode 100644 index 0000000..82eab71 --- /dev/null +++ b/src/main/resources/assets/quickiemod/items/sulphor.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "quickiemod:item/sulphor" + } +} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 0467c03..ca46935 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -29,7 +29,7 @@ ], "depends": { "fabricloader": ">=0.16.9", - "minecraft": "~1.21.3", + "minecraft": "~1.21.4", "java": ">=21", "fabric-api": "*" },