diff options
author | Maximusbarcz <maxim.baranek@gmail.com> | 2022-12-23 22:31:38 +0100 |
---|---|---|
committer | Maximusbarcz <maxim.baranek@gmail.com> | 2022-12-23 22:31:38 +0100 |
commit | f7ca47ba8132addd94928aa8615448c47a6b3d7b (patch) | |
tree | a46151060500ffba77630e64817a4bfb842268e0 /src/main/generated/data | |
parent | e5bc4dae41d2d3e04440a4fe02793d4084427437 (diff) | |
download | ygasi-f7ca47ba8132addd94928aa8615448c47a6b3d7b.tar.gz ygasi-f7ca47ba8132addd94928aa8615448c47a6b3d7b.tar.bz2 ygasi-f7ca47ba8132addd94928aa8615448c47a6b3d7b.zip |
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
Diffstat (limited to 'src/main/generated/data')
4 files changed, 140 insertions, 0 deletions
diff --git a/src/main/generated/data/minecraft/advancements/ygasi/druidry.json b/src/main/generated/data/minecraft/advancements/ygasi/druidry.json new file mode 100644 index 0000000..635c05f --- /dev/null +++ b/src/main/generated/data/minecraft/advancements/ygasi/druidry.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:ygasi/root", + "criteria": { + "gotten_previous": { + "conditions": { + "advancement_identifier": "minecraft:ygasi/root" + }, + "trigger": "revelationary:advancement_gotten" + }, + "unlocked_druidry": { + "trigger": "minecraft:impossible" + } + }, + "display": { + "announce_to_chat": false, + "description": { + "text": "Unlock the druidry branch!" + }, + "frame": "goal", + "hidden": false, + "icon": { + "item": "minecraft:oak_sapling" + }, + "show_toast": false, + "title": { + "text": "Druidry" + } + }, + "requirements": [ + [ + "unlocked_druidry" + ], + [ + "gotten_previous" + ] + ] +}
\ No newline at end of file diff --git a/src/main/generated/data/minecraft/advancements/ygasi/mercenary.json b/src/main/generated/data/minecraft/advancements/ygasi/mercenary.json new file mode 100644 index 0000000..a10aaa0 --- /dev/null +++ b/src/main/generated/data/minecraft/advancements/ygasi/mercenary.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:ygasi/root", + "criteria": { + "gotten_previous": { + "conditions": { + "advancement_identifier": "minecraft:ygasi/root" + }, + "trigger": "revelationary:advancement_gotten" + }, + "unlocked_mercenary": { + "trigger": "minecraft:impossible" + } + }, + "display": { + "announce_to_chat": false, + "description": { + "text": "Unlock the mercenary branch!" + }, + "frame": "goal", + "hidden": false, + "icon": { + "item": "minecraft:iron_sword", + "nbt": "{Damage:0}" + }, + "show_toast": false, + "title": { + "text": "Mercenary" + } + }, + "requirements": [ + [ + "unlocked_mercenary" + ], + [ + "gotten_previous" + ] + ] +}
\ No newline at end of file diff --git a/src/main/generated/data/minecraft/advancements/ygasi/root.json b/src/main/generated/data/minecraft/advancements/ygasi/root.json new file mode 100644 index 0000000..4452389 --- /dev/null +++ b/src/main/generated/data/minecraft/advancements/ygasi/root.json @@ -0,0 +1,28 @@ +{ + "criteria": { + "opened_skill_menu": { + "trigger": "minecraft:impossible" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:textures/block/sculk_catalyst_top.png", + "description": { + "text": "The journey begins here!" + }, + "frame": "challenge", + "hidden": false, + "icon": { + "item": "minecraft:diamond" + }, + "show_toast": true, + "title": { + "text": "You've got a skill issue!" + } + }, + "requirements": [ + [ + "opened_skill_menu" + ] + ] +}
\ No newline at end of file diff --git a/src/main/generated/data/minecraft/advancements/ygasi/wizardry.json b/src/main/generated/data/minecraft/advancements/ygasi/wizardry.json new file mode 100644 index 0000000..8e86cc7 --- /dev/null +++ b/src/main/generated/data/minecraft/advancements/ygasi/wizardry.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:ygasi/root", + "criteria": { + "gotten_previous": { + "conditions": { + "advancement_identifier": "minecraft:ygasi/root" + }, + "trigger": "revelationary:advancement_gotten" + }, + "unlocked_wizardry": { + "trigger": "minecraft:impossible" + } + }, + "display": { + "announce_to_chat": false, + "description": { + "text": "Unlock the wizardry branch!" + }, + "frame": "goal", + "hidden": false, + "icon": { + "item": "minecraft:blaze_rod" + }, + "show_toast": false, + "title": { + "text": "Wizardry" + } + }, + "requirements": [ + [ + "unlocked_wizardry" + ], + [ + "gotten_previous" + ] + ] +}
\ No newline at end of file |