From 0b879fc99e039968e1933eaa7ee83dac2a13acc3 Mon Sep 17 00:00:00 2001 From: nageih Date: Wed, 21 Dec 2022 11:05:33 +0800 Subject: [PATCH 1/2] Create Chinese Localization Create Chinese Localization --- .../blissguide/zh_cn/categories/gossip.json | 6 + .../blissguide/zh_cn/categories/intro.json | 6 + .../zh_cn/categories/vanilla_changes.json | 6 + .../entries/gossip/animal_transport.json | 18 + .../gossip/automatic_block_breaking.json | 18 + .../entries/gossip/automatic_breeding.json | 18 + .../entries/gossip/beacon_redirection.json | 18 + .../entries/gossip/bigger_inventory.json | 18 + .../zh_cn/entries/gossip/day_skipping.json | 18 + .../zh_cn/entries/gossip/faster_smelting.json | 18 + .../zh_cn/entries/gossip/lissa.json | 16 + .../zh_cn/entries/gossip/locating_biomes.json | 18 + .../entries/gossip/locating_fortresses.json | 18 + .../entries/gossip/locating_slime_chunks.json | 18 + .../zh_cn/entries/gossip/mob_repelling.json | 18 + .../zh_cn/entries/gossip/ore_farming.json | 18 + .../zh_cn/entries/gossip/parrot_eggs.json | 18 + .../zh_cn/entries/gossip/player_heads.json | 18 + .../zh_cn/entries/gossip/reach.json | 18 + .../zh_cn/entries/gossip/return_to_death.json | 18 + .../zh_cn/entries/gossip/sawmill.json | 18 + .../entries/gossip/scalable_storage.json | 18 + .../zh_cn/entries/gossip/shiba.json | 18 + .../entries/gossip/villager_catalogue.json | 18 + .../zh_cn/entries/intro/chilled_dragon.json | 14 + .../zh_cn/entries/intro/jei_intro.json | 33 ++ .../entries/intro/matrix_enchanting.json | 38 ++ .../blissguide/zh_cn/entries/intro/mobs.json | 26 ++ .../zh_cn/entries/intro/movement.json | 23 ++ .../zh_cn/entries/intro/starter_kit.json | 12 + .../zh_cn/entries/intro/towers.json | 27 ++ .../zh_cn/entries/intro/video_tutorial.json | 17 + .../zh_cn/entries/intro/welcome.json | 13 + .../zh_cn/entries/intro/wither_changes.json | 18 + .../vanilla_changes/campire_boost.json | 14 + .../vanilla_changes/chain_features.json | 14 + .../vanilla_changes/compass_everywhere.json | 14 + .../vanilla_changes/customizable_bed.json | 14 + .../dispenser_block_placing.json | 14 + .../vanilla_changes/enhanced_banners.json | 14 + .../vanilla_changes/hoe_harvesting.json | 14 + .../vanilla_changes/improved_ladders.json | 14 + .../vanilla_changes/jukebox_automation.json | 14 + .../vanilla_changes/lilypad_topping.json | 14 + .../vanilla_changes/map_decorations.json | 14 + .../entries/vanilla_changes/pig_litters.json | 14 + .../entries/vanilla_changes/piston_buffs.json | 14 + .../vanilla_changes/placeable_items.json | 14 + .../vanilla_changes/pot_all_the_things.json | 14 + .../entries/vanilla_changes/soul_candles.json | 14 + .../vanilla_changes/useful_curses.json | 14 + .../vanilla_changes/villager_herding.json | 14 + .../vanilla_changes/wall_lanterns.json | 14 + .../templates/enchanting_influences.json | 23 ++ .../zh_cn/templates/gossip_book.json | 23 ++ .../zh_cn/templates/gossip_camera.json | 23 ++ .../zh_cn/templates/gossip_explore.json | 23 ++ .../zh_cn/templates/gossip_game.json | 23 ++ .../zh_cn/templates/gossip_love.json | 23 ++ .../zh_cn/templates/incl/candles.json | 345 ++++++++++++++++++ .../zh_cn/templates/incl/gossip_base.json | 29 ++ .../zh_cn/templates/incl/tuber.json | 36 ++ .../zh_cn/templates/lissa_full.json | 30 ++ .../blissguide/zh_cn/templates/tubers.json | 45 +++ 64 files changed, 1504 insertions(+) create mode 100644 patchouli_books/blissguide/zh_cn/categories/gossip.json create mode 100644 patchouli_books/blissguide/zh_cn/categories/intro.json create mode 100644 patchouli_books/blissguide/zh_cn/categories/vanilla_changes.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/animal_transport.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/automatic_block_breaking.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/automatic_breeding.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/beacon_redirection.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/bigger_inventory.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/day_skipping.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/faster_smelting.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/lissa.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/locating_biomes.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/locating_fortresses.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/locating_slime_chunks.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/mob_repelling.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/ore_farming.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/parrot_eggs.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/player_heads.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/reach.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/return_to_death.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/sawmill.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/scalable_storage.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/shiba.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/gossip/villager_catalogue.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/chilled_dragon.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/jei_intro.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/matrix_enchanting.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/mobs.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/movement.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/starter_kit.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/towers.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/video_tutorial.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/welcome.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/intro/wither_changes.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/campire_boost.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/chain_features.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/compass_everywhere.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/customizable_bed.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/dispenser_block_placing.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/enhanced_banners.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/hoe_harvesting.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/improved_ladders.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/jukebox_automation.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/lilypad_topping.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/map_decorations.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pig_litters.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/piston_buffs.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/placeable_items.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pot_all_the_things.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/soul_candles.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/useful_curses.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/villager_herding.json create mode 100644 patchouli_books/blissguide/zh_cn/entries/vanilla_changes/wall_lanterns.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/enchanting_influences.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/gossip_book.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/gossip_camera.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/gossip_explore.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/gossip_game.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/gossip_love.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/incl/candles.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/incl/gossip_base.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/incl/tuber.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/lissa_full.json create mode 100644 patchouli_books/blissguide/zh_cn/templates/tubers.json diff --git a/patchouli_books/blissguide/zh_cn/categories/gossip.json b/patchouli_books/blissguide/zh_cn/categories/gossip.json new file mode 100644 index 0000000..d979149 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/categories/gossip.json @@ -0,0 +1,6 @@ +{ + "name": "Lissa的建议", + "description": "$(lissa)Lissa$()会时不时地出现,当您完成整合包包中的进度时,它会建议您尝试一些很酷的功能.$(br2)密切关注$(#ff0000)(!)$()在您物品栏的书上!", + "icon": "minecraft:compass", + "sortnum": 1 +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/categories/intro.json b/patchouli_books/blissguide/zh_cn/categories/intro.json new file mode 100644 index 0000000..5ef51ec --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/categories/intro.json @@ -0,0 +1,6 @@ +{ + "name": "引子", + "description": "在这里学习$(thing)Bliss$()整合包的窍门$(br2)随着时间的推移,其他重要信息将在您继续玩游戏时显示.", + "icon": "minecraft:filled_map", + "sortnum": 0 +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/categories/vanilla_changes.json b/patchouli_books/blissguide/zh_cn/categories/vanilla_changes.json new file mode 100644 index 0000000..58cad9d --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/categories/vanilla_changes.json @@ -0,0 +1,6 @@ +{ + "name": "原版的变动", + "description": "本节展示了原版游戏的一些重要变化$(br2)不要担心一下子读完这些内容-但如果有什么不同的地方,请过来看看.", + "icon": "minecraft:writable_book", + "sortnum": 2 +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/animal_transport.json b/patchouli_books/blissguide/zh_cn/entries/gossip/animal_transport.json new file mode 100644 index 0000000..2d8abe5 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/animal_transport.json @@ -0,0 +1,18 @@ +{ + "name": "动物运输", + "icon": "minecraft:feather", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:husbandry/breed_an_animal", + "pages": [ + { + "type": "patchouli:gossip_game", + "title": "动物运输", + "text": "你可以偷偷把一些小动物放在$(item)笼子$()里吗?这是移动它们的好方法!" + }, + { + "type": "quest", + "text": "制作一些$(item)笼子$(),并用它们运输小动物." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/automatic_block_breaking.json b/patchouli_books/blissguide/zh_cn/entries/gossip/automatic_block_breaking.json new file mode 100644 index 0000000..d950100 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/automatic_block_breaking.json @@ -0,0 +1,18 @@ +{ + "name": "自动破坏方块", + "icon": "minecraft:diamond_pickaxe", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/smelt_iron", + "pages": [ + { + "type": "patchouli:gossip_book", + "title": "自动破坏方块", + "text": "你可以用$(item)活塞$()来打破方块吗?这也很容易,你所要做的就是给它们附加一个$(thing)方块采掘器$()..." + }, + { + "type": "quest", + "text": "了解$(thing)方块采掘器$()是什么,并使用$(item)活塞$(),用它制作一些很酷的自动化农场." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/automatic_breeding.json b/patchouli_books/blissguide/zh_cn/entries/gossip/automatic_breeding.json new file mode 100644 index 0000000..e15ff56 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/automatic_breeding.json @@ -0,0 +1,18 @@ +{ + "name": "自动化繁殖", + "icon": "minecraft:wheat", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:husbandry/breed_an_animal", + "pages": [ + { + "type": "patchouli:gossip_love", + "title": "自动化繁殖", + "text": "你可以设置一个$(thing)喂食器$()供动物食用,而不必一直带食物?" + }, + { + "type": "quest", + "text": "." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/beacon_redirection.json b/patchouli_books/blissguide/zh_cn/entries/gossip/beacon_redirection.json new file mode 100644 index 0000000..92014d7 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/beacon_redirection.json @@ -0,0 +1,18 @@ +{ + "name": "信标扭曲", + "icon": "minecraft:beacon", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:nether/create_beacon", + "pages": [ + { + "type": "patchouli:gossip_camera", + "title": "信标扭曲", + "text": "您可以使用$(item)刚玉簇$()来扭曲$(item)信标$()光束吗?只要在最后一个上,你就可以做出奇妙的改变!" + }, + { + "type": "quest", + "text": "挖取一些$(item)刚玉簇$(),使您的$(item)信标$()的光束消失失失" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/bigger_inventory.json b/patchouli_books/blissguide/zh_cn/entries/gossip/bigger_inventory.json new file mode 100644 index 0000000..0c33edf --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/bigger_inventory.json @@ -0,0 +1,18 @@ +{ + "name": "更大的物品栏", + "icon": "minecraft:chest", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/smelt_iron", + "pages": [ + { + "type": "patchouli:gossip_book", + "title": "更大的物品栏", + "text": "你可以制作一些东西来帮助你携带更多的东西!你知道,你的物品栏如此之少真是太可惜了?" + }, + { + "type": "quest", + "text": "想办法增加物品栏空间$(br2)也许在$(thing)JEI$()上搜索会有所帮助...?" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/day_skipping.json b/patchouli_books/blissguide/zh_cn/entries/gossip/day_skipping.json new file mode 100644 index 0000000..7ec5fe0 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/day_skipping.json @@ -0,0 +1,18 @@ +{ + "name": "跳过一天", + "icon": "minecraft:pink_bed", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:adventure/sleep_in_bed", + "pages": [ + { + "type": "patchouli:gossip_book", + "title": "跳过一天", + "text": "你可以睡在$(item)吊床$()上跳过这一天吗?它甚至不会设置你的出生点!" + }, + { + "type": "quest", + "text": "在$(item)吊床$()上放松一下,睡一整天!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/faster_smelting.json b/patchouli_books/blissguide/zh_cn/entries/gossip/faster_smelting.json new file mode 100644 index 0000000..f3f5d0e --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/faster_smelting.json @@ -0,0 +1,18 @@ +{ + "name": "更快的熔炼", + "icon": "minecraft:furnace", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:nether/root", + "pages": [ + { + "type": "patchouli:gossip_love", + "title": "更快的熔炼", + "text": "你能在$(thing)下界$()中找到火辣的狗吗?如果你驯服一只,让它停在一个$(item)熔炉$()上,它会使它跑得更快!" + }, + { + "type": "quest", + "text": "给自己准备一个热狗,带回家闻一闻$(br2)你可以用$(item)煤炭$()驯服它们,但你也需要$(thing)抗火$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/lissa.json b/patchouli_books/blissguide/zh_cn/entries/gossip/lissa.json new file mode 100644 index 0000000..8ae05a1 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/lissa.json @@ -0,0 +1,16 @@ +{ + "name": "遇见Lissa", + "icon": "minecraft:poppy", + "category": "patchouli:gossip", + "priority": true, + "read_by_default": false, + "pages": [ + { + "type": "patchouli:lissa_full" + }, + { + "type": "text", + "text": "嗨,我是$(lissa)lissa$()!我将为您介绍$(thing)Bliss$()的额外内容$(br2)在指南的$(lissa)lissa的建议$()部分,您可以找到我对您应该尝试的我喜欢的功能的想法$(br2)随着游戏的进行,会有更多内容解锁,所以请务必留意$(br2)我为$(l:https://twitter.com/_crowsaga)$(underline)aice$(),为julinya、aice和vazkii之间的联合努力!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/locating_biomes.json b/patchouli_books/blissguide/zh_cn/entries/gossip/locating_biomes.json new file mode 100644 index 0000000..dba9f1b --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/locating_biomes.json @@ -0,0 +1,18 @@ +{ + "name": "定位生物群系", + "icon": "minecraft:map", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:adventure/trade", + "pages": [ + { + "type": "patchouli:gossip_explore", + "title": "定位生物群系", + "text": "村庄的制图师正在出售特定的生物群系地图。有这么多很酷的地方要找,你应该去看看!" + }, + { + "type": "quest", + "text": "获取一些生物群系地图,然后开始一段旅程。别忘了给我看战利品!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/locating_fortresses.json b/patchouli_books/blissguide/zh_cn/entries/gossip/locating_fortresses.json new file mode 100644 index 0000000..0da4adb --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/locating_fortresses.json @@ -0,0 +1,18 @@ +{ + "name": "定位要塞", + "icon": "minecraft:nether_wart", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:nether/root", + "pages": [ + { + "type": "patchouli:gossip_camera", + "title": "定位要塞", + "text": "你可以很容易地找到一个$(thing)下界要塞$()吗?是 啊只要去到一个$(thing)灵魂沙峡谷$(),那里的灵魂会带给你需要的物品." + }, + { + "type": "quest", + "text": "想办法在$(thing)灵魂沙峡谷$()中定位$(thing)下界要塞$().$(br2)你可能需要为此挥舞一把剑,所以要做好准备!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/locating_slime_chunks.json b/patchouli_books/blissguide/zh_cn/entries/gossip/locating_slime_chunks.json new file mode 100644 index 0000000..4687b00 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/locating_slime_chunks.json @@ -0,0 +1,18 @@ +{ + "name": "定位史莱姆区块", + "icon": "minecraft:slime_ball", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/mine_diamond", + "pages": [ + { + "type": "patchouli:gossip_love", + "title": "定位史莱姆区块", + "text": "微小的史莱姆喜欢$(thing)史莱姆区块$().如果您可以捕获其中一个团簇,它可能会引导您找到一个." + }, + { + "type": "quest", + "text": "找到一种方法,你可以捕获微小的史莱姆,并用它们来定位它们的生成地." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/mob_repelling.json b/patchouli_books/blissguide/zh_cn/entries/gossip/mob_repelling.json new file mode 100644 index 0000000..4bebd20 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/mob_repelling.json @@ -0,0 +1,18 @@ +{ + "name": "怪物驱逐", + "icon": "minecraft:skeleton_skull", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:nether/get_wither_skull", + "pages": [ + { + "type": "patchouli:gossip_explore", + "title": "怪物驱逐", + "text": "怪物都非常害怕自己的头?真是疯了,如果你把一个怪物的头放在栅栏上,他们会像小鸡一样逃跑!" + }, + { + "type": "quest", + "text": "想办法用怪物的头颅击退怪物.$(br2)哦,每个人都知道$(thing)凋灵骷髅$()总是掉落头颅,而$(item)龙首$()都是便宜的假货,所以不要为这些费心." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/ore_farming.json b/patchouli_books/blissguide/zh_cn/entries/gossip/ore_farming.json new file mode 100644 index 0000000..e374ea4 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/ore_farming.json @@ -0,0 +1,18 @@ +{ + "name": "矿石农场", + "icon": "minecraft:iron_nugget", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/mine_diamond", + "pages": [ + { + "type": "patchouli:gossip_camera", + "title": "矿石农场", + "text": "有个$(thing)乌龟$()在地下生成?你可以用镐子挖掘他们的矿石,如果你喂他们$(thing)发光浆果$(),他们就会重新生长!" + }, + { + "type": "quest", + "text": "使用$(thing)乌龟$()自动生成矿石$(br2)您甚至可以使用与自动破坏方块相同的东西." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/parrot_eggs.json b/patchouli_books/blissguide/zh_cn/entries/gossip/parrot_eggs.json new file mode 100644 index 0000000..6bc2913 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/parrot_eggs.json @@ -0,0 +1,18 @@ +{ + "name": "鹦鹉繁殖", + "icon": "minecraft:egg", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:husbandry/breed_an_animal", + "pages": [ + { + "type": "patchouli:gossip_love", + "title": "鹦鹉繁殖", + "text": "如果你给你的$(thing)鹦鹉$()朋友一些$(item)甜菜种子$(),他们可能会为你下蛋?谁知道它从哪里来?" + }, + { + "type": "quest", + "text": "使用$(item)甜菜种子$()获得一些$(item)鹦鹉蛋$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/player_heads.json b/patchouli_books/blissguide/zh_cn/entries/gossip/player_heads.json new file mode 100644 index 0000000..7804778 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/player_heads.json @@ -0,0 +1,18 @@ +{ + "name": "玩家的头", + "icon": "minecraft:player_head", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:adventure/kill_a_mob", + "pages": [ + { + "type": "patchouli:gossip_explore", + "title": "玩家的头", + "text": "如果你用一个玩家的名字命名一个$(thing)雪傀儡$(),然后让一个$(thing)女巫$()杀死它,它会掉落那个玩家的头?" + }, + { + "type": "quest", + "text": "使用一个命名的$(thing)雪傀儡$()和一个$(thing)女巫$()获得一个您选择的$(item)玩家的头$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/reach.json b/patchouli_books/blissguide/zh_cn/entries/gossip/reach.json new file mode 100644 index 0000000..b84d71f --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/reach.json @@ -0,0 +1,18 @@ +{ + "name": "更长的触及范围", + "icon": "minecraft:piston", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/mine_diamond", + "pages": [ + { + "type": "patchouli:gossip_game", + "title": "更长的触及范围", + "text": "一个超级强大的发光$(thing)怪物$()住在地下?我自己从来没见过,但很明显它的帽子让你可以把方块放得很远." + }, + { + "type": "quest", + "text": "遇到特殊的地下怪物$(thing)Monster$()并获得它的帽子.$(br2)显然它很强大,知道战斗技巧,所以不要在那里重生!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/return_to_death.json b/patchouli_books/blissguide/zh_cn/entries/gossip/return_to_death.json new file mode 100644 index 0000000..9b23735 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/return_to_death.json @@ -0,0 +1,18 @@ +{ + "name": "返回死亡点", + "icon": "minecraft:compass", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:nether/root", + "pages": [ + { + "type": "patchouli:gossip_game", + "title": "返回死亡点", + "text": "当你死后,你所有的东西都被一个友好的$(thing)图腾$()保存?您甚至可以制作一个特殊的$(item)指南针$()来定位它." + }, + { + "type": "quest", + "text": "制作一个特殊的$(item)指南针$(),以帮助您在死亡时找到物品." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/sawmill.json b/patchouli_books/blissguide/zh_cn/entries/gossip/sawmill.json new file mode 100644 index 0000000..fde2017 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/sawmill.json @@ -0,0 +1,18 @@ +{ + "name": "木材切削", + "icon": "minecraft:stonecutter", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/smelt_iron", + "pages": [ + { + "type": "patchouli:gossip_game", + "title": "木材切削", + "text": "石头不是你唯一能切割的东西吗?这是正确的!试试$(item)锯木机$(),好好利用你所有的木材." + }, + { + "type": "quest", + "text": "使用$(item)锯木机$()能更有效地将木方块切割成其变体." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/scalable_storage.json b/patchouli_books/blissguide/zh_cn/entries/gossip/scalable_storage.json new file mode 100644 index 0000000..1dd83de --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/scalable_storage.json @@ -0,0 +1,18 @@ +{ + "name": "可扩展存储", + "icon": "minecraft:barrel", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:story/smelt_iron", + "pages": [ + { + "type": "patchouli:gossip_book", + "title": "可扩展存储", + "text": "您可以将物品存储在更大的$(item)箱子$()?如果你有很多不同的物品,你可能想发明一种新型的$(thing)存储方块$()." + }, + { + "type": "quest", + "text": "找到可以存储许多不同物品的特殊$(thing)存储方块$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/shiba.json b/patchouli_books/blissguide/zh_cn/entries/gossip/shiba.json new file mode 100644 index 0000000..f9f8627 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/shiba.json @@ -0,0 +1,18 @@ +{ + "name": "关照检测", + "icon": "minecraft:torch", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:husbandry/tame_an_animal", + "pages": [ + { + "type": "patchouli:gossip_explore", + "title": "光照检测", + "text": "你能驯服一些非常可爱的$(thing)山地狗$()吗?当你得到一个时,你可以拿着一把$(item)火把$(),然后他们会去寻找怪物可以生成的地方!" + }, + { + "type": "quest", + "text": "驯服山地生物群系中的一只$(thing)柴犬$(),让它为你找到黑暗地区." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/gossip/villager_catalogue.json b/patchouli_books/blissguide/zh_cn/entries/gossip/villager_catalogue.json new file mode 100644 index 0000000..79c6ebf --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/gossip/villager_catalogue.json @@ -0,0 +1,18 @@ +{ + "name": "村民目录", + "icon": "minecraft:emerald", + "category": "patchouli:gossip", + "read_by_default": false, + "advancement": "minecraft:adventure/trade", + "pages": [ + { + "type": "patchouli:gossip_camera", + "title": "玩家的头", + "text": "您可以制作一个$(item)贸易站$()方块吗?然后你可以使用它一次性与周围的每一个$(item)村民$()进行交易!" + }, + { + "type": "quest", + "text": "使用$(item)贸易站$()方块买买买." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/chilled_dragon.json b/patchouli_books/blissguide/zh_cn/entries/intro/chilled_dragon.json new file mode 100644 index 0000000..63f51f6 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/chilled_dragon.json @@ -0,0 +1,14 @@ +{ + "name": "放松的龙", + "icon": "minecraft:dragon_head", + "category": "patchouli:intro", + "read_by_default": false, + "advancement": "minecraft:story/follow_ender_eye", + "sortnum": 7, + "pages": [ + { + "type": "text", + "text": "不要为$(thing)末影龙$()焦虑,因为它不会攻击你。当进入$(thing)末地$()时,返回主世界的传送门将已经打开,还有几个$(thing)末地折跃门$().$(br2)如果你想要龙蛋,那么就..." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/jei_intro.json b/patchouli_books/blissguide/zh_cn/entries/intro/jei_intro.json new file mode 100644 index 0000000..4b9f803 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/jei_intro.json @@ -0,0 +1,33 @@ +{ + "name": "JEI简介", + "icon": "minecraft:compass", + "category": "patchouli:intro", + "priority": true, + "sortnum": 2, + "pages": [ + { + "type": "text", + "text": "简单介绍一下,让我们谈谈如何探索$(thing)Bliss$()提供的新内容.$(br2)打开物品栏时,您可能已经注意到屏幕右侧有一个大的物品列表.如果你是一个mod老手,这没有什么新鲜的.但对于新手来说,我们称之为$(item)JEI$()($(item)Just Enough Items$())" + }, + { + "type": "text", + "text": "在这里,您可以看到游戏中的每个相关物品.我们冒昧地隐藏了无关的内容(稍后再感谢我们!)$(br2)您可以左键单击某个物品以查看其制作过程,也可以右键单击物品以查看可以制作的东西。分别按$(thing)R$()和$(thing)U$()键也能做到相同的事情." + }, + { + "type": "text", + "text": "然而,在$(thing)Bliss$()中,我们还引入了一些额外的系统来帮助您找到所需的内容.$(br2)除了能够按名称搜索物品外,您还可以通过$(thing)分类$(),$(thing)颜色$()或同时按这两种方式搜索物品!$(br2)例如.您完全可以只键入$(item)Red Building Blocks$(),然后就可以在列表上找到它.很酷,不是吗?" + }, + { + "type": "text", + "text": "一些可用的类别如下:$(br) $(li)Building Blocks$(li)Decorative Blocks$(li)Variant Blocks$(li)Functional Blocks$(li)Technical Blocks$(li)Crops$(li)Food Items$(li)Utility Items$(br2)在你空闲的时候可以到处搜索,你可以找到很多其他的东西." + }, + { + "type": "text", + "text": "找到喜欢的内容后,可以将其添加书签,方法是将鼠标悬停在$(item)JEI$()中,然后按$(thing)A$()键。这可以把它放在侧面板上,你可以随时查看它$(br2)如果您想记下下一步要做的事情,或者只想记住一些事情,请尝试在输入名称时按$(thing)N$(),这将打开一个新的$(item)笔记$()面板,您可以在其中写下您需要的任何内容。您甚至可以将注释固定到屏幕上!" + }, + { + "type": "text", + "text": "就像final pointer一样,当您在$(item)JEI$()中单击它们时,许多物品都会附加一个$(thing)信息栏$(),所以即使某些东西看起来不是可合成的,或者您不知道它的用处,也可以考虑检查它的配方或用途." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/matrix_enchanting.json b/patchouli_books/blissguide/zh_cn/entries/intro/matrix_enchanting.json new file mode 100644 index 0000000..264614e --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/matrix_enchanting.json @@ -0,0 +1,38 @@ +{ + "name": "矩阵附魔", + "icon": "minecraft:enchanting_table", + "category": "patchouli:intro", + "read_by_default": false, + "advancement": "minecraft:story/form_obsidian", + "sortnum": 5, + "pages": [ + { + "type": "text", + "text": "$(thing)Bliss$()使用了一个名为$(thing)矩阵附魔$()的新附魔系统。此系统允许您更好地定制您在工具上添加的附魔,但需要花费更多的经验和青金石$(br2)作为一项额外功能,附魔台将保留您的物品和青金石,很好地去除." + }, + { + "type": "image", + "images": [ + "patchouli:matrix_enchanting.png" + ], + "title": "附魔UI", + "border": true, + "text": "$(thing)矩阵附魔$()界面." + }, + { + "type": "text", + "text": "要开始附魔,首先把你的物品放在左上角的格子中,然后把你的青金石放在它下面的格子中$(br2)然后您可以按显示的$(bold)+$()按钮添加新附魔。附魔将显示在侧面板上,这意味着它可以被选中了$(br2)要选择附魔,只需在侧面板中单击它,然后在5x5网格上单击它." + }, + { + "type": "text", + "text": "正如你所料,附魔\"方块\"不能在彼此的上方,所以你需要小心放置它们。您可以通过右键旋转所选碎片$(br2)网格中不能有多个同一附魔。如果你想增加附魔的等级,从侧面板中选择一块具有相同附魔的物品,并在你已经放置的物品上左键." + }, + { + "type": "text", + "text": "当然,你升级的附魔越多,你需要的同一块就越多$(br2)请记住,不兼容的方块不会出现。所以,如果你的目标是一把锋利的剑,你可能会认为如果你看到亡灵杀手,你就看不到它了$(br2)当你附完魔后,只需拖出被附魔的物品,你就完成了!" + }, + { + "type": "patchouli:enchanting_influences" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/mobs.json b/patchouli_books/blissguide/zh_cn/entries/intro/mobs.json new file mode 100644 index 0000000..13a8177 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/mobs.json @@ -0,0 +1,26 @@ +{ + "name": "怪物和你", + "icon": "minecraft:iron_sword", + "sortnum": 2, + "priority": false, + "read_by_default": true, + "category": "patchouli:intro", + "pages": [ + { + "type": "text", + "text": "以下是$(thing)Welcome to Bliss$()窗口上的信息提醒。了解怪物...$(br)$(li)不会攻击你,除非先被攻击$(li)不会在任何露天的方块生成,除非是在雷雨天气$(li)不会以有害的方式损坏你的世界(苦力怕,末影人等)." + }, + { + "type": "text", + "text": "游戏的其他调整包括...$(br)$(li)$(thing)村民$()必定在$(item)普通$()难度下转换为$(thing)僵尸村民$()$(li)$(thing)蜘蛛$()不会生成,所有$(thing)蜘蛛刷怪笼$(li)$(thing)被$(thing)苦力怕刷怪笼$()替换(洞穴蜘蛛刷怪笼$()仍然生成).$(li)$(thing)火焰蔓延$()已被禁用.$(li)$(thing)掠夺者灾厄巡逻队$()已被禁用." + }, + { + "type": "text", + "text": "如果你想放松一下,但仍然有挑战的话,试着找一个$(item)堡垒$(),$(item)林地府邸$()或$(item)掠夺者前哨站$()$(br2)这些建筑被视为$(thing)守卫$(),因此,里面的怪物仍然会攻击$(br2)第一次进入这些建筑时,系统会提醒您,所以不要太担心." + }, + { + "type": "text", + "text": "最后,可以通过改变游戏难度来调整游戏风格$(br2)在$(li)简单$()难度中,守卫结构不再产生仇恨$(li)在$(thing)困难$()难度中,怪物恢复了主动攻击的能力." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/movement.json b/patchouli_books/blissguide/zh_cn/entries/intro/movement.json new file mode 100644 index 0000000..70a5422 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/movement.json @@ -0,0 +1,23 @@ +{ + "name": "移动升级", + "icon": "minecraft:leather_boots", + "category": "patchouli:intro", + "read_by_default": false, + "advancement": "minecraft:story/upgrade_tools", + "sortnum": 4, + "pages": [ + { + "type": "text", + "text": "$(thing)Bliss$()中提供了一些额外的移动选项:$(br)$(li)按住$(thing)C$()将允许您$(think)趴下$(),使您只占用一个方块.当你靠近一个方块时$(li)$(thing)潜行$(),会让你$(thing)wall grab$(),只要你靠近墙,就会慢慢下降." + }, + { + "type": "image", + "images": [ + "patchouli:wall_jump.png" + ], + "title": "飞檐走壁", + "border": true, + "text": "在$(thing)wall grabbing$()的同时跳跃将$(thing)飞檐走壁$(),最高可达到3个方块!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/starter_kit.json b/patchouli_books/blissguide/zh_cn/entries/intro/starter_kit.json new file mode 100644 index 0000000..b83137c --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/starter_kit.json @@ -0,0 +1,12 @@ +{ + "name": "新手包", + "icon": "minecraft:chest", + "category": "patchouli:intro", + "sortnum": 1, + "pages": [ + { + "type": "text", + "text": "如果您不知道如何开始游玩$(thing)Bliss$(),请打开您的$(thing)JEI$()并搜索$(item)Starter Kit$()。您将看到一些要查看的物品,所以请单击任何吸引您注意的物品$(br2)试试看!" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/towers.json b/patchouli_books/blissguide/zh_cn/entries/intro/towers.json new file mode 100644 index 0000000..cd07fb7 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/towers.json @@ -0,0 +1,27 @@ +{ + "name": "旷野之塔", + "icon": "paraglider:paraglider", + "category": "patchouli:intro", + "read_by_default": false, + "advancement": "minecraft:adventure/sleep_in_bed", + "sortnum": 3, + "pages": [ + { + "type": "text", + "text": "纵观整个世界,你很少会发现新的$(thing)旷野之塔$()。这些高大的建筑顶部有一个$(item)传送石碑$(),以及一些战利品$(br2)$(item)传送石碑$()可用于在塔之间传送。只需右键一个,然后选择要去的地方。你只能在你已经发现的传送石碑之间传送。虽然!" + }, + { + "type": "image", + "images": [ + "patchouli:wild_towers.png" + ], + "title": "旷野之塔", + "border": true, + "text": "一个$(thing)旷野之塔$(),以及你可以从中获得的战利品." + }, + { + "type": "text", + "text": "在每个$(item)旷野之塔$()的箱子里,你会发现至少有一个$(item)滑翔伞$()-当你拿着这个物品时,它们可以缓慢滑翔下来,并在空中滑翔很远的距离$(br2)最后,请注意,虽然您可以破坏$(item)传送石碑$(),但您$(l)无法获得它$()如果你尝试这样做,你只会摧毁它,就像一个$(item)怪物刷怪笼$()." + } + ] +} diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/video_tutorial.json b/patchouli_books/blissguide/zh_cn/entries/intro/video_tutorial.json new file mode 100644 index 0000000..fc8cbec --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/video_tutorial.json @@ -0,0 +1,17 @@ +{ + "name": "视频教程", + "icon": "minecraft:music_disc_13", + "category": "patchouli:intro", + "read_by_default": true, + "priority": true, + "sortnum": 1, + "pages": [ + { + "type": "text", + "text": "如果你不是一个爱读书的人,你可以从$(thing)Bliss$()开始,看看这些了不起的人在下一页做的视频。$(br2)$(thing)direwolf20$()的视频是一个简短的入门指南,里面有你需要知道的关于这个包的信息,而$(thing)Vallen$()的视频是对这个包的全面概述和回顾。任选其一,或者两者都选!" + }, + { + "type": "patchouli:tubers" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/welcome.json b/patchouli_books/blissguide/zh_cn/entries/intro/welcome.json new file mode 100644 index 0000000..28b6da5 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/welcome.json @@ -0,0 +1,13 @@ +{ + "name": "欢迎游玩Bliss", + "icon": "minecraft:writable_book", + "sortnum": 0, + "priority": true, + "category": "patchouli:intro", + "pages": [ + { + "type": "text", + "text": "欢迎游玩$(thing)Bliss整合包$()!这本书会向你介绍一些诀窍,这样你就可以开始游玩$(br2)本书中包含的信息专门设计为简短和有用,以免您在这里停留太久,因此请务必注意!如果您在单人游戏中,您的游戏将暂停." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/intro/wither_changes.json b/patchouli_books/blissguide/zh_cn/entries/intro/wither_changes.json new file mode 100644 index 0000000..9558f1e --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/intro/wither_changes.json @@ -0,0 +1,18 @@ +{ + "name": "凋灵的改变", + "icon": "minecraft:wither_skeleton_skull", + "category": "patchouli:intro", + "read_by_default": false, + "advancement": "minecraft:nether/get_wither_skull", + "sortnum": 6, + "pages": [ + { + "type": "text", + "text": "为了让$(thing)凋灵$()变得不那么吓人,$(thing)Bliss$()为你提供了一个新武器:$(thing)雪傀儡$().$(br2)这是很有效的$(thing)雪傀儡$()现在对$(thing)凋灵$()超级有效。堆上一堆就能很快干掉怪物!注意它仍然会破坏地形,所以要小心你在哪里生成它!" + }, + { + "type": "text", + "text": "此外,$(thing)凋灵$()战斗也会根据你的游戏难度设置进行改变:$(br)$(li)在$(thing)简单$()难度中,它根本不会生成,相反地,你只需通过制作结构来获得$(item)下界之星$().$(li)在$(thing)困难$()难度中,boss将恢复对雪的免疫力,所以你必须与之进行适当的战斗." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/campire_boost.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/campire_boost.json new file mode 100644 index 0000000..5282459 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/campire_boost.json @@ -0,0 +1,14 @@ +{ + "name": "营火加速", + "icon": "minecraft:campfire", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:campfire", + "title": "营火加速", + "text": "穿着$(item)鞘翅$()飞过$(item)下面带着$(item)干草块$()的营火$()可以让你快速提升高度,$(br2)而$(item)灵魂营火$()则相反,它会把你拉下来." + } + ] +} diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/chain_features.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/chain_features.json new file mode 100644 index 0000000..895f3d4 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/chain_features.json @@ -0,0 +1,14 @@ +{ + "name": "锁链移动", + "icon": "minecraft:chain", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:chain", + "title": "锁链移动", + "text": "当移动$(item)活塞$()时,如果放在它们之间,$(item)锁链$()可以连接多个方块在一起." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/compass_everywhere.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/compass_everywhere.json new file mode 100644 index 0000000..c40a763 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/compass_everywhere.json @@ -0,0 +1,14 @@ +{ + "name": "无处不在的指南针", + "icon": "minecraft:compass", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:compass", + "title": "无处不在的指南针", + "text": "$(item)指南针$()现在可以在$(thing)下界$()和$()末地$()中使用。在$(thing)下界$()中它会指向你进入的地方,或在$(thing)末地()中指向离开的地方." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/customizable_bed.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/customizable_bed.json new file mode 100644 index 0000000..48276b1 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/customizable_bed.json @@ -0,0 +1,14 @@ +{ + "name": "可定制的床", + "icon": "minecraft:red_bed", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:red_bed", + "title": "可定制的床", + "text": "$(item)床$()现在可以自定义$(item)旗帜$(),所以你可以进一步装饰你的生活空间." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/dispenser_block_placing.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/dispenser_block_placing.json new file mode 100644 index 0000000..06a86c2 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/dispenser_block_placing.json @@ -0,0 +1,14 @@ +{ + "name": "发射器放置方块", + "icon": "minecraft:dispenser", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:dispenser", + "title": "发射器放置方块", + "text": "$(item)发射器$()现在可以放置任何方块。方块也以正确的方向放置." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/enhanced_banners.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/enhanced_banners.json new file mode 100644 index 0000000..9601939 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/enhanced_banners.json @@ -0,0 +1,14 @@ +{ + "name": "附魔旗帜", + "icon": "minecraft:pink_banner", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:pink_banner", + "title": "附魔旗帜", + "text": "$(item)附魔$()现在可以从天花板、地板和墙壁上悬挂。$(item)旗帜图案$()也可以堆叠到16层,而不是原版的6层." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/hoe_harvesting.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/hoe_harvesting.json new file mode 100644 index 0000000..e799e72 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/hoe_harvesting.json @@ -0,0 +1,14 @@ +{ + "name": "收获锄", + "icon": "minecraft:diamond_hoe", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:diamond_hoe", + "title": "收获锄", + "text": "$(item)锄头$()现在可以用来破坏3x3面积内的植被。$(item)钻石锄和下界合金锄$()可以打破5x5。$(br2)此外,你可以右键作物收割和重新种植;使用$(item)锄头$()收割相应的区域." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/improved_ladders.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/improved_ladders.json new file mode 100644 index 0000000..2b87de1 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/improved_ladders.json @@ -0,0 +1,14 @@ +{ + "name": "增强梯子", + "icon": "minecraft:ladder", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:ladder", + "title": "增强梯子", + "text": "$(item)梯子$()现在可以通过右键一个放置的梯子和另一个梯子顺着向下移动。这可以使梯子独立而没有后面的障碍物。你也可以通过向下看快速滑下去." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/jukebox_automation.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/jukebox_automation.json new file mode 100644 index 0000000..00f6d0e --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/jukebox_automation.json @@ -0,0 +1,14 @@ +{ + "name": "自动唱片机", + "icon": "minecraft:jukebox", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:jukebox", + "title": "自动唱片机", + "text": "$(item)唱片机$()现在可以自动播放音乐,通过一个$(item)发射器$()面向它。要取出唱片,可以从底部使用$(item)漏斗$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/lilypad_topping.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/lilypad_topping.json new file mode 100644 index 0000000..5f5fd53 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/lilypad_topping.json @@ -0,0 +1,14 @@ +{ + "name": "睡莲之上", + "icon": "minecraft:lily_pad", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:lily_pad", + "title": "睡莲之上", + "text": "方块现在可以放在$(item)睡莲$()上面。尝试使用$(item)火把$()和更多方块." + } + ] +} diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/map_decorations.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/map_decorations.json new file mode 100644 index 0000000..055897b --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/map_decorations.json @@ -0,0 +1,14 @@ +{ + "name": "地图装饰", + "icon": "minecraft:filled_map", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:filled_map", + "title": "地图装饰", + "text": "额外的装饰可以添加到$(item)地图$().$(br2)右键$(item)信标$(),$(item)磁石$(), $(item)重生锚$(),$(item)床$(),$(item)潮涌核心$(),$(item)传送门$(),或$(item)路标$()可将其添加到地图上." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pig_litters.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pig_litters.json new file mode 100644 index 0000000..164c42b --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pig_litters.json @@ -0,0 +1,14 @@ +{ + "name": "猪窝", + "icon": "minecraft:porkchop", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:porkchop", + "title": "猪窝", + "text": "当喂养$(item)猪$()时,你现在会得到一窝小猪,使猪成为更有用的获得食物的动物." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/piston_buffs.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/piston_buffs.json new file mode 100644 index 0000000..799a389 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/piston_buffs.json @@ -0,0 +1,14 @@ +{ + "name": "活塞Buff", + "icon": "minecraft:piston", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:piston", + "title": "活塞Buff", + "text": "$(item)活塞$()现在可以移动两倍的方块,最多24个。它们还能够移动复杂的方块,如$(item)实体方块$()(例如$(item)箱子$(),$(item)熔炉$()等)。$(br2)如果你需要一个不可移动的方块,可以尝试$(item)稳定的石头$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/placeable_items.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/placeable_items.json new file mode 100644 index 0000000..360b467 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/placeable_items.json @@ -0,0 +1,14 @@ +{ + "name": "可放置的物品", + "icon": "minecraft:stick", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:stick", + "title": "可放置的物品", + "text": "以下物品现在可以以方块形式放置:$(li)$(item)木棍$()$(li)$(item)烈焰棒$()$(li)$(item)火药$()$(li)$(item)书籍$()$(li)$(item)附魔书$().$(br2)正如所料,$(item)火药$()也可以被点燃,并点燃相邻的$(item)TNT$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pot_all_the_things.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pot_all_the_things.json new file mode 100644 index 0000000..30304a6 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/pot_all_the_things.json @@ -0,0 +1,14 @@ +{ + "name": "把所有的东西都放进花盆里!", + "icon": "minecraft:flower_pot", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:flower_pot", + "title": "把所有的东西都放进花盆里!", + "text": "$(item)花盆$()现在可以装更多的花和作物,原版的或其他.$(br2)你也可以把它们挂在天花板上,或$(item)锁链$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/soul_candles.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/soul_candles.json new file mode 100644 index 0000000..7c8049f --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/soul_candles.json @@ -0,0 +1,14 @@ +{ + "name": "灵魂蜡烛", + "icon": "minecraft:purple_candle", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:purple_candle", + "title": "灵魂蜡烛", + "text": "在任何类型的$(item)蜡烛$()下放置$(item)灵魂沙$()或任何其他可生成$(item)灵魂火$()的方块将使其发出灵魂风格的蓝色火焰而不是原本的橙色." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/useful_curses.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/useful_curses.json new file mode 100644 index 0000000..eb72ec1 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/useful_curses.json @@ -0,0 +1,14 @@ +{ + "name": "有用的诅咒", + "icon": "minecraft:carved_pumpkin", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:carved_pumpkin", + "title": "有用的诅咒", + "text": "$(thing)诅咒附魔$()现在有一些用途:$(li)一个$(item)南瓜$()带有$(item)消失诅咒$()将不会阻碍你的视野.当$(li)一个命名的带有$(item)绑定诅咒$()的$(item)玩家的头$()放置在$(item)盔甲架$()时将显示该玩家的完整模型." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/villager_herding.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/villager_herding.json new file mode 100644 index 0000000..2d03622 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/villager_herding.json @@ -0,0 +1,14 @@ +{ + "name": "圈养村民", + "icon": "minecraft:emerald_block", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:emerald_block", + "title": "圈养村民", + "text": "$(thing)村民$()现在将跟随持有$(item)绿宝石块$()的玩家,使玩家更容易移动他们." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/wall_lanterns.json b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/wall_lanterns.json new file mode 100644 index 0000000..aed1b80 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/entries/vanilla_changes/wall_lanterns.json @@ -0,0 +1,14 @@ +{ + "name": "墙灯", + "icon": "minecraft:lantern", + "category": "patchouli:vanilla_changes", + "read_by_default": true, + "pages": [ + { + "type": "spotlight", + "item": "minecraft:lantern", + "title": "墙灯", + "text": "$(thing)灯笼$()现在可以挂在墙上,而不仅仅是天花板。你也可以把它们挂在$(item)木杆$()上,旁边是$(item)锁链$()." + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/enchanting_influences.json b/patchouli_books/blissguide/zh_cn/templates/enchanting_influences.json new file mode 100644 index 0000000..245a998 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/enchanting_influences.json @@ -0,0 +1,23 @@ +{ + "include": [ + { + "template": "patchouli:incl/candles", + "as": "incl", + "x": 12, + "y": 15 + } + ], + "components": [ + { + "type": "patchouli:header", + "text": "Candle Influences", + "x": -1, + "y": -1 + }, + { + "type": "patchouli:text", + "text": "Up to 4 candles of one type can be used to make specific enchantments show up more often.", + "y": 110 + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/gossip_book.json b/patchouli_books/blissguide/zh_cn/templates/gossip_book.json new file mode 100644 index 0000000..95ba65d --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/gossip_book.json @@ -0,0 +1,23 @@ +{ + "include": [ + { + "template": "patchouli:incl/gossip_base", + "as": "base", + "using": { + "title": "#title", + "text": "#text" + } + } + ], + "components": [ + { + "type": "patchouli:image", + "x": 1, + "y": 73, + "width": 138, + "height": 150, + "scale": 0.5, + "image": "patchouli:lissa_book.png" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/gossip_camera.json b/patchouli_books/blissguide/zh_cn/templates/gossip_camera.json new file mode 100644 index 0000000..869bc91 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/gossip_camera.json @@ -0,0 +1,23 @@ +{ + "include": [ + { + "template": "patchouli:incl/gossip_base", + "as": "base", + "using": { + "title": "#title", + "text": "#text" + } + } + ], + "components": [ + { + "type": "patchouli:image", + "x": 54, + "y": 75, + "width": 118, + "height": 147, + "scale": 0.5, + "image": "patchouli:lissa_camera.png" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/gossip_explore.json b/patchouli_books/blissguide/zh_cn/templates/gossip_explore.json new file mode 100644 index 0000000..e975e76 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/gossip_explore.json @@ -0,0 +1,23 @@ +{ + "include": [ + { + "template": "patchouli:incl/gossip_base", + "as": "base", + "using": { + "title": "#title", + "text": "#text" + } + } + ], + "components": [ + { + "type": "patchouli:image", + "x": 28, + "y": 75, + "width": 165, + "height": 148, + "scale": 0.5, + "image": "patchouli:lissa_explore.png" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/gossip_game.json b/patchouli_books/blissguide/zh_cn/templates/gossip_game.json new file mode 100644 index 0000000..bc6a7be --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/gossip_game.json @@ -0,0 +1,23 @@ +{ + "include": [ + { + "template": "patchouli:incl/gossip_base", + "as": "base", + "using": { + "title": "#title", + "text": "#text" + } + } + ], + "components": [ + { + "type": "patchouli:image", + "x": 4, + "y": 72, + "width": 140, + "height": 164, + "scale": 0.5, + "image": "patchouli:lissa_game.png" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/gossip_love.json b/patchouli_books/blissguide/zh_cn/templates/gossip_love.json new file mode 100644 index 0000000..985fd7c --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/gossip_love.json @@ -0,0 +1,23 @@ +{ + "include": [ + { + "template": "patchouli:incl/gossip_base", + "as": "base", + "using": { + "title": "#title", + "text": "#text" + } + } + ], + "components": [ + { + "type": "patchouli:image", + "x": 4, + "y": 72, + "width": 218, + "height": 145, + "scale": 0.5, + "image": "patchouli:lissa_love.png" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/incl/candles.json b/patchouli_books/blissguide/zh_cn/templates/incl/candles.json new file mode 100644 index 0000000..e6aa96d --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/incl/candles.json @@ -0,0 +1,345 @@ +{ + "components": [ + { + "type": "patchouli:item", + "item": { + "item": "minecraft:white_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:unbreaking" + } + ] + } + }, + "framed": true, + "x": 0, + "y": 0 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:orange_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:fire_protection" + } + ] + } + }, + "framed": true, + "x": 24, + "y": 0 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:magenta_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:knockback" + }, + { + "lvl": 1, + "id": "minecraft:punch" + } + ] + } + }, + "framed": true, + "x": 48, + "y": 0 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:light_blue_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:feather_falling" + } + ] + } + }, + "framed": true, + "x": 72, + "y": 0 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:yellow_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:looting" + }, + { + "lvl": 1, + "id": "minecraft:fortune" + }, + { + "lvl": 1, + "id": "minecraft:luck_of_the_sea" + } + ] + } + }, + "framed": true, + "x": 0, + "y": 24 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:lime_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:blast_protection" + } + ] + } + }, + "framed": true, + "x": 24, + "y": 24 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:pink_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:silk_touch" + }, + { + "lvl": 1, + "id": "minecraft:channeling" + } + ] + } + }, + "framed": true, + "x": 48, + "y": 24 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:gray_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "farmersdelight:backstabbing" + } + ] + } + }, + "framed": true, + "x": 72, + "y": 24 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:light_gray_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:protection" + } + ] + } + }, + "framed": true, + "x": 0, + "y": 48 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:cyan_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:respiration" + }, + { + "lvl": 1, + "id": "minecraft:loyalty" + }, + { + "lvl": 1, + "id": "minecraft:infinity" + } + ] + } + }, + "framed": true, + "x": 24, + "y": 48 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:purple_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:sweeping" + }, + { + "lvl": 1, + "id": "minecraft:multishot" + } + ] + } + }, + "framed": true, + "x": 48, + "y": 48 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:blue_candle", + "nbt": { + "quark:no_tooltip": true, + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:efficiency" + }, + { + "lvl": 1, + "id": "minecraft:sharpness" + }, + { + "lvl": 1, + "id": "minecraft:lure" + }, + { + "lvl": 1, + "id": "minecraft:power" + }, + { + "lvl": 1, + "id": "minecraft:impaling" + }, + { + "lvl": 1, + "id": "minecraft:quick_charge" + } + ] + } + }, + "framed": true, + "x": 72, + "y": 48 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:brown_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:aqua_affinity" + }, + { + "lvl": 1, + "id": "minecraft:depth_strider" + }, + { + "lvl": 1, + "id": "minecraft:riptide" + } + ] + } + }, + "framed": true, + "x": 0, + "y": 72 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:green_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:thorns" + }, + { + "lvl": 1, + "id": "minecraft:piercing" + } + ] + } + }, + "framed": true, + "x": 24, + "y": 72 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:red_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:fire_aspect" + }, + { + "lvl": 1, + "id": "minecraft:flame" + } + ] + } + }, + "framed": true, + "x": 48, + "y": 72 + }, + { + "type": "patchouli:item", + "item": { + "item": "minecraft:black_candle", + "nbt": { + "Enchantments": [ + { + "lvl": 1, + "id": "minecraft:smite" + }, + { + "lvl": 1, + "id": "minecraft:projectile_protection" + } + ] + } + }, + "framed": true, + "x": 72, + "y": 72 + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/incl/gossip_base.json b/patchouli_books/blissguide/zh_cn/templates/incl/gossip_base.json new file mode 100644 index 0000000..545015f --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/incl/gossip_base.json @@ -0,0 +1,29 @@ +{ + "components": [ + { + "type": "patchouli:header", + "centered": true, + "x": -1, + "y": -1, + "text": "#title" + }, + { + "type": "patchouli:separator", + "x": -1, + "y": -1 + }, + { + "type": "patchouli:header", + "centered": false, + "x": 0, + "y": 20, + "color": "fe84a3", + "text": "Did you know..." + }, + { + "type": "patchouli:text", + "text": "#text", + "y": 30 + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/incl/tuber.json b/patchouli_books/blissguide/zh_cn/templates/incl/tuber.json new file mode 100644 index 0000000..cead7f6 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/incl/tuber.json @@ -0,0 +1,36 @@ +{ + "components": [ + { + "type": "patchouli:image", + "x": 10, + "y": 30, + "u": 0, + "v": 0, + "width": 64, + "height": 64, + "texture_width": 128, + "texture_height": 128, + "scale": 0.5, + "image": "patchouli:#texture#.png" + }, + { + "type": "patchouli:header", + "centered": false, + "x": 45, + "y": 34, + "text": "#name" + }, + { + "type": "patchouli:text", + "x": 52, + "y": 41, + "text": "#desc" + }, + { + "type": "patchouli:text", + "x": 45, + "y": 50, + "text": "$(c)>$() $(l:https://www.youtube.com/watch?v=#video_id#)$(underline)WATCH$()" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/lissa_full.json b/patchouli_books/blissguide/zh_cn/templates/lissa_full.json new file mode 100644 index 0000000..8b46b6f --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/lissa_full.json @@ -0,0 +1,30 @@ +{ + "components": [ + { + "type": "patchouli:image", + "x": 6, + "y": -5, + "width": 159, + "height": 301, + "texture_width": 256, + "texture_height": 512, + "scale": 0.5, + "image": "patchouli:lissa_full.png" + }, + { + "type": "patchouli:header", + "centered": false, + "x": 66, + "y": 9, + "color": "fe84a3", + "text": "Lissa!" + }, + { + "type": "patchouli:text", + "x": 76, + "y": 17, + "color": "fe84a3", + "text": "她/她们" + } + ] +} \ No newline at end of file diff --git a/patchouli_books/blissguide/zh_cn/templates/tubers.json b/patchouli_books/blissguide/zh_cn/templates/tubers.json new file mode 100644 index 0000000..da2e2c4 --- /dev/null +++ b/patchouli_books/blissguide/zh_cn/templates/tubers.json @@ -0,0 +1,45 @@ +{ + "include": [ + { + "template": "patchouli:incl/tuber", + "as": "direwolf20", + "using": { + "texture": "direwolf20", + "name": "direwolf20", + "desc": "新手指南", + "video_id": "QZ6uO32ED9I" + } + }, + { + "template": "patchouli:incl/tuber", + "as": "vallen", + "y": 40, + "using": { + "texture": "mom", + "name": "Vallen", + "desc": "整合包概述", + "video_id": "FXFdRJPNrM4" + } + } + ], + "components": [ + { + "type": "patchouli:header", + "centered": true, + "x": -1, + "y": -1, + "text": "视频" + }, + { + "type": "patchouli:separator", + "x": -1, + "y": -1 + }, + { + "type": "patchouli:text", + "x": 0, + "y": 120, + "text": "如果你从事自媒体,请随意在自媒体上播放这些视频!我们完全不介意." + } + ] +} \ No newline at end of file From b87a8ffa07c18dd740b01382391510b0a6b1e504 Mon Sep 17 00:00:00 2001 From: nageih Date: Wed, 21 Dec 2022 11:12:14 +0800 Subject: [PATCH 2/2] Create Chinese Localization --- .../assets/bliss/lang/zh_cn.json | 32 +++++++++++++++++++ .../assets/corn_delight/lang/zh_cn.json | 30 +++++++++++++++++ .../assets/minecraft/lang/zh_cn.json | 3 ++ .../assets/quark/lang/zh_cn.json | 16 ++++++++++ .../assets/syp/lang/zh_cn.json | 3 ++ 5 files changed, 84 insertions(+) create mode 100644 config/openloader/resources/bliss_resources/assets/bliss/lang/zh_cn.json create mode 100644 config/openloader/resources/bliss_resources/assets/corn_delight/lang/zh_cn.json create mode 100644 config/openloader/resources/bliss_resources/assets/minecraft/lang/zh_cn.json create mode 100644 config/openloader/resources/bliss_resources/assets/quark/lang/zh_cn.json create mode 100644 config/openloader/resources/bliss_resources/assets/syp/lang/zh_cn.json diff --git a/config/openloader/resources/bliss_resources/assets/bliss/lang/zh_cn.json b/config/openloader/resources/bliss_resources/assets/bliss/lang/zh_cn.json new file mode 100644 index 0000000..6d145af --- /dev/null +++ b/config/openloader/resources/bliss_resources/assets/bliss/lang/zh_cn.json @@ -0,0 +1,32 @@ +{ + "advancement.bliss.get_backpack": "另一个物品栏", + "advancement.bliss.get_backpack.desc": "制作一个背包,以便携带更多物品", + "advancement.bliss.get_paraglider": "Hi High", + "advancement.bliss.get_paraglider.desc": "找到一个滑翔伞帮助你机动", + "advancement.bliss.get_atlas": "Mx.在全世界", + "advancement.bliss.get_atlas.desc": "制作一个地图册以存储地图", + "advancement.bliss.get_iron_rod": "破坏物品", + "advancement.bliss.get_iron_rod.desc": "制作一根铁杆,与活塞打碎木方块", + "advancement.bliss.get_copper_pipe": "加菲尔德!", + "advancement.bliss.get_copper_pipe.desc": "制作铜管道以使用漏斗移动物品", + "advancement.bliss.get_sawmill": "我想玩个游戏", + "advancement.bliss.get_sawmill.desc": "做一个锯木机来锯木方块", + "advancement.bliss.get_slime_in_a_bucket": "史莱姆牧场", + "advancement.bliss.get_slime_in_a_bucket.desc": "把一个小史莱姆放在桶里,找到史莱姆区块", + "advancement.bliss.get_trading_post": "看不见的手", + "advancement.bliss.get_trading_post.desc": "创建一个贸易站,帮助与许多村民进行贸易", + "advancement.bliss.get_seed_pouch": "心灵妖精", + "advancement.bliss.get_seed_pouch.desc": "制作一个种子袋来储存种子", + "advancement.bliss.get_diamond_heart": "心的形状", + "advancement.bliss.get_diamond_heart.desc": "潜入一个石精灵并杀死它以获得它的钻石之心", + "advancement.bliss.get_pickarang": "小麦布朗尼", + "advancement.bliss.get_pickarang.desc": "用钻石之心打造皮卡镖", + "advancement.bliss.get_tater": "平方根", + "advancement.bliss.get_tater.desc": "在一个小土豆上印上一个石精灵的灵魂", + "advancement.bliss.get_glow_shroom": "轻松配合", + "advancement.bliss.get_glow_shroom.desc": "找到一个荧光林地并在其中找到发光菇", + "advancement.bliss.get_all_music_discs": "我会听到幸福的声音", + "advancement.bliss.get_all_music_discs.desc": "获取所有音乐和环境唱片", + "advancement.bliss.get_all_crystals": "结晶化", + "advancement.bliss.get_all_crystals.desc": "收集所有类型的刚玉和刚玉簇" +} \ No newline at end of file diff --git a/config/openloader/resources/bliss_resources/assets/corn_delight/lang/zh_cn.json b/config/openloader/resources/bliss_resources/assets/corn_delight/lang/zh_cn.json new file mode 100644 index 0000000..7999567 --- /dev/null +++ b/config/openloader/resources/bliss_resources/assets/corn_delight/lang/zh_cn.json @@ -0,0 +1,30 @@ +{ + "block.corn_delight.corn_crate": "玉米箱", + "block.corn_delight.corn_crop": "玉米作物", + "block.corn_delight.corn_kernel_bag": "一袋玉米仁", + "block.corn_delight.nachos_block": "烤辣味干酪玉米片", + "block.corn_delight.popcorn_box": "爆米花桶", + "block.corn_delight.wild_corn": "野生玉米", + "item.corn_delight.boiled_corn": "煮玉米", + "item.corn_delight.caramel_popcorn": "焦糖爆米花", + "item.corn_delight.classic_corn_dog": "经典玉米热狗", + "item.corn_delight.corn": "玉米", + "item.corn_delight.corn_dog": "玉米热狗", + "item.corn_delight.corn_seeds": "玉米粒", + "item.corn_delight.corn_soup": "玉米汤", + "item.corn_delight.cornbread": "玉米面包", + "item.corn_delight.cornbread_batter": "玉米面糊", + "item.corn_delight.cornbread_stuffing": "玉米面包填馅", + "item.corn_delight.creamed_corn": "奶香玉米粒", + "item.corn_delight.creamy_corn_drink": "奶香玉米饮", + "item.corn_delight.grilled_corn": "烤玉米", + "item.corn_delight.nachos_bowl": "烤辣味干酪玉米片", + "item.corn_delight.popcorn": "爆米花", + "item.corn_delight.taco": "墨西哥卷饼", + "item.corn_delight.tortilla": "墨西哥薄饼", + "item.corn_delight.tortilla_chip": "墨西哥油炸玉米片", + "item.corn_delight.tortilla_raw": "生玉米面饼", + + "corn_delight.block.popcorn.bearhand": "你至少需要一只空闲的手来吃这个." + +} \ No newline at end of file diff --git a/config/openloader/resources/bliss_resources/assets/minecraft/lang/zh_cn.json b/config/openloader/resources/bliss_resources/assets/minecraft/lang/zh_cn.json new file mode 100644 index 0000000..589a538 --- /dev/null +++ b/config/openloader/resources/bliss_resources/assets/minecraft/lang/zh_cn.json @@ -0,0 +1,3 @@ +{ + "selectWorld.bonusItems": "§dBliss§r初始箱" +} \ No newline at end of file diff --git a/config/openloader/resources/bliss_resources/assets/quark/lang/zh_cn.json b/config/openloader/resources/bliss_resources/assets/quark/lang/zh_cn.json new file mode 100644 index 0000000..99a43e5 --- /dev/null +++ b/config/openloader/resources/bliss_resources/assets/quark/lang/zh_cn.json @@ -0,0 +1,16 @@ +{ + "block.quark.cocoa_beans_sack": "一袋可可豆", + "block.quark.berry_sack": "一袋甜浆果", + "block.quark.glowberry_sack": "一袋发光浆果", + "block.quark.gunpowder_sack": "一袋火药", + "block.quark.nether_wart_sack": "一袋下界疣", + "block.quark.crate": "储物板条箱", + "block.quark.iron_plate": "锻铁板", + "block.quark.rusty_iron_plate": "生锈的锻铁板", + "block.quark.iron_plate_stairs": "锻铁板楼梯", + "block.quark.rusty_iron_plate_stairs": "生锈的锻铁板楼梯", + "block.quark.iron_plate_slab": "锻铁板台阶", + "block.quark.rusty_iron_plate_slab": "生锈的锻铁板台阶", + "block.quark.iron_plate_vertical_slab": "锻铁板竖直台阶", + "block.quark.rusty_iron_plate_vertical_slab": "生锈的锻铁板竖直台阶" +} \ No newline at end of file diff --git a/config/openloader/resources/bliss_resources/assets/syp/lang/zh_cn.json b/config/openloader/resources/bliss_resources/assets/syp/lang/zh_cn.json new file mode 100644 index 0000000..1d79533 --- /dev/null +++ b/config/openloader/resources/bliss_resources/assets/syp/lang/zh_cn.json @@ -0,0 +1,3 @@ +{ + "item.syp.pet_bandage": "绷带" +} \ No newline at end of file