diff options
| author | 2024-04-29 19:05:11 +0100 | |
|---|---|---|
| committer | 2024-05-05 15:00:08 -0500 | |
| commit | b0b4b5eb65e3dfa9f4c62df633a5078173f49005 (patch) | |
| tree | 37aed041d30414333ab911f05b0dc21d47396bb3 /src/main/resources | |
| parent | 1.20.5 (diff) | |
1.20.61.20
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/modid/icon.png | bin | 453 -> 0 bytes | |||
| -rw-r--r-- | src/main/resources/assets/smeltingtouch/icon.png | bin | 0 -> 17938 bytes | |||
| -rw-r--r-- | src/main/resources/assets/smeltingtouch/lang/en_us.json | 3 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 28 | ||||
| -rw-r--r-- | src/main/resources/modid.mixins.json | 11 |
5 files changed, 12 insertions, 30 deletions
diff --git a/src/main/resources/assets/modid/icon.png b/src/main/resources/assets/modid/icon.png Binary files differdeleted file mode 100644 index 047b91f..0000000 --- a/src/main/resources/assets/modid/icon.png +++ /dev/null diff --git a/src/main/resources/assets/smeltingtouch/icon.png b/src/main/resources/assets/smeltingtouch/icon.png Binary files differnew file mode 100644 index 0000000..01f95b1 --- /dev/null +++ b/src/main/resources/assets/smeltingtouch/icon.png 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 |
