From f7ca47ba8132addd94928aa8615448c47a6b3d7b Mon Sep 17 00:00:00 2001 From: Maximusbarcz Date: Fri, 23 Dec 2022 22:31:38 +0100 Subject: Enormous amounts of trolling :tomfoolery:, not only that I fixed basically everything and switched the entire system to advancements, it now also has a cool custom book that you can open and stuff! Only issue I'm currently facing is that you get a skill point when you get the advancement for opening the gui and clicking stuff... right not that big of an issue but when I add 2 billion advancements its gonna hurt a bit. Love, Mayaqq --- src/main/resources/assets/ygasi/icon.png | Bin 26011 -> 0 bytes .../resources/assets/ygasi/models/item/skill_book.json | 6 ++++++ .../resources/assets/ygasi/textures/item/skill_book.png | Bin 0 -> 315 bytes 3 files changed, 6 insertions(+) create mode 100644 src/main/resources/assets/ygasi/models/item/skill_book.json create mode 100644 src/main/resources/assets/ygasi/textures/item/skill_book.png (limited to 'src/main/resources/assets') diff --git a/src/main/resources/assets/ygasi/icon.png b/src/main/resources/assets/ygasi/icon.png index dc0a055..e69de29 100644 Binary files a/src/main/resources/assets/ygasi/icon.png and b/src/main/resources/assets/ygasi/icon.png differ diff --git a/src/main/resources/assets/ygasi/models/item/skill_book.json b/src/main/resources/assets/ygasi/models/item/skill_book.json new file mode 100644 index 0000000..fdeb013 --- /dev/null +++ b/src/main/resources/assets/ygasi/models/item/skill_book.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ygasi:item/skill_book" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ygasi/textures/item/skill_book.png b/src/main/resources/assets/ygasi/textures/item/skill_book.png new file mode 100644 index 0000000..d6a20f0 Binary files /dev/null and b/src/main/resources/assets/ygasi/textures/item/skill_book.png differ -- cgit