diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2024-08-29 20:16:09 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2024-08-29 20:16:09 +0100 |
commit | a243923a3f4c9a6ff2b87a04c14b3e305866521d (patch) | |
tree | 4092183ff71f76e20bfcc0d87c2282e0a0ee1866 /src/main/resources | |
parent | 9a90ba748f11fc06662ceeb83c6a8e3efcae668e (diff) | |
download | eye-of-nether-a243923a3f4c9a6ff2b87a04c14b3e305866521d.tar.gz eye-of-nether-a243923a3f4c9a6ff2b87a04c14b3e305866521d.tar.xz eye-of-nether-a243923a3f4c9a6ff2b87a04c14b3e305866521d.zip |
Version 1.20.1+0
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/eye_of_nether/lang/en_us.json | 3 | ||||
-rw-r--r-- | src/main/resources/assets/eye_of_nether/models/item/eye_of_nether.json | 6 | ||||
-rw-r--r-- | src/main/resources/assets/eye_of_nether/textures/item/eye_of_nether.png | bin | 0 -> 4660 bytes | |||
-rw-r--r-- | src/main/resources/data/eye_of_nether/recipes/eye_of_nether.json | 8 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 31 |
5 files changed, 48 insertions, 0 deletions
diff --git a/src/main/resources/assets/eye_of_nether/lang/en_us.json b/src/main/resources/assets/eye_of_nether/lang/en_us.json new file mode 100644 index 0000000..dcb3b5b --- /dev/null +++ b/src/main/resources/assets/eye_of_nether/lang/en_us.json @@ -0,0 +1,3 @@ +{ + "item.eye_of_nether.eye_of_nether": "Eye of Nether" +} diff --git a/src/main/resources/assets/eye_of_nether/models/item/eye_of_nether.json b/src/main/resources/assets/eye_of_nether/models/item/eye_of_nether.json new file mode 100644 index 0000000..5e1b270 --- /dev/null +++ b/src/main/resources/assets/eye_of_nether/models/item/eye_of_nether.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "eye_of_nether:item/eye_of_nether" + } +} diff --git a/src/main/resources/assets/eye_of_nether/textures/item/eye_of_nether.png b/src/main/resources/assets/eye_of_nether/textures/item/eye_of_nether.png Binary files differnew file mode 100644 index 0000000..62f0adc --- /dev/null +++ b/src/main/resources/assets/eye_of_nether/textures/item/eye_of_nether.png diff --git a/src/main/resources/data/eye_of_nether/recipes/eye_of_nether.json b/src/main/resources/data/eye_of_nether/recipes/eye_of_nether.json new file mode 100644 index 0000000..e2e1ba8 --- /dev/null +++ b/src/main/resources/data/eye_of_nether/recipes/eye_of_nether.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "minecraft:ender_pearl" }, + { "item": "minecraft:ghast_tear" } + ], + "result": { "item": "eye_of_nether:eye_of_nether" } +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..9cf295e --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "eye_of_nether", + "version": "${version}", + "name": "Eye of Nether", + "description": "Add eyes of nether for locating nether fortresses", + "authors": [ + { + "name": "Tomasz Kramkowski", + "contact": { + "email": "tomasz@kramkow.ski" + } + } + ], + "contact": { + "sources": "https://the-tk.com/cgit/eye-of-nether" + }, + "license": "LGPL-3.0-or-later", + "environment": "*", + "entrypoints": { + "main": [ + "ski.kramkow.mcmod.eyeofnether.EyeOfNether" + ] + }, + "depends": { + "fabricloader": ">=0.16.3", + "minecraft": "~1.20.1", + "java": ">=17", + "fabric-api": "*" + } +} |