diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/morbing/lang/en_us.json | 3 | ||||
-rw-r--r-- | src/main/resources/assets/morbing/textures/block/blood_flow.png | bin | 0 -> 7048 bytes | |||
-rw-r--r-- | src/main/resources/assets/morbing/textures/block/blood_flow.png.mcmeta | 3 | ||||
-rw-r--r-- | src/main/resources/assets/morbing/textures/block/blood_still.png | bin | 0 -> 4313 bytes | |||
-rw-r--r-- | src/main/resources/assets/morbing/textures/block/blood_still.png.mcmeta | 3 | ||||
-rw-r--r-- | src/main/resources/assets/morbing/textures/entity/projectiles/morb_arrow.png | bin | 0 -> 201 bytes | |||
-rw-r--r-- | src/main/resources/assets/morbing/textures/mob_effect/morbingtime.png | bin | 0 -> 465 bytes | |||
-rw-r--r-- | src/main/resources/data/minecraft/tags/entity_types/arrows.json | 6 | ||||
-rw-r--r-- | src/main/resources/data/minecraft/tags/items/arrows.json | 6 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 32 | ||||
-rw-r--r-- | src/main/resources/morbing.mixins.json | 12 |
11 files changed, 65 insertions, 0 deletions
diff --git a/src/main/resources/assets/morbing/lang/en_us.json b/src/main/resources/assets/morbing/lang/en_us.json new file mode 100644 index 0000000..a2326b4 --- /dev/null +++ b/src/main/resources/assets/morbing/lang/en_us.json @@ -0,0 +1,3 @@ +{ + "effect.morbing.morbingtime": "Morbing" +} diff --git a/src/main/resources/assets/morbing/textures/block/blood_flow.png b/src/main/resources/assets/morbing/textures/block/blood_flow.png Binary files differnew file mode 100644 index 0000000..a206239 --- /dev/null +++ b/src/main/resources/assets/morbing/textures/block/blood_flow.png diff --git a/src/main/resources/assets/morbing/textures/block/blood_flow.png.mcmeta b/src/main/resources/assets/morbing/textures/block/blood_flow.png.mcmeta new file mode 100644 index 0000000..dd1bedb --- /dev/null +++ b/src/main/resources/assets/morbing/textures/block/blood_flow.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} diff --git a/src/main/resources/assets/morbing/textures/block/blood_still.png b/src/main/resources/assets/morbing/textures/block/blood_still.png Binary files differnew file mode 100644 index 0000000..8085526 --- /dev/null +++ b/src/main/resources/assets/morbing/textures/block/blood_still.png diff --git a/src/main/resources/assets/morbing/textures/block/blood_still.png.mcmeta b/src/main/resources/assets/morbing/textures/block/blood_still.png.mcmeta new file mode 100644 index 0000000..dd1bedb --- /dev/null +++ b/src/main/resources/assets/morbing/textures/block/blood_still.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} diff --git a/src/main/resources/assets/morbing/textures/entity/projectiles/morb_arrow.png b/src/main/resources/assets/morbing/textures/entity/projectiles/morb_arrow.png Binary files differnew file mode 100644 index 0000000..5651e88 --- /dev/null +++ b/src/main/resources/assets/morbing/textures/entity/projectiles/morb_arrow.png diff --git a/src/main/resources/assets/morbing/textures/mob_effect/morbingtime.png b/src/main/resources/assets/morbing/textures/mob_effect/morbingtime.png Binary files differnew file mode 100644 index 0000000..7e6c5fe --- /dev/null +++ b/src/main/resources/assets/morbing/textures/mob_effect/morbingtime.png diff --git a/src/main/resources/data/minecraft/tags/entity_types/arrows.json b/src/main/resources/data/minecraft/tags/entity_types/arrows.json new file mode 100644 index 0000000..c46046e --- /dev/null +++ b/src/main/resources/data/minecraft/tags/entity_types/arrows.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "morbing:morbarrow" + ] +} diff --git a/src/main/resources/data/minecraft/tags/items/arrows.json b/src/main/resources/data/minecraft/tags/items/arrows.json new file mode 100644 index 0000000..c46046e --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/arrows.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "morbing:morbarrow" + ] +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..5fdb005 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,32 @@ +{ + "schemaVersion": 1, + "id": "morbing", + "version": "${version}", + "name": "Morbing", + "description": "", + "authors": [ + "nea89" + ], + "contact": { + "homepage": "", + "sources": "" + }, + "license": "LGPL-3.0", + "icon": "assets/morbing/icon.png", + "environment": "client", + "entrypoints": { + "main": [ + "moe.nea.morbing.Morbing" + ], + "client": [ + "moe.nea.morbing.MorbingClient" + ] + }, + "mixins": [ + "morbing.mixins.json" + ], + "depends": { + "fabric": "*", + "minecraft": ">=1.18.2" + } +} diff --git a/src/main/resources/morbing.mixins.json b/src/main/resources/morbing.mixins.json new file mode 100644 index 0000000..cdbc1ea --- /dev/null +++ b/src/main/resources/morbing.mixins.json @@ -0,0 +1,12 @@ +{ + "required": true, + "package": "moe.nea.morbing.mixin", + "compatibilityLevel": "JAVA_16", + "client": [ + ], + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} |