diff --git a/example/assets/disco-example/lang/en_us.json b/example/assets/disco-example/lang/en_us.json new file mode 100644 index 0000000..f9c2444 --- /dev/null +++ b/example/assets/disco-example/lang/en_us.json @@ -0,0 +1,3 @@ +{ + "item.disco-example.amazing_song.desc": "Auxves - Amazing Song" +} diff --git a/example/assets/disco-example/models/item/amazing_song.json b/example/assets/disco-example/models/item/amazing_song.json new file mode 100644 index 0000000..282682f --- /dev/null +++ b/example/assets/disco-example/models/item/amazing_song.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "disco-example:item/amazing_song" + } +} diff --git a/example/assets/disco-example/sounds.json b/example/assets/disco-example/sounds.json new file mode 100644 index 0000000..130f25c --- /dev/null +++ b/example/assets/disco-example/sounds.json @@ -0,0 +1,6 @@ +{ + "amazing_song": { + "category": "record", + "sounds": [{ "name": "disco-example:amazing_song", "stream": true }] + } +} diff --git a/example/assets/disco-example/sounds/amazing_song.ogg b/example/assets/disco-example/sounds/amazing_song.ogg new file mode 100644 index 0000000..2455c22 Binary files /dev/null and b/example/assets/disco-example/sounds/amazing_song.ogg differ diff --git a/example/assets/disco-example/textures/item/amazing_song.png b/example/assets/disco-example/textures/item/amazing_song.png new file mode 100644 index 0000000..17cc300 Binary files /dev/null and b/example/assets/disco-example/textures/item/amazing_song.png differ diff --git a/example/data/disco-example/tags/items/discs.json b/example/data/disco-example/tags/items/discs.json new file mode 100644 index 0000000..e159575 --- /dev/null +++ b/example/data/disco-example/tags/items/discs.json @@ -0,0 +1,5 @@ +{ + "values": [ + { "id": "disco-example:amazing_song", "required": false } + ] +} \ No newline at end of file diff --git a/example/data/minecraft/tags/items/music_discs.json b/example/data/minecraft/tags/items/music_discs.json new file mode 100644 index 0000000..1a28bef --- /dev/null +++ b/example/data/minecraft/tags/items/music_discs.json @@ -0,0 +1,5 @@ +{ + "values": [ + { "id": "#disco-example:discs", "required": false } + ] +} \ No newline at end of file diff --git a/example/fabric.mod.json b/example/fabric.mod.json new file mode 100644 index 0000000..3abd225 --- /dev/null +++ b/example/fabric.mod.json @@ -0,0 +1,14 @@ +{ + "schemaVersion": 1, + "id": "disco-example", + "version": "1.0.0", + "name": "Disco Example", + "description": "Example Disco addon", + "custom": { + "disco": { + "discs": [ + { "id": "amazing_song", "duration": 2 } + ] + } + } +}