diff --git a/gradle.properties b/gradle.properties index 13d8108..a6b1022 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.2 - yarn_mappings=1.21.2+build.1 + minecraft_version=1.21.4 + yarn_mappings=1.21.4+build.4 loader_version=0.16.9 # Mod Properties - mod_version = 1.0.2-1.21.2 + mod_version = 1.0.2-1.21.4 maven_group = me.daviddgtnt archives_base_name = stringtools # Dependencies - fabric_version=0.106.1+1.21.2 + fabric_version=0.114.0+1.21.4 diff --git a/src/main/resources/assets/stringtools/items/string_axe.json b/src/main/resources/assets/stringtools/items/string_axe.json new file mode 100644 index 0000000..5d6e221 --- /dev/null +++ b/src/main/resources/assets/stringtools/items/string_axe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "stringtools:item/string_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/stringtools/items/string_hoe.json b/src/main/resources/assets/stringtools/items/string_hoe.json new file mode 100644 index 0000000..a80efcd --- /dev/null +++ b/src/main/resources/assets/stringtools/items/string_hoe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "stringtools:item/string_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/stringtools/items/string_pickaxe.json b/src/main/resources/assets/stringtools/items/string_pickaxe.json new file mode 100644 index 0000000..84b9967 --- /dev/null +++ b/src/main/resources/assets/stringtools/items/string_pickaxe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "stringtools:item/string_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/stringtools/items/string_shovel.json b/src/main/resources/assets/stringtools/items/string_shovel.json new file mode 100644 index 0000000..44206a8 --- /dev/null +++ b/src/main/resources/assets/stringtools/items/string_shovel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "stringtools:item/string_shovel" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/stringtools/items/string_stick.json b/src/main/resources/assets/stringtools/items/string_stick.json new file mode 100644 index 0000000..128359a --- /dev/null +++ b/src/main/resources/assets/stringtools/items/string_stick.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "stringtools:item/string_stick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/stringtools/items/string_sword.json b/src/main/resources/assets/stringtools/items/string_sword.json new file mode 100644 index 0000000..8fd6213 --- /dev/null +++ b/src/main/resources/assets/stringtools/items/string_sword.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "stringtools:item/string_sword" + } +} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 94ba75e..1a9b086 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "stringtools", - "version": "1.0.2-1.21.2", + "version": "1.0.2-1.21.4", "name": "String Tools", "description": "Single use tools made out of string!", @@ -26,7 +26,7 @@ "depends": { "fabricloader": ">=0.16.9", "fabric-api": "*", - "minecraft": "~1.21.2", + "minecraft": "~1.21.4", "java": ">=21" } }