From b0b4b5eb65e3dfa9f4c62df633a5078173f49005 Mon Sep 17 00:00:00 2001 From: bigfoot547 Date: Mon, 29 Apr 2024 19:05:11 +0100 Subject: 1.20.6 --- src/main/resources/assets/modid/icon.png | Bin 453 -> 0 bytes src/main/resources/assets/smeltingtouch/icon.png | Bin 0 -> 17938 bytes .../resources/assets/smeltingtouch/lang/en_us.json | 3 +++ src/main/resources/fabric.mod.json | 28 +++++++-------------- src/main/resources/modid.mixins.json | 11 -------- 5 files changed, 12 insertions(+), 30 deletions(-) delete mode 100644 src/main/resources/assets/modid/icon.png create mode 100644 src/main/resources/assets/smeltingtouch/icon.png create mode 100644 src/main/resources/assets/smeltingtouch/lang/en_us.json delete mode 100644 src/main/resources/modid.mixins.json (limited to 'src/main/resources') diff --git a/src/main/resources/assets/modid/icon.png b/src/main/resources/assets/modid/icon.png deleted file mode 100644 index 047b91f..0000000 Binary files a/src/main/resources/assets/modid/icon.png and /dev/null differ diff --git a/src/main/resources/assets/smeltingtouch/icon.png b/src/main/resources/assets/smeltingtouch/icon.png new file mode 100644 index 0000000..01f95b1 Binary files /dev/null and b/src/main/resources/assets/smeltingtouch/icon.png differ diff --git a/src/main/resources/assets/smeltingtouch/lang/en_us.json b/src/main/resources/assets/smeltingtouch/lang/en_us.json new file mode 100644 index 0000000..b84043f --- /dev/null +++ b/src/main/resources/assets/smeltingtouch/lang/en_us.json @@ -0,0 +1,3 @@ +{ + "enchantment.smeltingtouch.smeltingtouch": "Smelting Touch" +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 802b85d..80a3fe0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,41 +1,31 @@ { "schemaVersion": 1, - "id": "modid", + "id": "smeltingtouch", "version": "${version}", - "name": "Example mod", - "description": "This is an example description! Tell everyone what your mod is about!", + "name": "Smelting Touch", + "description": "This mod adds the Smelting Touch enchantment.", "authors": [ - "Me!" + "Astrx", + "figboot" ], "contact": { - "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" }, "license": "CC0-1.0", - "icon": "assets/modid/icon.png", + "icon": "assets/smeltingtouch/icon.png", "environment": "*", "entrypoints": { "main": [ - "com.example.ExampleMod" - ], - "client": [ - "com.example.ExampleModClient" + "dev.figboot.SmeltingTouchMod" ] }, "mixins": [ - "modid.mixins.json", - { - "config": "modid.client.mixins.json", - "environment": "client" - } ], "depends": { "fabricloader": ">=0.15.10", - "minecraft": "~1.20.5", + "minecraft": "~1.20.6", "java": ">=21", "fabric-api": "*" }, "suggests": { - "another-mod": "*" } -} \ No newline at end of file +} diff --git a/src/main/resources/modid.mixins.json b/src/main/resources/modid.mixins.json deleted file mode 100644 index f7fc0a3..0000000 --- a/src/main/resources/modid.mixins.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "required": true, - "package": "com.example.mixin", - "compatibilityLevel": "JAVA_21", - "mixins": [ - "ExampleMixin" - ], - "injectors": { - "defaultRequire": 1 - } -} \ No newline at end of file -- cgit v1.2.3-70-g09d2