diff options
author | Anthony Hilyard <anthony.hilyard@gmail.com> | 2021-08-25 14:51:42 -0700 |
---|---|---|
committer | Anthony Hilyard <anthony.hilyard@gmail.com> | 2021-08-25 14:51:42 -0700 |
commit | fca13e61adcfbdbf38497c20a2e41ef120ef1d13 (patch) | |
tree | 2fcf430a4de62639338bf9b360853bb46c5b9d90 /src/main/resources | |
download | Iceberg-fca13e61adcfbdbf38497c20a2e41ef120ef1d13.tar.gz Iceberg-fca13e61adcfbdbf38497c20a2e41ef120ef1d13.tar.bz2 Iceberg-fca13e61adcfbdbf38497c20a2e41ef120ef1d13.zip |
Initial commit.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/META-INF/mods.toml | 27 | ||||
-rw-r--r-- | src/main/resources/iceberg.mixins.json | 15 | ||||
-rw-r--r-- | src/main/resources/icon.png | bin | 0 -> 4416 bytes | |||
-rw-r--r-- | src/main/resources/pack.mcmeta | 7 |
4 files changed, 49 insertions, 0 deletions
diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..bfb58bd --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,27 @@ +modLoader="javafml" +loaderVersion="[36,)" +license="All rights reserved." + +[[mods]] +modId="iceberg" +version="${version}" +displayName="Iceberg" +displayURL="https://anthonyhilyard.com/" +updateJSONURL="https://mc-curse-update-checker.herokuapp.com/520110" +logoFile="icon.png" +authors="Grend" +description="A library containing events, helpers, and utilities to make modding easier." + +[[dependencies.iceberg]] + modId="forge" + mandatory=true + versionRange="[36,)" + ordering="NONE" + side="BOTH" + +[[dependencies.iceberg]] + modId="minecraft" + mandatory=true + versionRange="[1.16.5]" + ordering="NONE" + side="BOTH"
\ No newline at end of file diff --git a/src/main/resources/iceberg.mixins.json b/src/main/resources/iceberg.mixins.json new file mode 100644 index 0000000..41b5589 --- /dev/null +++ b/src/main/resources/iceberg.mixins.json @@ -0,0 +1,15 @@ +{ + "required": true, + "package": "com.anthonyhilyard.iceberg.mixin", + "compatibilityLevel": "JAVA_8", + "refmap": "iceberg.refmap.json", + "mixins": [ + "PlayerAdvancementsMixin", + "EntityMixin" + ], + "injectors": { + "defaultRequire": 1 + }, + "minVersion": "0.8", + "target": "@env(DEFAULT)" +} diff --git a/src/main/resources/icon.png b/src/main/resources/icon.png Binary files differnew file mode 100644 index 0000000..a7ac381 --- /dev/null +++ b/src/main/resources/icon.png diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..709504e --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,7 @@ +{ + "pack": { + "description": "iceberg resources", + "pack_format": 6, + "_comment": "A pack_format of 6 requires json lang files and some texture changes from 1.16.2. Note: we require v6 pack meta for all mods." + } +} |