From f9b09e0d56838312c5e4415e09693e0fcd6e6d0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AB=E6=9C=88Sama?= <128806271+imifumei@users.noreply.github.com> Date: Fri, 24 Mar 2023 20:44:01 +0900 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Better=20MC=20[FORGE]=201.?= =?UTF-8?q?19.2=20v13=20=E6=B1=89=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ftbquests/quests/chapter_groups.snbt | 6 + .../ftbquests/quests/chapters/decoration.snbt | 54 +++ .../quests/chapters/deeper_and_darker.snbt | 141 +++++++ .../ftbquests/quests/chapters/everbright.snbt | 137 +++++++ .../ftbquests/quests/chapters/everdawn.snbt | 136 +++++++ .../ftbquests/quests/chapters/oddities.snbt | 369 ++++++++++++++++++ .../ftbquests/quests/chapters/overworld.snbt | 130 ++++++ .../ftbquests/quests/chapters/seasonal.snbt | 202 ++++++++++ .../ftbquests/quests/chapters/the_end.snbt | 206 ++++++++++ .../ftbquests/quests/chapters/the_nether.snbt | 216 ++++++++++ .../quests/chapters/the_twilight_forest.snbt | 198 ++++++++++ .../chapters/welcome_to_bmc_forge_1192.snbt | 284 ++++++++++++++ .../config/ftbquests/quests/data.snbt | 21 + .../quests/reward_tables/end_quest.snbt | 10 + 14 files changed, 2110 insertions(+) create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapter_groups.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/decoration.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/deeper_and_darker.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everbright.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everdawn.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/oddities.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/overworld.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/seasonal.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_end.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_nether.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_twilight_forest.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/welcome_to_bmc_forge_1192.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/data.snbt create mode 100644 project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/reward_tables/end_quest.snbt diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapter_groups.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapter_groups.snbt new file mode 100644 index 00000000..a17062c1 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapter_groups.snbt @@ -0,0 +1,6 @@ +{ + chapter_groups: [ + { id: "5BBB507BE497896B", title: "&5维度" } + { id: "5EC606153AA8CA77", title: "&b一些值得制作的物品" } + ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/decoration.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/decoration.snbt new file mode 100644 index 00000000..26caf657 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/decoration.snbt @@ -0,0 +1,54 @@ +{ + id: "3B95E66C126DBBEF" + group: "5EC606153AA8CA77" + order_index: 0 + filename: "decoration" + title: " &9装饰" + icon: "handcrafted:oak_table" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "合成一个&8&l末影龙毛绒玩具" + x: -2.0d + y: -0.5d + subtitle: "是通过Plushie Mod添加的众多毛绒玩具之一。" + id: "12D4044932EEF253" + tasks: [{ + id: "2EC84E3C457ECFEA" + type: "item" + item: "plushies:dragon" + }] + rewards: [{ + id: "56FD6212C5A5A2DB" + type: "item" + item: "plushies:dolphin" + }] + } + { + title: "合成一个&c垫子" + x: -0.5d + y: -0.5d + subtitle: "可改变Handcrafted Mod中家具的颜色。" + id: "3689EC382764B60D" + tasks: [{ + id: "4D1E83ABFF06E75C" + type: "item" + title: "任意垫子" + item: { + id: "itemfilters:tag" + Count: 1b + tag: { + value: "handcrafted:cushions" + } + } + }] + rewards: [{ + id: "4B71BEF4E28F2671" + type: "item" + item: "handcrafted:hammer" + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/deeper_and_darker.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/deeper_and_darker.snbt new file mode 100644 index 00000000..83ca7688 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/deeper_and_darker.snbt @@ -0,0 +1,141 @@ +{ + id: "43F9E85332B37439" + group: "5BBB507BE497896B" + order_index: 6 + filename: "deeper_and_darker" + title: " &1&l幽冥" + icon: "deeperdarker:heart_of_the_deep" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "击杀&3监守者" + icon: "minecraft:sculk_sensor" + x: 7.0d + y: 4.0d + shape: "diamond" + subtitle: "可以在&a主世界&r的地下发现。" + size: 2.0d + id: "731C3214BB61FDAE" + tasks: [{ + id: "37E411F497C9CD71" + type: "kill" + title: "击杀监守者" + entity: "minecraft:warden" + value: 1L + }] + rewards: [{ + id: "1A22694A70BE865A" + type: "item" + item: "minecraft:netherite_scrap" + }] + } + { + title: "合成一个&9监守者头盔" + x: 5.0d + y: 4.0d + subtitle: "用来抵消&8&l幽冥&r的黑暗" + dependencies: ["731C3214BB61FDAE"] + id: "44937B2D2EB38094" + tasks: [{ + id: "42CA7AAF304767E7" + type: "item" + item: { + id: "deeperdarker:warden_helmet" + Count: 1b + tag: { + Damage: 0 + } + } + }] + rewards: [{ + id: "2EF0FAB1AE9BC43E" + type: "xp_levels" + xp_levels: 10 + }] + } + { + title: "前往&8&l幽冥" + x: 9.0d + y: 4.0d + subtitle: "在激活传送门之前,您必须先从内部框架中移除所有&3幽匿脉络&r。清理框架后,可使用通过击杀监守者获得的&8深渊之心&r右键单击传送门框架以激活传送门。" + dependencies: ["44937B2D2EB38094"] + id: "704CCA2CEAB23B4D" + tasks: [{ + id: "474D2D76F2256297" + type: "dimension" + title: "前往幽冥" + icon: "minecraft:reinforced_deepslate" + dimension: "deeperdarker:otherside" + }] + rewards: [{ + id: "1860E3DCA6E8E6FB" + type: "item" + item: "deeperdarker:ancient_vase" + }] + } + { + title: "击杀&3碎裂者" + x: 8.0d + y: 5.5d + dependencies: ["704CCA2CEAB23B4D"] + id: "6E7D3242496F4501" + tasks: [{ + id: "5B9501581479A2EC" + type: "kill" + title: "击杀碎裂者" + icon: "deeperdarker:soul_dust" + entity: "deeperdarker:shattered" + value: 1L + }] + rewards: [{ + id: "1910360C472DE886" + type: "xp_levels" + xp_levels: 5 + }] + } + { + title: "击杀&3追猎者" + x: 9.0d + y: 5.5d + subtitle: "在破坏一个&8远古花瓶&r后有低概率生成。" + dependencies: ["704CCA2CEAB23B4D"] + id: "192EE909C57F390A" + tasks: [{ + id: "1D807C8DC05EF208" + type: "kill" + title: "击杀追猎者" + icon: "deeperdarker:soul_crystal" + entity: "deeperdarker:stalker" + value: 1L + }] + rewards: [{ + id: "77B0B7D61481A552" + type: "xp_levels" + xp_levels: 5 + }] + } + { + title: "击杀&7尖啸蠕虫" + x: 10.0d + y: 5.5d + subtitle: "玩家踩踏&1被虫蚀的幽匿块&r时生成" + dependencies: ["704CCA2CEAB23B4D"] + id: "3CBDB45D65737212" + tasks: [{ + id: "3D7BD985875AFF57" + type: "kill" + title: "击杀尖啸蠕虫" + icon: "deeperdarker:sculk_bone" + entity: "deeperdarker:shriek_worm" + value: 1L + }] + rewards: [{ + id: "2FE936F92AA38681" + type: "xp_levels" + xp_levels: 5 + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everbright.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everbright.snbt new file mode 100644 index 00000000..92be97f4 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everbright.snbt @@ -0,0 +1,137 @@ +{ + id: "548F6C8C65E929D9" + group: "5BBB507BE497896B" + order_index: 2 + filename: "everbright" + title: " &9永昼之地" + icon: "blue_skies:turquoise_stonebrick" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "进入&9永昼之地" + x: -0.5d + y: -0.5d + subtitle: "建造传送门所需的方块可在守门人小屋的里面或者外面生成" + description: ["&9永昼之地&r是一个永远白昼却很寒冷的维度,这里生活着许多厚皮目哺乳动物和类似于魂灵的奇异生物。当你在这个世界中冒险时,你或许需要随时留意你的身后...一定要注意会带来浓雾和比平时更多敌人的暴风雪。"] + id: "27CD46C8E6EC2E3B" + tasks: [{ + id: "34BEAE9F7B3C7641" + type: "dimension" + title: "进入永昼之地" + icon: "blue_skies:turquoise_stonebrick" + dimension: "blue_skies:everbright" + }] + rewards: [{ + id: "37443EBA60E9DBA0" + type: "xp" + xp: 100 + }] + } + { + title: "击杀&5召唤师 " + x: 2.5d + y: -0.5d + subtitle: "可以通过在永昼之地惑乱高塔内找到的惑乱钥匙传送到&5召唤师地牢&r。" + description: ["召唤师通过闪电,能量,和它的傀儡进行攻击。一定要小心你的身后,如果不盯住它的傀儡,这些傀儡很快就会打倒你。通过击杀召唤师,你将获得挑战自然城堡的资格。"] + dependencies: ["37B01786D1F519C6"] + id: "084BFF7D3DD9BB24" + tasks: [{ + id: "0A272A4C6A0D1869" + type: "kill" + title: "击杀召唤师" + icon: "blue_skies:bright_blinding_keystone" + entity: "blue_skies:summoner" + value: 1L + }] + rewards: [ + { + id: "49D4292EB66AD8EE" + type: "item" + item: { + id: "blue_skies:summoning_tome" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "24A8C4E277B9EB8F" + type: "xp" + xp: 100 + } + ] + } + { + title: "击杀&c星熠破灭之树" + x: 5.5d + y: -0.5d + subtitle: "可以通过在自然城堡内找到的天理钥匙来打开通往&c星熠破灭之树&r的大门。" + description: ["星熠破灭之树虽然不会大幅移动,但是它可以通过扎根地面,从而在下方产生广域攻击来弥补这一点,甚至可以通过蛮力让地面本身震动。由于它仍然是一棵树,所以斧头对它造成的伤害要大得多,并且同时需要绕过它的防御。寻找机会用矛击晕它以获得攻击的机会。"] + dependencies: ["207769EC3251F70E"] + id: "17EE59DC9B0C44B7" + tasks: [{ + id: "78C390F75DC274B9" + type: "kill" + title: "击杀星熠破灭之树" + icon: { + id: "blue_skies:starlit_crusher_trophy" + Count: 1b + tag: { + BlockStateTag: { + tier: "bronze" + } + } + } + entity: "blue_skies:starlit_crusher" + value: 1L + }] + rewards: [{ + id: "65263F95C8C47B56" + type: "xp_levels" + xp_levels: 10 + }] + } + { + title: "找到4把&2惑乱钥匙" + icon: "blue_skies:blinding_key" + x: 1.0d + y: -0.5d + subtitle: "藏在永昼之地惑乱高塔之中" + dependencies: ["27CD46C8E6EC2E3B"] + id: "37B01786D1F519C6" + tasks: [{ + id: "7A42676AA2769350" + type: "item" + item: "blue_skies:blinding_key" + count: 4L + }] + rewards: [{ + id: "30565F7613C1E8CC" + type: "xp" + xp: 100 + }] + } + { + title: "找到4把&a天理钥匙" + x: 4.0d + y: -0.5d + subtitle: "藏在&a自然城堡&r之中" + dependencies: ["084BFF7D3DD9BB24"] + id: "207769EC3251F70E" + tasks: [{ + id: "7FB4F19B7B7F9932" + type: "item" + item: "blue_skies:nature_key" + count: 4L + }] + rewards: [{ + id: "523DB91988FA0340" + type: "xp" + xp: 100 + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everdawn.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everdawn.snbt new file mode 100644 index 00000000..df4f4296 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/everdawn.snbt @@ -0,0 +1,136 @@ +{ + id: "7A7E777C67E216AC" + group: "5BBB507BE497896B" + order_index: 3 + filename: "everdawn" + title: " &8恒晓之地" + icon: "blue_skies:lunar_stonebrick" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "进入&8恒晓之地" + x: -0.5d + y: -0.5d + subtitle: "建造传送门所需的方块可在守门人小屋的里面或者外面生成" + description: ["&8恒晓之地&r是一个永远在日出的那一刻且炎热潮湿的维度,这里生活着许多爬行类动物和体型巨大的昆虫。在进入这个世界之前,你应该时刻为中毒和燃烧做好准备,因为这个世界的许多地方都可能对你造成类似伤害。"] + id: "23B2A759FBB4DBFF" + tasks: [{ + id: "2F88DFAD11A0FFA5" + type: "dimension" + title: "进入恒晓之地" + icon: "blue_skies:lunar_stonebrick" + dimension: "blue_skies:everdawn" + }] + rewards: [{ + id: "43A5F09800046F07" + type: "xp" + xp: 100 + }] + } + { + title: "击杀&4幽咽蛛王" + x: 5.5d + y: -0.5d + subtitle: "可以通过在猛毒地牢内找到的猛毒钥匙来打开通往&4幽咽蛛王地牢&r的大门。" + description: ["幽咽蛛王会冲向玩家,并从上方的天花板向玩家喷吐毒液。 作为这个巢穴的女王,她的援军从墙上爬出来也并不奇怪。 由于幽咽蛛王的攻击方式较为激进,当玩家用盾牌格挡时,有概率击晕幽咽蛛王。"] + dependencies: ["375FB9826C8942B8"] + id: "4F3FD11CA8C37BFA" + tasks: [{ + id: "0FA50CFE06683C83" + type: "kill" + title: "击杀幽咽蛛王" + icon: { + id: "blue_skies:arachnarch_trophy" + Count: 1b + tag: { + BlockStateTag: { + tier: "bronze" + } + } + } + entity: "blue_skies:arachnarch" + value: 1L + }] + rewards: [{ + id: "006A55D1ACC697B7" + type: "xp_levels" + xp_levels: 10 + }] + } + { + title: "找到4把&2惑乱钥匙" + x: 1.0d + y: -0.5d + subtitle: "藏在恒晓之地惑乱高塔之中" + dependencies: ["23B2A759FBB4DBFF"] + id: "69871007BC2BB95E" + tasks: [{ + id: "055CA19EEE17EC85" + type: "item" + item: "blue_skies:blinding_key" + count: 4L + }] + rewards: [{ + id: "1EE04D0BC95568AD" + type: "xp" + xp: 100 + }] + } + { + title: "击杀&5炼金术士" + x: 2.5d + y: -0.5d + subtitle: "可以通过在恒晓之地惑乱高塔内找到的惑乱钥匙传送到&5炼金术士地牢&r。" + description: ["炼金术士使用药水和物理武器来战斗。 他的许多攻击都可以通过观察前摇来预测,但错过这些动作可能会导致严重的伤害。通过击杀炼金术士,你将获得挑战猛毒地牢的资格。"] + dependencies: ["69871007BC2BB95E"] + id: "433FD23CAA2F4CEA" + tasks: [{ + id: "2AF8CE4F7464FE5C" + type: "kill" + title: "击杀炼金术士" + icon: "blue_skies:dawn_blinding_keystone" + entity: "blue_skies:alchemist" + value: 1L + }] + rewards: [ + { + id: "794BE8A8DF703552" + type: "item" + item: { + id: "blue_skies:alchemy_scroll" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "1D38106F41648F0A" + type: "xp" + xp: 100 + } + ] + } + { + title: "找到4把&2猛毒钥匙" + x: 4.0d + y: -0.5d + subtitle: "藏在&2猛毒地牢&r之中" + dependencies: ["433FD23CAA2F4CEA"] + id: "375FB9826C8942B8" + tasks: [{ + id: "2E53AC6DA2C9B3B0" + type: "item" + item: "blue_skies:poison_key" + count: 4L + }] + rewards: [{ + id: "1350CB28CC4C5503" + type: "xp" + xp: 100 + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/oddities.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/oddities.snbt new file mode 100644 index 00000000..cb5ddab0 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/oddities.snbt @@ -0,0 +1,369 @@ +{ + id: "4E33D80DA11F2414" + group: "5EC606153AA8CA77" + order_index: 2 + filename: "oddities" + title: " &7杂项" + icon: { + id: "naturescompass:naturescompass" + Count: 1b + tag: { } + } + default_quest_shape: "circle" + default_hide_dependency_lines: false + quests: [ + { + title: "合成一个&6贸易站" + x: -3.5d + y: -3.5d + subtitle: "该设备将自动探查附近的村民,并且可以进行交易。" + id: "4185D9740B80E39D" + tasks: [{ + id: "0405A07D7EBAB67C" + type: "item" + item: "tradingpost:trading_post" + }] + rewards: [{ + id: "2FFB4275C1B23EB0" + type: "item" + item: "minecraft:emerald" + count: 3 + }] + } + { + title: "合成&2自然指南针" + x: -2.0d + y: -2.0d + subtitle: "可以用来定位生物群系。" + id: "5F0FC5A5035E29B0" + tasks: [{ + id: "351D2EAFAE0F9CB7" + type: "item" + item: { + id: "naturescompass:naturescompass" + Count: 1b + tag: { } + } + }] + rewards: [{ + id: "6EECAEBE4D4EAB88" + type: "item" + item: "supplementaries:rope" + count: 16 + }] + } + { + title: "合成一个&5祭坛" + x: -0.5d + y: -2.0d + subtitle: "可以用来突破装备的&5附魔 &r等级上限,但会根据装备不同附加不同的&4诅咒&r。该物品的制作材料可以在部分生物群系的地下找到&r。" + id: "1137432ADCFEC509" + tasks: [{ + id: "74E388214A93A9E7" + type: "item" + item: "biomemakeover:altar" + }] + rewards: [{ + id: "7F559D73B16FD397" + type: "item" + item: "biomemakeover:cooked_crab" + count: 5 + }] + } + { + title: "合成一个&e电梯" + x: 1.0d + y: 1.0d + subtitle: "可以让你轻松地在相同Y轴上传送。" + id: "22D9C9224D94E1AF" + tasks: [{ + id: "532F7D4FFE1F0F20" + type: "item" + title: "任意电梯" + item: { + id: "itemfilters:tag" + Count: 1b + tag: { + value: "elevatorid:elevators" + } + } + }] + rewards: [{ + id: "72DB1D79337C0884" + type: "item" + item: "minecraft:ender_pearl" + }] + } + { + title: "合成一个&8指路石" + x: -0.5d + y: -0.5d + subtitle: "可以让你轻松地在&l任意 &r两个指路石之间传送。长距离传送可能会消耗你的&a经验值&r。" + id: "554FCDBDC9485FA2" + tasks: [{ + id: "22C96A7FD13A57AE" + type: "item" + item: "waystones:waystone" + }] + rewards: [{ + id: "12583035D8981827" + type: "xp_levels" + xp_levels: 5 + }] + } + { + title: "合成一个&c拆解台" + x: 1.0d + y: -3.5d + subtitle: "可以将物品拆解成制作前的原料。 在暮色森林可以找到迷宫地图核心。" + id: "1CE4F2F108792335" + tasks: [{ + id: "1F966B37AD4A878A" + type: "item" + item: "twilightforest:uncrafting_table" + }] + rewards: [{ + id: "2E59C933B2EE00DB" + type: "item" + item: "twilightforest:fiery_ingot" + }] + } + { + title: "合成一个&e日历" + x: 1.0d + y: -2.0d + subtitle: "可以告诉你当前所处季节。季节可能影响很多事情。 - 尤其是作物的生长以及天气。" + id: "1E65308E968AF323" + tasks: [{ + id: "773B0BB44FD1B042" + type: "item" + item: "sereneseasons:calendar" + }] + rewards: [{ + id: "78C6465E25E01517" + type: "item" + item: "minecraft:melon_seeds" + count: 3 + }] + } + { + title: "合成一个&e虚空图腾" + x: -3.5d + y: -2.0d + subtitle: "可以防止你在虚空中死亡。该图腾会自动将你传送到一个安全的地方。可装备在护符槽。" + id: "12965C7AB98FA9C6" + tasks: [{ + id: "266B22E4299C23A6" + type: "item" + item: "unusualend:void_totem" + }] + rewards: [{ + id: "4FD53411FE953111" + type: "xp_levels" + xp_levels: 10 + }] + } + { + title: "合成&d肥皂" + x: -2.0d + y: 1.0d + subtitle: "可以复原&c染&a过&e色&b的&r物品,清洁&6铜块&r, 复原&c染&a过&e色&b的&r羊,也可以将&2黏性&r活塞转换为普通活塞。" + id: "7236C066E7C894B3" + tasks: [{ + id: "3171E8D9D224BCAA" + type: "item" + item: "supplementaries:soap" + }] + rewards: [{ + id: "156E76792F358643" + type: "item" + item: "supplementaries:blackboard" + }] + } + { + title: "合成一个&b钻石卓越火炬" + x: -2.0d + y: -3.5d + subtitle: "三种卓越火炬变体之一。在2048格半径内无视光照等级不会自然刷新怪物。" + id: "0B23AB3C41A686EA" + tasks: [{ + id: "435BC24FB0CA106A" + type: "item" + item: "magnumtorch:diamond_magnum_torch" + }] + rewards: [{ + id: "0FAF1947C5D1B541" + type: "item" + item: "farmersdelight:noodle_soup" + }] + } + { + title: "合成一个&4齿轮方块" + x: -0.5d + y: 1.0d + subtitle: "可以提供紧凑的垂直&4红石&r信号。" + id: "3851BFEF1D86D474" + tasks: [{ + id: "6261485F53C82B8D" + type: "item" + item: "supplementaries:cog_block" + }] + rewards: [{ + id: "3B3967DDC46C73EA" + type: "item" + item: { + id: "earthmobsmod:horn_flute" + Count: 1b + tag: { + instrument: "minecraft:ponder_goat_horn" + } + } + }] + } + { + title: "合成一个&3传送卷轴" + x: 1.0d + y: -0.5d + subtitle: "手持传送卷轴右击可传送至所有已点亮的&8传送石碑&r。" + id: "024898B93AB09569" + tasks: [{ + id: "78656CFDE0277785" + type: "item" + item: "waystones:warp_scroll" + }] + rewards: [{ + id: "04F8BE51A2A388FD" + type: "xp_levels" + xp_levels: 10 + }] + } + { + title: "合成一个&6交换站" + x: -0.5d + y: -3.5d + subtitle: "可以用来自动与附近的猪灵进行交易。" + id: "7EB6A2560F7BFCF7" + tasks: [{ + id: "7EFE37C54551C427" + type: "item" + item: "barteringstation:bartering_station" + }] + rewards: [{ + id: "7AB8D34F3512123C" + type: "item" + item: "minecraft:gold_ingot" + count: 3 + }] + } + { + title: "合成一个&8笼子" + x: -3.5d + y: -0.5d + subtitle: "所有中型生物均可被捕捉到&8笼子&r中。右键可释放生物,Shift右键可放置&8笼子&r。" + id: "24FA08E13512B7D1" + tasks: [{ + id: "09F0017452924E6B" + type: "item" + item: "supplementaries:cage" + }] + rewards: [{ + id: "1E96930F461E2B01" + type: "xp_levels" + xp_levels: 2 + }] + } + { + title: "合成一个&f玻璃罐" + x: -3.5d + y: 1.0d + subtitle: "所有小型生物均可被捕捉到&f玻璃罐&r中。右键可释放生物,Shift右键可放置&f玻璃罐&r。" + id: "20DCF40C6CA4E4FF" + tasks: [{ + id: "76038A2F0CF78FC0" + type: "item" + item: "supplementaries:jar" + }] + rewards: [{ + id: "0B709EE0454857FC" + type: "xp_levels" + xp_levels: 2 + }] + } + { + title: "合成一本&5经验宝典" + x: -2.0d + y: -0.5d + subtitle: "一种存储&a经验等级的&r简单方式。" + id: "3BEEC11F8F2E844A" + tasks: [{ + id: "721EC4E651B50F86" + type: "item" + item: { + id: "xpbook:xp_tome" + Count: 1b + tag: { } + } + }] + rewards: [{ + id: "4E5920D7A3DC2D9A" + type: "xp_levels" + xp_levels: 5 + }] + } + { + title: "合成一个&7窑炉" + x: -3.5d + y: 2.5d + subtitle: "可以用于制作各种独特的装饰砖块!" + id: "29C16D81E2051509" + tasks: [{ + id: "649587A56787F6B8" + type: "item" + item: "clayworks:kiln" + }] + rewards: [{ + id: "011C8A72391192C3" + type: "item" + item: "minecraft:coal" + count: 8 + }] + } + { + title: "合成一个&9锯木机" + x: -2.0d + y: 2.5d + subtitle: "像是一台切石机,不过是给&9木头&r用的!" + id: "357BDBE6386F9B42" + tasks: [{ + id: "2BCAB16C2E00190A" + type: "item" + item: "woodworks:sawmill" + }] + rewards: [{ + id: "04D66DDCEA5331BB" + type: "item" + item: "windswept:chestnut_log" + count: 8 + }] + } + { + title: "合成一个&6干草窝" + x: -0.5d + y: 2.5d + subtitle: "是一个&f鸡&r会在里面产卵的干草窝!" + id: "74C9B05AFAEAAE27" + tasks: [{ + id: "5283266517269FCA" + type: "item" + item: "incubation:hay_nest" + }] + rewards: [{ + id: "1574E99575A5EBFC" + type: "item" + item: "minecraft:egg" + count: 6 + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/overworld.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/overworld.snbt new file mode 100644 index 00000000..dcfbeeec --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/overworld.snbt @@ -0,0 +1,130 @@ +{ + id: "1D4E5CDD59FFB7A0" + group: "5BBB507BE497896B" + order_index: 0 + filename: "overworld" + title: " &a主世界" + icon: "minecraft:grass_block" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "通过守门人开始一次&9蔚蓝浩空的旅行&r吧。" + x: 1.5d + y: -2.5d + subtitle: "守门人小屋可以在大多数生物群系中被发现。" + id: "268A05DFD4D5427A" + tasks: [{ + id: "08CA723FD16E3030" + type: "item" + title: "通过守门人开始一次蔚蓝浩空的旅行。" + item: "blue_skies:blue_journal" + }] + rewards: [ + { + id: "14F327BA69B975BD" + type: "item" + item: "blue_skies:turquoise_stonebrick" + count: 12 + } + { + id: "2D05266B3F98B211" + type: "item" + item: "blue_skies:lunar_stonebrick" + count: 12 + } + ] + } + { + title: "合成一个&2背包" + x: 1.5d + y: 0.5d + subtitle: "当背包已被装备时,按下&bB&r可以快速打开背包。" + id: "6A12B1FE7B703F9D" + tasks: [{ + id: "44740305C2A8DC52" + type: "item" + title: "合成一个背包" + item: "backpacked:backpack" + }] + rewards: [{ + id: "1C1C43B99CC8E4E3" + type: "xp_levels" + xp_levels: 5 + }] + } + { + title: "击杀&8魔术师" + x: 3.5d + y: 0.5d + subtitle: "可在黑森林的剧院中找到" + id: "3DAB175493B08089" + tasks: [{ + id: "10911C878598A90F" + type: "kill" + title: "击杀魔术师" + icon: { + id: "conjurer_illager:conjurer_hat" + Count: 1b + tag: { + Damage: 0 + } + } + entity: "conjurer_illager:conjurer" + value: 1L + }] + rewards: [{ + id: "29B13597289089F3" + type: "xp_levels" + xp_levels: 5 + }] + } + { + title: "在一场&4袭击&r中保护村庄" + x: 2.5d + y: -1.0d + subtitle: "袭击可通过杀死袭击队长开始,和原版方式相同。" + id: "26EA75D177BC496B" + tasks: [{ + id: "7362BF4629FAD929" + type: "advancement" + title: "保护村庄" + advancement: "minecraft:adventure/hero_of_the_village" + criterion: "" + }] + rewards: [ + { + id: "2F1EFCBC72F69624" + type: "item" + item: "minecraft:netherite_ingot" + } + { + id: "6DA1A2B30558A913" + type: "xp_levels" + xp_levels: 5 + } + ] + } + { + title: "击杀&6死胡子船长" + x: 3.5d + y: -2.5d + subtitle: "在沙滩有非常低的几率自然生成" + id: "6CCC207D1B1A29FF" + tasks: [{ + id: "3CF050DB14D4A6D8" + type: "kill" + title: "击杀死胡子船长" + icon: "rottencreatures:treasure_chest" + entity: "rottencreatures:dead_beard" + value: 1L + }] + rewards: [{ + id: "656F412439474F84" + type: "item" + item: "upgradednetherite_items:netherite_apple" + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/seasonal.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/seasonal.snbt new file mode 100644 index 00000000..62732818 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/seasonal.snbt @@ -0,0 +1,202 @@ +{ + id: "712EEC29E9F58AEC" + group: "5EC606153AA8CA77" + order_index: 1 + filename: "seasonal" + title: " &f四季" + icon: "sereneseasons:calendar" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "合成一个&b雪橇" + x: 0.0d + y: 1.5d + subtitle: "可以像船一样被放置在地表。可以让你从山坡或者其他表面滑下。" + dependencies: ["40131BFC98F5E03C"] + id: "44FA4ABE94EAD177" + tasks: [{ + id: "00D3FA019EA1A948" + type: "item" + title: "任意雪橇" + item: { + id: "itemfilters:tag" + Count: 1b + tag: { + value: "snowyspirit:sleds" + } + } + }] + rewards: [{ + id: "673492CDB04D587C" + type: "item" + item: "snowyspirit:winter_disc" + }] + } + { + title: "合成一个&c拐&f杖&c糖&f块" + x: -3.0d + y: 0.5d + subtitle: "让你的假日变甜!" + dependencies: ["40131BFC98F5E03C"] + id: "0EF8EA8214FEEAB7" + tasks: [{ + id: "0CFA7B64A6A626F5" + type: "item" + item: "snowyspirit:candy_cane_block" + }] + rewards: [{ + id: "627BF9300FFA13DE" + type: "item" + item: "supplementaries:candy" + count: 20 + }] + } + { + title: "合成&e姜饼块" + x: -2.0d + y: -0.5d + subtitle: "可以用来合成各种各样的&e姜饼&r风格的建筑方块。" + dependencies: ["40131BFC98F5E03C"] + id: "6F24276D322F6549" + tasks: [{ + id: "5C961FE3126D06E9" + type: "item" + item: "snowyspirit:gingerbread" + }] + rewards: [{ + id: "10CF92B2D27066E2" + type: "item" + item: "supplementaries:present_blue" + }] + } + { + title: "建造一个&b雪人" + icon: "frosted_friends:snow_head_top_hat" + x: -1.471428571428575d + y: 0.9875000000000007d + subtitle: "Shift右键地面上的&f积雪&r可以创建&b雪人&r所需的三种雪堆,然后朝向想要滚动的方向点击来获取更多的雪(滚雪球)。&b雪人&r的底部需要一个&f大雪堆&r,中部需要一个&f雪堆&r,顶部则需要一个&f小堆雪&r。小堆雪需要Shift右键以放置在雪堆顶部。用&6不死图腾&r点击&f雪人&r会有一个惊喜。阅读任务描述来了解更多装饰&f雪人&r的方法!" + description: [ + "以下物品可以被添加至&f雪人&r:" + "&e种子&r- 给&f雪人&r添加纽扣和面部细节" + "&e木棍 &r- 给&f雪人&r添加手臂" + "&e雕刻过的南瓜&r- 一顶&f雪人&r专属的帽子,用剪刀可移除" + "&e胡萝卜&r- 给&f雪人&r一个胡萝卜鼻子" + "&e圣诞帽/高帽&r- 可以给&f雪人&r装备的更多帽子,用剪刀可移除" + ] + size: 1.2d + id: "40131BFC98F5E03C" + tasks: [{ + id: "4257D36EDDACC580" + type: "observation" + icon: "minecraft:snow_block" + timer: 0L + observe_type: 0 + to_observe: "frosted_friends:pile_of_snow" + }] + rewards: [{ + id: "3784FC18E854E75F" + type: "item" + item: "festive_delight:festive_chiken" + }] + } + { + title: "合成一个&f雪傀儡毛绒玩具" + x: -3.0d + y: 1.5d + subtitle: "一个可爱的&f雪傀儡&r小装饰!" + dependencies: ["40131BFC98F5E03C"] + id: "7BBCCB63DFCBB79E" + tasks: [{ + id: "5C037697AFAC57B9" + type: "item" + item: "plushies:snow_golem" + }] + rewards: [{ + id: "4120C15F238AF71E" + type: "item" + item: "frozenup:mug_of_truffle_hot_chocolate" + }] + } + { + title: "合成一个&d礼物盒" + x: 0.0d + y: 0.5d + subtitle: "一种赠送朋友(或者自己)礼物的绝妙方式" + dependencies: ["40131BFC98F5E03C"] + id: "40BA61DBF53991AA" + tasks: [{ + id: "108C9F26C2870B30" + type: "item" + title: "任意礼物盒" + item: { + id: "itemfilters:tag" + Count: 1b + tag: { + value: "supplementaries:presents" + } + } + }] + rewards: [{ + id: "617CA145B2B21A1E" + type: "item" + item: "snowyspirit:snow_globe" + }] + } + { + title: "合成一个&c圣诞帽&c" + x: -1.0d + y: -0.5d + subtitle: "圣诞老人的帽子丢了" + dependencies: ["40131BFC98F5E03C"] + id: "6E062250A11D197E" + tasks: [{ + id: "02B25A7336FFBD77" + type: "item" + item: { + id: "frosted_friends:christmas_helmet" + Count: 1b + tag: { + Damage: 0 + } + } + }] + rewards: [ + { + id: "352AC99055A00865" + type: "item" + item: { + id: "frosted_friends:ice_hoe" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "48AD5B101A43F208" + type: "item" + item: { + id: "frosted_friends:ice_hoe" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "35B3BE7A145F7B9F" + type: "item" + item: { + id: "frosted_friends:ice_hoe" + Count: 1b + tag: { + Damage: 0 + } + } + } + ] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_end.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_end.snbt new file mode 100644 index 00000000..7ce70c4e --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_end.snbt @@ -0,0 +1,206 @@ +{ + id: "50EEC609E833AB5F" + group: "5BBB507BE497896B" + order_index: 5 + filename: "the_end" + title: " &5末地" + icon: "minecraft:end_portal_frame" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "进入&8末地" + x: 4.0d + y: 2.0d + shape: "hexagon" + size: 2.0d + id: "4D36AAFE17F5CD9C" + tasks: [{ + id: "444AC080F3243355" + type: "dimension" + title: "进入末路之地维度" + icon: "minecraft:end_portal_frame" + dimension: "minecraft:the_end" + }] + rewards: [{ + id: "7F2C1C227A8CC557" + type: "choice" + exclude_from_claim_all: true + table_id: 6935663685294125539L + }] + } + { + title: "击杀&8&l末影龙" + icon: "minecraft:dragon_head" + x: 2.5d + y: 1.0d + subtitle: "可与原版以相同的方式重新生成 - 在返回传送门的四条边的中央位置放置一个末地水晶。" + dependencies: ["4D36AAFE17F5CD9C"] + dependency_requirement: "all_started" + id: "2A51F2BA00FCA9DF" + tasks: [{ + id: "412B85684482E982" + type: "kill" + title: "击杀末影龙" + icon: "minecraft:dragon_head" + entity: "minecraft:ender_dragon" + value: 1L + }] + rewards: [ + { + id: "03D5DEF13126F18F" + type: "xp" + xp: 100 + } + { + id: "7914F51272FBFEAE" + type: "item" + item: "unusualend:void_totem" + } + ] + } + { + title: "召唤并击杀&9虚空蠕虫" + x: 5.5d + y: 3.0d + subtitle: "将绯红孑孓放入衣壳体中,等待片刻后,将会掉落神秘蠕虫。向末地的虚空中投入神秘蠕虫可以召唤虚空蠕虫。" + dependencies: ["4D36AAFE17F5CD9C"] + id: "43E0AD91C15669D8" + tasks: [{ + id: "679295C74DF4AA03" + type: "kill" + title: "召唤并击杀虚空蠕虫" + icon: "alexsmobs:void_worm_eye" + entity: "alexsmobs:void_worm" + value: 1L + }] + rewards: [ + { + id: "7F9FB286E02FC06D" + type: "item" + item: "upgradednetherite_items:ultimate_upgraded_netherite_totem" + } + { + id: "431401C91D175B2C" + type: "xp" + xp: 100 + } + ] + } + { + title: "击杀&6末影傀儡" + x: 4.0d + y: 0.0d + subtitle: "可在&5末地岛&r的废弃堡垒中发现。" + dependencies: ["4D36AAFE17F5CD9C"] + id: "66E7CB465F845A15" + tasks: [{ + id: "60D9ED81B17CAE0F" + type: "kill" + title: "击杀末影傀儡" + icon: "cataclysm:void_core" + entity: "cataclysm:ender_golem" + value: 1L + }] + rewards: [ + { + id: "52F190738B4D81C2" + type: "item" + item: "cataclysm:music_disc_ender_guardian" + } + { + id: "54B860B89029F1EA" + type: "xp" + xp: 100 + } + ] + } + { + title: "击杀&3末影守卫" + x: 5.5d + y: 1.0d + subtitle: "可在废弃堡垒底部找到。" + dependencies: ["4D36AAFE17F5CD9C"] + id: "355ABBA15B609961" + tasks: [{ + id: "2A41742198B4693C" + type: "kill" + title: "击杀末影守卫" + icon: "cataclysm:ender_guardian_spawner" + entity: "cataclysm:ender_guardian" + value: 1L + }] + rewards: [ + { + id: "6FA06FCC2870331E" + type: "item" + item: "upgradednetherite:corrupt_upgraded_netherite_ingot" + } + { + id: "0303343E7736CC11" + type: "xp" + xp: 100 + } + ] + } + { + title: "击杀&3庇护者&r以获得虚空水晶" + x: 2.5d + y: 3.0d + subtitle: "免疫除爆炸以外的任何伤害。" + dependencies: ["4D36AAFE17F5CD9C"] + id: "36B77024E67E279C" + tasks: [{ + id: "7B37F3A22D97E75F" + type: "item" + item: "stalwart_dungeons:void_crystal" + }] + rewards: [ + { + id: "608A75E04FED4206" + type: "item" + item: "alexsmobs:capsid" + } + { + id: "25D8FBF0CF5434F3" + type: "item" + item: "alexsmobs:mosquito_larva" + } + { + id: "64A788283FBBDA3D" + type: "xp" + xp: 100 + } + ] + } + { + title: "击杀&d末地石傀儡" + x: 4.0d + y: 4.0d + subtitle: "用龙息右键末地古城的顶部的傀儡祭坛以召唤末地石傀儡。" + dependencies: ["4D36AAFE17F5CD9C"] + id: "197BBE3D29EE8216" + tasks: [{ + id: "2844F9CBD107B1A7" + type: "kill" + title: "击杀末地石傀儡" + icon: "unusualend:shulker_orb" + entity: "unusualend:endstone_golem" + value: 1L + }] + rewards: [ + { + id: "5CEF7A5CE5F1D33E" + type: "item" + item: "spirit:soul_cage" + } + { + id: "2012E144A9E8783F" + type: "xp" + xp: 100 + } + ] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_nether.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_nether.snbt new file mode 100644 index 00000000..64af751b --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_nether.snbt @@ -0,0 +1,216 @@ +{ + id: "0D7FF8F037EFF568" + group: "5BBB507BE497896B" + order_index: 4 + filename: "the_nether" + title: " &c下界" + icon: "minecraft:obsidian" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "进入&c下界" + x: 3.0d + y: 0.0d + size: 2.0d + id: "46D0AAEEB69E28B3" + tasks: [{ + id: "7FC5892104C0744C" + type: "dimension" + title: "进入下界" + icon: "minecraft:netherrack" + dimension: "minecraft:the_nether" + }] + rewards: [{ + id: "75D2953DAEB9AFC1" + type: "item" + item: { + id: "minecraft:lingering_potion" + Count: 1b + tag: { + Potion: "minecraft:fire_resistance" + } + } + }] + } + { + title: "击杀&4下界守卫" + x: 3.0d + y: -2.0d + subtitle: "在&c下界荒地&r和&4绯红森林&r生物群系找到&8守卫城堡&r,消耗一颗&f下界之星&r右键下界守卫祭坛即可召唤。" + dependencies: ["46D0AAEEB69E28B3"] + id: "13247698A9E98C61" + tasks: [{ + id: "3702E4C32FE0F698" + type: "kill" + icon: "stalwart_dungeons:keeping_castle_spawner" + entity: "stalwart_dungeons:nether_keeper" + value: 1L + }] + rewards: [ + { + id: "77F83375B1CF985C" + type: "item" + item: "minecraft:netherite_ingot" + } + { + id: "2F5630715A08C7ED" + type: "item" + item: "alexsmobs:spawn_egg_warped_mosco" + } + { + id: "13562F3ADFB2E120" + type: "xp_levels" + xp_levels: 5 + } + ] + } + { + title: "击杀&9惊骇恶魂" + x: 5.0d + y: -1.0d + subtitle: "在灵魂沙峡谷和诡异森林找到惊骇地牢,消耗一颗&f下界之星&r右键惊骇恶魂祭坛即可召唤。" + dependencies: ["46D0AAEEB69E28B3"] + id: "68D7F63EAA0FE3E4" + tasks: [{ + id: "320E04AD2AD28E79" + type: "kill" + title: "击杀惊骇恶魂" + icon: "stalwart_dungeons:awful_dungeon_spawner" + entity: "stalwart_dungeons:awful_ghast" + value: 1L + }] + rewards: [ + { + id: "25D03449F1A59CF6" + type: "item" + item: "minecraft:totem_of_undying" + } + { + id: "609A198F30A2E7EA" + type: "xp_levels" + xp_levels: 5 + } + ] + } + { + title: "击杀&8下界合金巨兽" + x: 3.0d + y: 2.0d + subtitle: "会在&c下界&r稀有生成的灵魂锻造厂中生成。" + dependencies: ["46D0AAEEB69E28B3"] + id: "1DEBE563E5673B95" + tasks: [{ + id: "4DBC642134268AE7" + type: "kill" + title: "击杀下界合金巨兽" + icon: { + id: "cataclysm:monstrous_helm" + Count: 1b + tag: { + Damage: 0 + } + } + entity: "cataclysm:netherite_monstrosity" + value: 1L + }] + rewards: [ + { + id: "3F53BE78EC264653" + type: "item" + item: "upgradednetherite_items:netherite_totem" + } + { + id: "4865893101B5F37C" + type: "xp_levels" + xp_levels: 5 + } + ] + } + { + title: "击杀&8&l凋零" + x: 1.0d + y: 0.5d + subtitle: "因为Bygone Nether模组的加入,当你想召唤凋零的时候,你必须使用&5灵魂石&r来替代&d灵魂沙&r才可以正常召唤。请务必确保召唤时多方块结构的手臂下没有草,雪之类的障碍物。" + dependencies: ["46D0AAEEB69E28B3"] + id: "0BFD8ED8A0E3AE60" + tasks: [{ + id: "575C8BC94DAC2B05" + type: "kill" + title: "击杀凋零" + icon: "minecraft:wither_skeleton_skull" + entity: "minecraft:wither" + value: 1L + }] + rewards: [ + { + id: "731183474D5BC5FE" + type: "item" + item: "upgradednetherite_items:wither_upgraded_netherite_totem" + } + { + id: "1FB79B0A8B0FBE90" + type: "xp_levels" + xp_levels: 5 + } + ] + } + { + title: "击杀&6燃魂" + x: 5.0d + y: 0.5d + subtitle: "可以在烈焰竞技场发现。" + dependencies: ["46D0AAEEB69E28B3"] + id: "6CD3F5FFA15ACC81" + tasks: [{ + id: "4CE4CD701A07CA04" + type: "kill" + title: "击杀燃魂" + icon: "cataclysm:burning_ashes" + entity: "cataclysm:ignited_revenant" + value: 1L + }] + rewards: [ + { + id: "26B4EDC38A0A6C90" + type: "item" + item: "cataclysm:burning_ashes" + } + { + id: "0B04FF68D27BB79B" + type: "xp_levels" + xp_levels: 5 + } + ] + } + { + title: "击杀&2焰魔" + x: 1.0d + y: -1.0d + subtitle: "可使用燃烧的灰烬右击烈焰竞技场顶层的火焰祭坛召唤&2焰魔" + dependencies: ["46D0AAEEB69E28B3"] + id: "4D2923365DB9C4C0" + tasks: [{ + id: "3363067332FD6A6A" + type: "kill" + title: "击杀焰魔" + icon: "cataclysm:altar_of_fire" + entity: "cataclysm:ignis" + value: 1L + }] + rewards: [ + { + id: "27FC4D5F422A3B57" + type: "item" + item: "cataclysm:bulwark_of_the_flame" + } + { + id: "03F88F2EAA259C7F" + type: "xp_levels" + xp_levels: 5 + } + ] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_twilight_forest.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_twilight_forest.snbt new file mode 100644 index 00000000..4b8b8c5b --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/the_twilight_forest.snbt @@ -0,0 +1,198 @@ +{ + id: "3DAC62F9CB57DD77" + group: "5BBB507BE497896B" + order_index: 1 + filename: "the_twilight_forest" + title: " &2暮色森林" + icon: "twilightforest:twilight_portal_miniature_structure" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "进入&2暮色森林" + x: -1.0d + y: 0.5d + subtitle: "为了创建暮色森林传送门,需要先准备2x2大小的由水源组成的水池,再将水池周边4x4范围种满植物,最后向水池投掷一颗钻石即可创建传送门" + id: "2BC7B74C1D405B3B" + tasks: [{ + id: "43B4B4196E278A86" + type: "dimension" + title: "进入暮色森林" + icon: "twilightforest:twilight_portal_miniature_structure" + dimension: "twilightforest:twilight_forest" + }] + rewards: [{ + id: "60AC17EED0812047" + type: "item" + item: "twilightforest:magic_map" + }] + } + { + title: "击杀&a娜迦" + x: 0.5d + y: 0.5d + subtitle: "可在暮色森林生物群系中找到。可解锁&e巫妖塔&r。" + dependencies: ["2BC7B74C1D405B3B"] + id: "7630C21661FED121" + tasks: [{ + id: "3E3AAB64DD29EF24" + type: "kill" + title: "击杀娜迦" + icon: "twilightforest:naga_trophy" + entity: "twilightforest:naga" + value: 1L + }] + rewards: [{ + id: "165BE5F21305C953" + type: "xp_levels" + xp_levels: 25 + }] + } + { + title: "击杀&e巫妖" + x: 2.0d + y: 0.5d + subtitle: "可在暮色森林生物群系中找到。可解锁牛头人迷宫和雪怪巢穴。" + dependencies: ["7630C21661FED121"] + id: "7149FE98D0E105CE" + tasks: [{ + id: "5794A56FA9705232" + type: "kill" + title: "击杀巫妖" + icon: "twilightforest:lich_trophy" + entity: "twilightforest:lich" + value: 1L + }] + rewards: [{ + id: "3A2EB8FD6C05F748" + type: "item" + item: { + id: "twilightforest:fortification_scepter" + Count: 1b + tag: { + Damage: 0 + } + } + }] + } + { + x: 3.5d + y: 0.5d + subtitle: "通过杀死位于暮色沼泽的牛头人迷宫中的牛头人获得。可以解锁亡灵矿山。" + dependencies: ["7149FE98D0E105CE"] + id: "5ED257E2C2147AB2" + tasks: [{ + id: "5B95A81809E8E210" + type: "kill" + title: "吃下牛头人沙拉酱肉" + icon: "twilightforest:meef_stroganoff" + entity: "twilightforest:minotaur" + value: 1L + }] + rewards: [{ + id: "66DCDF057D1F9F9C" + type: "item" + item: { + id: "minecraft:splash_potion" + Count: 1b + tag: { + Potion: "alexsmobs:knockback_resistance" + } + } + }] + } + { + title: "击杀&2九头蛇" + x: 5.0d + y: 0.5d + subtitle: "可以在火焰沼泽中的亡灵矿山找到。可解锁黑暗森林。" + dependencies: ["5ED257E2C2147AB2"] + id: "37E4C4EFA9E20B79" + tasks: [{ + id: "0C2016FE44EF5A17" + type: "kill" + title: "击杀九头蛇" + icon: "twilightforest:hydra_trophy" + entity: "twilightforest:hydra" + value: 1L + }] + rewards: [ + { + id: "4411FF8D2D7D3530" + type: "item" + item: "twilightforest:cooked_venison" + count: 8 + } + { + id: "7737DE55400CB2D3" + type: "item" + item: "twilightforest:charm_of_keeping_1" + } + ] + } + { + title: "击杀&f暮色恶魂" + x: 6.5d + y: 0.5d + subtitle: "可在黑暗森林中的黑暗高塔找到。" + dependencies: ["37E4C4EFA9E20B79"] + id: "57FD6DFF7B7647D0" + tasks: [{ + id: "45767EA415670C8F" + type: "kill" + title: "击杀暮色恶魂" + icon: "twilightforest:ur_ghast_trophy" + entity: "twilightforest:ur_ghast" + value: 1L + }] + rewards: [{ + id: "3DCE5F493B46E441" + type: "item" + item: "twilightforest:charm_of_keeping_2" + }] + } + { + title: "击杀&f&l雪怪首领" + x: 8.0d + y: 0.5d + subtitle: "可以在&f积雪森林&r中的&f雪怪巢穴&r找到。可解锁&f&l冰雪女王&r。" + dependencies: ["57FD6DFF7B7647D0"] + id: "3D1F53C06B660F96" + tasks: [{ + id: "12C1C8D16C9D9FD1" + type: "kill" + title: "击杀雪怪首领" + icon: "twilightforest:alpha_yeti_trophy" + entity: "twilightforest:alpha_yeti" + value: 1L + }] + rewards: [{ + id: "65ED4735EF4E9AB5" + type: "item" + item: "twilightforest:charm_of_keeping_3" + }] + } + { + title: "击杀&f&l冰雪女王" + x: 9.5d + y: 0.5d + subtitle: "可在暮色冰川找到。" + dependencies: ["3D1F53C06B660F96"] + id: "7B6005A9F6F5C7FE" + tasks: [{ + id: "191F4CCB0B22AB0A" + type: "kill" + title: "击杀冰雪女王" + icon: "twilightforest:snow_queen_trophy" + entity: "twilightforest:snow_queen" + value: 1L + }] + rewards: [{ + id: "32DA7FB74907E8F2" + type: "item" + item: "minecraft:netherite_ingot" + }] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/welcome_to_bmc_forge_1192.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/welcome_to_bmc_forge_1192.snbt new file mode 100644 index 00000000..1f880ee1 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/chapters/welcome_to_bmc_forge_1192.snbt @@ -0,0 +1,284 @@ +{ + id: "3E34934F09B08365" + group: "" + order_index: 0 + filename: "welcome_to_bmc_forge_1192" + title: " &d教程" + icon: { + id: "ftbquests:custom_icon" + Count: 1b + tag: { + Icon: "patchouli:textures/items/book_blue.png" + } + } + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "&e欢迎来到 Better MC!" + icon: { + id: "minecraft:book" + Count: 1b + tag: { + Enchantments: [{ + lvl: 1 + id: "aqua_affinity" + }] + } + } + x: 1.5d + y: 2.0d + subtitle: "为了开始教程,请点击本任务并阅读描述" + description: [ + "这个教程会通过一些基础内容指导你进行游戏。不用担心,这不会&o太&r久!" + "" + "为了开始教程请点击\"&9任务&r\"下方的对号,然后宣称&6任务奖励&r,新的任务就将会出现。" + "" + "如果没有出现新的任务的话,请尝试重新加入世界。直到教程结束为止,不要吃掉你的面包。" + ] + size: 2.0d + id: "6A52090D6BC064D7" + tasks: [{ + id: "1B0800437C68C43A" + type: "checkmark" + title: "点我!" + }] + rewards: [{ + id: "7AE355ED27B98F95" + type: "item" + item: "minecraft:bread" + count: 3 + }] + } + { + title: "&2背包" + icon: { + id: "ftbquests:custom_icon" + Count: 1b + tag: { + Icon: "ftbteams:textures/teams.png" + } + } + x: 0.5d + y: 0.0d + subtitle: "请阅读描述!" + description: [ + "左上角的图标是&aFTB队伍&r菜单,通过这个菜单可以将其他玩家邀请到你的队伍" + "" + "在&aFTB队伍 &r图标右边的是&6任务书 &r图标,这个图标可以让你在任何时候访问&6任务书&r。" + "" + "在&6任务书 &r右边的是 &9FTB区块 &r地图。 通过单击某个区块,这个区块将会被你宣称占领,防止玩家和其他生物破坏此区块。 如果你Shift单击一个已被宣称的区块,这个区块将被强制加载。在被强制加载的区块中,作物,熔炉以及更多其他物品将会识别为当前为玩家存在于此地的状态,从而正常工作" + "" + "当你点击你角色显示框左上的方块时,你的&8饰品 &r槽 将会变得可见。 一些类似于鞘翅和不死傀儡的物品可以被装备到此处。" + "" + "尝试着将你在任务奖励中获得的&c生命符咒 Ⅰ &r装备到你的护符槽位!" + ] + dependencies: ["6A52090D6BC064D7"] + hide: true + dependency_requirement: "one_completed" + invisible_until_tasks: 1 + id: "2958CA7FA6FD3E4F" + tasks: [ + { + id: "0DD3C1416FC34FA1" + type: "checkmark" + title: "点我!" + } + { + id: "380A99374727D6D8" + type: "item" + disable_toast: true + item: "minecraft:bread" + } + ] + rewards: [{ + id: "649C9C6CB3EB241E" + type: "item" + item: "twilightforest:charm_of_life_1" + }] + } + { + title: "&6任务" + icon: { + id: "ftbquests:custom_icon" + Count: 1b + tag: { + Icon: "ftbquests:textures/item/book.png" + } + } + x: 1.5d + y: 0.0d + subtitle: "请阅读描述!" + description: [ + "&9任务 &r是你为了完成任务需要达成的目标。如果你的任务是一个物品,通过单击显示的物品,可以显示该物品的合成配方。" + "" + "&6奖励 &r可以在当你完成了该&9任务&r的所有目标时获得。通过单击可以收集奖励。" + "" + "通过点击右上角的大头针可以将&9任务&r固定在你的屏幕中。" + ] + dependencies: ["6A52090D6BC064D7"] + hide: true + invisible_until_tasks: 1 + id: "175099CF5696829E" + tasks: [ + { + id: "21428FE253D34D4E" + type: "checkmark" + title: "Quests" + } + { + id: "08EDA62F0B406C49" + type: "item" + disable_toast: true + item: "minecraft:bread" + } + ] + rewards: [{ + id: "34B145F40A6C1F3B" + type: "item" + item: "minecraft:torch" + count: 3 + }] + } + { + title: "&9一些重要的控制键位" + icon: { + id: "ftbquests:custom_icon" + Count: 1b + tag: { + Icon: "ftblibrary:textures/icons/player.png" + } + } + x: 2.5d + y: 0.0d + subtitle: "请阅读描述!" + description: [ + "在你的鼠标光标悬浮在某个物品的上方时,按下 &bR &r来显示合成配方。" + "" + "在你的鼠标光标悬浮在某个物品的上方时,按下 &bU &r来显示用途。" + "" + "按下 &b左Alt &r来爬行。" + "" + "通过在潜行时按下&b右键 &r来抱起一个方块。 (对箱子类方块有效,并非对所有方块有效。)" + "" + "在使用对应工具破坏方块时,通过按住 &b~ &r来激活连锁挖矿。" + "" + "当你的背饰栏装备有背包时,通过 &bB &r键可以打开背包。" + "" + "按下 &bC &r来缩放视角。" + "" + "按下 &bM &r打开世界地图。" + "" + "按下 &bI &r 来在你未放下工作台时打开合成界面。" + "" + "按下 &bU &r 来查看玩家死亡记录。" + "" + "按下 &bY &r 来管理路径点。" + "" + "按下 &bH &r 来创建路径点。" + "" + "按下 &bB &r 来打开一个已被装备的背包。 (复述功能快捷键可以在控制设置中解绑)" + ] + dependencies: ["6A52090D6BC064D7"] + hide: true + invisible_until_tasks: 1 + id: "2165E80C52C79992" + tasks: [ + { + id: "6A64112F92690241" + type: "checkmark" + title: "点我!" + } + { + id: "2B23CADA52D45FA0" + type: "item" + disable_toast: true + item: "minecraft:bread" + } + ] + rewards: [{ + id: "3B11CCACEEBA0E58" + type: "item" + item: "byg:holly_sapling" + }] + } + { + title: "&bJust Enough Items (JEI)" + icon: { + id: "ftbquests:custom_icon" + Count: 1b + tag: { + Icon: "jei:textures/gui/icons/config_button_cheat.png" + } + } + x: 0.5d + y: -1.5d + subtitle: "请阅读描述!" + description: [ + "在你的背包界面的底部,你可能已经注意到了一个搜索栏。" + "" + "这就是&dJust Enough Items&r或者也可叫他&dJEI&r。这是它的搜索栏。 " + "" + "例如,当你输入 \"木(也可使用拼音输入mu)\",在屏幕右侧的&dJEI &r物品列表就将会显示所有名字中带有\"木(或拼音mu)\"的物品。" + "" + "通过在搜索栏的最左侧先输入@ ,即可搜索某个MOD中的所有物品。例如@Twigs" + "" + "在你的鼠标光标悬浮在某个物品的上方时,按下 &bA &r 可以将该物品添加为&dJEI &r物品列表的收藏,从而显示在屏幕左侧。再次按下 &bA &r 可以解除收藏。" + ] + dependencies: ["2958CA7FA6FD3E4F"] + hide: true + id: "139DAA6E8CF4267A" + tasks: [{ + id: "74C85348A8B837EB" + type: "checkmark" + title: "点我!" + }] + rewards: [{ + id: "1AE5746200C26691" + type: "xp_levels" + xp_levels: 1 + }] + } + { + icon: { + id: "ftbquests:custom_icon" + Count: 1b + tag: { + Icon: "ftblibrary:textures/icons/check.png" + } + } + x: 1.5d + y: -1.5d + subtitle: "请阅读描述!" + description: [ + "教程&a已结束&r!" + "" + "想要查看其他任务,请将你的鼠标光标移动到屏幕左侧来展开&6任务组&r。" + "" + "对于您可能存在的其他任何问题,欢迎您加入我们的&bDiscord &r来寻求帮助: https://lunapixel.studio/discord" + ] + dependencies: ["139DAA6E8CF4267A"] + hide: true + id: "6A4CB4700F0082C6" + tasks: [{ + id: "3B2CC7DEE30E3AB8" + type: "checkmark" + title: "&a教程已完成!" + }] + rewards: [ + { + id: "41A9DE72F193E603" + type: "item" + item: "buzzier_bees:honey_bread" + count: 3 + } + { + id: "53680199E84036F9" + type: "item" + item: "alexsmobs:animal_dictionary" + } + ] + } + ] + quest_links: [ ] +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/data.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/data.snbt new file mode 100644 index 00000000..ad21b1f5 --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/data.snbt @@ -0,0 +1,21 @@ +{ + version: 13 + title: "Better Minecraft [FORGE] 1.19.2" + default_reward_team: false + default_consume_items: false + default_autoclaim_rewards: "disabled" + default_quest_shape: "rsquare" + default_quest_disable_jei: false + emergency_items_cooldown: 300 + drop_loot_crates: false + loot_crate_no_drop: { + passive: 4000 + monster: 600 + boss: 0 + } + disable_gui: false + grid_scale: 0.5d + pause_game: false + lock_message: "" + progression_mode: "linear" +} diff --git a/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/reward_tables/end_quest.snbt b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/reward_tables/end_quest.snbt new file mode 100644 index 00000000..6a0a7f5b --- /dev/null +++ b/project/Better MC [FORGE] 1.19.2 v13/config/ftbquests/quests/reward_tables/end_quest.snbt @@ -0,0 +1,10 @@ +{ + id: "60406D60038871E3" + order_index: 0 + title: "End Quest" + loot_size: 1 + rewards: [ + { title: "&616x 光灵箭", item: "minecraft:spectral_arrow", count: 16 } + { title: "&c2x 床", item: "minecraft:red_bed", count: 2 } + ] +}