diff --git a/project/All The Mods 6/1.7.7/kubejs/client_scripts/jei_info.js b/project/All The Mods 6/1.7.7/kubejs/client_scripts/jei_info.js new file mode 100644 index 000000000..351b2c36a --- /dev/null +++ b/project/All The Mods 6/1.7.7/kubejs/client_scripts/jei_info.js @@ -0,0 +1,8 @@ +onEvent('jei.information', e => { + e.add('thermal:bitumen', ['精馏塔精炼石油的副产物']) + e.add('mekanism:creative_energy_cube', ['想要充满创造能量单元,你需要2个终极输导供应器、2个充满的终极能量单元和一个ATM之星', + '', + '你需要搭建一个多方块结构:在一条水平线上,中间放置创造能量单元,其两边放置终极输导供应器,最外侧两边放置充满的终极能量单元。', + '', + '按照上面的指示搭建完成后,你可以拿着ATM之星潜行右键创造能量单元来充满它。']) +}) \ No newline at end of file diff --git a/project/All The Mods 6/1.7.7/kubejs/client_scripts/jei_tooltips.js b/project/All The Mods 6/1.7.7/kubejs/client_scripts/jei_tooltips.js new file mode 100644 index 000000000..5fecdbdc1 --- /dev/null +++ b/project/All The Mods 6/1.7.7/kubejs/client_scripts/jei_tooltips.js @@ -0,0 +1,15 @@ +onEvent(`item.tooltip`, e => { + const beeTypes = java("com.resourcefulbees.resourcefulbees.compat.jei.JEICompat").ENTITY_INGREDIENT + const refined = [`controller`, `creative_controller`, `grid`, `crafting_grid`, `pattern_grid`, `fluid_grid`, `network_receiver`, `network_transmitter`, `relay`, `detector`, `security_manager`, `wireless_transmitter`, `disk_manipulator`, `crafter`, `crafter_manager`, `crafting_monitor`] + + e.addForType(entityType, ['bee:starry'], ['将这个蜜蜂安置在创造蜂房中,即可每次收获10个蜜脾块', '你现在应该有一个了,好好利用它吧!']) + refined.forEach(refin => e.add(`refinedstorage:${refin}`, `使用染料右键或与染料合成来染色`)) + e.add(`pedestals:pedestal/stone333`, [ + `对着§6§l调色板§r按U`, + `来查看你能制作的不同颜色的基座` + ]) + e.add(`creativewirelesstransmitter:creative_wireless_transmitter`, [`使用染料右键或与染料合成来染色`]) + e.add(`#pedestals:upgrades`, `将升级放在副手以添加到基座上`) + e.add(`#resourcefulbees:valid_apiary`, `有效的蜂房方块`) + e.add(`mekanism:creative_energy_cube`, [`§4§l未充满时会销毁能量`, `查看JEI的信息栏了解如何充满能量单元`]) +}) \ No newline at end of file diff --git a/project/All The Mods 6/1.7.7/kubejs/server_scripts/multiblock.js b/project/All The Mods 6/1.7.7/kubejs/server_scripts/multiblock.js new file mode 100644 index 000000000..ae52851a1 --- /dev/null +++ b/project/All The Mods 6/1.7.7/kubejs/server_scripts/multiblock.js @@ -0,0 +1,71 @@ +onEvent('block.right_click', e => { + const NORTH = Facing.north + const WEST = Facing.west + const SOUTH = Facing.south + const EAST = Facing.east + const placedBlock = e.getBlock() + + //check full ultimate energy cube + function checkUEC(targetBlock) { + if (targetBlock.getId().equals('mekanism:ultimate_energy_cube')) { + const entity = targetBlock.getEntityData() + if (!!entity.EnergyContainers && + !!entity.EnergyContainers[0] && + !!entity.EnergyContainers[0].stored && + entity.EnergyContainers[0].stored == 4096000000) { + return true + } + } + return false + } + + function blockPosition(block) { + return `${block.getX()} ${block.getY()} ${block.getZ()} ${block.getX()} ${block.getY()} ${block.getZ()}` + } + + if (e.entity.isPlayer() && e.entity.isCrouching()) { + let heldItem = e.entity.getHeldItem(MAIN_HAND).getId() + if (placedBlock.getId().equals('mekanism:creative_energy_cube')) { + if (heldItem.equals('atmadditions:atm_star')) { + if ( + placedBlock.offset(SOUTH, 1).getId().equals('mekanism:ultimate_induction_provider') && + placedBlock.offset(NORTH, 1).getId().equals('mekanism:ultimate_induction_provider') && + checkUEC(placedBlock.offset(NORTH, 2)) && + checkUEC(placedBlock.offset(SOUTH, 2)) + ) { + e.entity.getMainHandItem().count-- + let creativeCubeData = placedBlock.getEntityData() + creativeCubeData.EnergyContainers.push({ Container: 0, stored: "18446744073709551615.9999" }) + placedBlock.getEntityData().putAll(creativeCubeData) + + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(NORTH, 2))} minecraft:air replace`) + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(SOUTH, 2))} minecraft:air replace`) + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(NORTH, 2))} mekanism:ultimate_energy_cube{mekData:{}} replace`) + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(SOUTH, 2))} mekanism:ultimate_energy_cube{mekData:{}} replace`) + + e.server.runCommand('/title @a title {"text":"能量单元已充满!","color":"green"}') + + } else if ( + placedBlock.offset(EAST, 1).getId().equals('mekanism:ultimate_induction_provider') && + placedBlock.offset(WEST, 1).getId().equals('mekanism:ultimate_induction_provider') && + checkUEC(placedBlock.offset(EAST, 2)) && + checkUEC(placedBlock.offset(WEST, 2)) + ) { + e.entity.getMainHandItem().count-- + let creativeCubeData = placedBlock.getEntityData() + creativeCubeData.EnergyContainers.push({ Container: 0, stored: "18446744073709551615.9999" }) + placedBlock.getEntityData().putAll(creativeCubeData) + + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(WEST, 2))} minecraft:air replace`) + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(EAST, 2))} minecraft:air replace`) + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(WEST, 2))} mekanism:ultimate_energy_cube{mekData:{}} replace`) + e.server.runCommand(`/fill ${blockPosition(placedBlock.offset(EAST, 2))} mekanism:ultimate_energy_cube{mekData:{}} replace`) + + e.server.runCommand('/title @a title {"text":"能量单元已充满!","color":"green"}') + } else { + e.server.runCommand('/title @a title {"text":"方块结构错误!","color":"dark_red"}') + } + } + } + } +}) \ No newline at end of file diff --git a/project/All The Mods 6/1.7.7/kubejs/startup_scripts/custom_items.js b/project/All The Mods 6/1.7.7/kubejs/startup_scripts/custom_items.js new file mode 100644 index 000000000..3fbb18f6c --- /dev/null +++ b/project/All The Mods 6/1.7.7/kubejs/startup_scripts/custom_items.js @@ -0,0 +1,21 @@ +onEvent('item.registry', e => { + e.create('mass_of_wills').displayName('§6意志凝结体').tooltip('§8六种古代意志的结合物').unstackable() + e.create('rune_of_sins').displayName('§6宗罪符文').tooltip('§8包含了七宗罪力量的符文').unstackable() + e.create('rotten_leather').displayName('腐烂的皮革') + e.create('uu_matter').displayName('§dUU物质') + e.create('patrick_star').displayName('§d派大星') + e.create('saltpeter_ingot').displayName('硝酸盐锭') + e.create('potassium_nitrate_dust').displayName('硝酸钾粉') + e.create('potassium_nitrate_ingot').displayName('硝酸钾锭') + e.create('potassium_dust').displayName('钾粉') + e.create('potassium_ingot').displayName('钾锭') +}) + +onEvent('block.registry', e => { + e.create('magical_soil').displayName('§b魔法土壤').material('organic').hardness(0.6) + e.create('nether_star_block').displayName('§e下界之星块').material('iron').hardness(2).lightLevel(1) + e.create('saltpeter_block').displayName('硝酸盐块').material('iron') + e.create('potassium_block').displayName('钾块').material('iron') + e.create('potassium_nitrate_block').displayName('硝酸钾块').material('iron') + e.create('atm_star_block').displayName('§eATM之星块').material('iron').hardness(5).lightLevel(1) +}) diff --git a/project/Farming Valley/1.0.2/config/checklist/tasks.txt b/project/Farming Valley/1.0.2/config/checklist/tasks.txt new file mode 100644 index 000000000..934f6147b --- /dev/null +++ b/project/Farming Valley/1.0.2/config/checklist/tasks.txt @@ -0,0 +1,94 @@ +#§2=== Farming Valley=== +#这些基础成就能在游戏初期为你带来一些帮助 +挖一些铁,然后制作一个铁桶(提示:模组矿物并不会在世界中生成。你需要在铁匠处购买)! +召唤丰收女神,开启你的教程(查看书“召唤丰收女神”)! +再次与女神对话,她就会告诉你怎么开始建设你的小镇! +获得女神所需的原木,然后拿着原木右键她与她再次对话! +建造木匠小屋(Carpenter)! +再次召唤丰收女神继续教程! +与Jade对话,询问她如何耕种作物! +从Jade那儿获得芜菁种子,然后播种这些种子! +芜菁成熟后,把它们收获并带到Jade那儿! +从木匠(Carpenter)那购买出货箱(Shipment Box)! +把出货箱(Shipment Box)放在地上,拿着鱼/作物等等物资右键出货箱,睡一觉,第二天它们就会被自动卖出! +建造杂货铺(General Store)! +建造畜牧场(Animal Ranch)! +建造养鸡场(Poultry Farm)! +获得牛、羊、鸡!注意:它们不会生成在世界中。 +#§2其他可以做的事,没有顺序,也包含一些提示 +为你的成就书做一个成就台(achievement stand)! +建造铁匠铺(Blacksmith)! +建造咖啡屋(Cafe)! +建造教堂(Church)! +建造钟表小屋(Clockmaker)! +建造钓鱼洞(Fishing Hole)! +建造钓鱼小屋(Fishing Hut)! +建造女神池(Goddess Pond)! +建造矿山(Mining Hill)! +将矿山升级至等级2! +建造矿工小屋(Mining Hut)! +建造市政厅(Townhall)! +将生命提升至20颗心(橙色)! +将生命提升至30颗心(黄色)! +将生命提升至40颗心(绿色)! +获得一个灵魂碎片(未绑定) (需要下界之星而不是钻石)! +购买一个灵魂笼! +获得一根钓鱼竿! +购买一根钻石钓竿,然后钓上5种不同的鱼! +获得一套海王(镎)套装! +钓上一个漂流瓶! +制作金苹果果汁来恢复一些水分! +制作一个精灵门,植物魔法的! +获得一整套泰拉钢套! +搭建一个林业的多方块农场! +饮用一些林业的短效蜂蜜酒(Short Mead)! +喂养林业的两只蜜蜂! +从Candice那儿购买所有宠物! +用抽屉管理器连接其他抽屉! +搭建沉浸工程的斗轮挖掘机! +击杀一只凋灵! +击杀末影龙! +获得一个psi的术式! +获得一个钻石凿子和钻石钻石碎屑锯! +找到村民Bailey,然后完成10个每日任务! +搭建一个小型精致存储(Refined Storage)系统,其中要求包含1或4K的存储磁盘! +用64K存储磁盘填满一个驱动器! +制作iChisel! +购买魔豆! +购买马镫(Stirrups)并骑上一只猪! +购买一袋货物(Sack of Storage)! +搭建一个隧道盾构车,要求使用钻石钻头! +购买建筑师锯台! +购买高级附魔台! +购买下级熔炉! +购买终焉熔炉! +购买下级精华种子! +购买自然种子! +购买火种子! +购买红石种子! +购买金种子! +购买钻石种子! +购买种子再处理器! +从Jeimmi那儿购买所有Mystical Agriculture模组的种子! +购买终极精华洒水壶! +购买1个下级苹果并将它升级到终极苹果! +购买一整套终极精华套装! +在教堂的Tomas那儿购买所有音乐CD(7个)! +在畜牧场处经营动物收容所的Candice那儿领养一只狗! +购买一个狗粮碗、狗床和狗浴缸! +使用训练口粮将领养的狗升级到20级! +使用训练口粮将领养的狗升级到40级! +使用训练口粮将领养的狗升级到60级! +使用顶级口粮来将等级上限突破到100级! +=== +#§9 支持作者(可选) +在Twitter上关注KehaanDK +在YouTube上订阅Kehaan +在Twitch上关注Kehaan +浏览我的动态 +=== +#§9 超链接(可点击): +[§1§nhttps://twitter.com/KehaanDK](https://twitter.com/KehaanDK) +[§1§nhttps://www.youtube.com/user/Kehaan](https://www.youtube.com/user/Kehaan) +[§1§nhttps://www.twitch.tv/kehaan/](https://www.twitch.tv/kehaan/) +[§1§nhttps://kehaan.me/](https://kehaan.me/) \ No newline at end of file diff --git a/project/Farming Valley/1.0.2/scripts/Nerfs.zs b/project/Farming Valley/1.0.2/scripts/Nerfs.zs new file mode 100644 index 000000000..af6583472 --- /dev/null +++ b/project/Farming Valley/1.0.2/scripts/Nerfs.zs @@ -0,0 +1,198 @@ +// --- Created by Kehaan --- +// recipes.addShaped(x, [[x, x, x], [x, x, x], [x, x, x]]); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +recipes.remove(); + +recipes.remove(); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +recipes.addShaped(, [[, , ], [, , ], [, , ]]); +recipes.addShaped(, [[, , ], [, , ], [, , ]]); +recipes.addShaped(, [[, , ], [, , ], [, , ]]); +recipes.addShaped(, [[, , ], [, , ], [, , ]]); + +recipes.addShaped(, [[, , ], [null, , null], [, , ]]); + +#furnace.remove(); + +.addTooltip(format.green("不能种植,请在商店处购买种子。")); +.addTooltip(format.green("不能种植,请在商店处购买种子。")); +.addTooltip(format.green("不能种植,请在商店处购买种子。")); +.addTooltip(format.green("不能种植,请在商店处购买种子。")); +.addTooltip(format.green("不能种植,请在商店处购买种子。")); +.addTooltip(format.green("不能种植,请在商店处购买种子。")); +.addTooltip(format.green("右键来摸鸟窝")); +.addTooltip(format.green("这个物品可以在矿工小屋当作矿物购买到。")); + +recipes.addShaped(.withTag({identifier: "Guide_On_How_To_Summon_Harvest_Goddess"}), [[, , ], [, , ], [, , ]]); + +recipes.addShapeless(, []); + +recipes.addShapeless( * 1, [, ]); +recipes.addShapeless( * 4, [, , ]); +recipes.addShapeless( * 4, [, ]); +recipes.addShapeless( * 2, [, ]); +recipes.addShapeless( * 8, [, ]); +recipes.addShapeless( * 1, []); + +recipes.addShapeless( * 1, [, ]); +recipes.addShapeless( * 1, [, ]); + +recipes.addShaped(, [[null, , null],[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null],[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null],[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null],[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null],[null, , null], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, null, null],[, , ], [, , ]]); +recipes.addShaped(, [[null, null, null],[, , ], [, , ]]); +recipes.addShaped(, [[null, null, null],[, , ], [, , ]]); +recipes.addShaped(, [[null, null, null],[, , ], [, , ]]); +recipes.addShaped(, [[null, null, null],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[null, , null], [null, , null]]); +recipes.addShaped(, [[, , ],[null, , null], [null, , null]]); +recipes.addShaped(, [[, , ],[null, , null], [null, , null]]); +recipes.addShaped(, [[, , ],[null, , null], [null, , null]]); +recipes.addShaped(, [[, , ],[null, , null], [null, , null]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ], [, null, ]]); +recipes.addShaped(, [[, null, ],[, , ], [, null, ]]); +recipes.addShaped(, [[, null, ],[, , ], [, null, ]]); +recipes.addShaped(, [[, null, ],[, , ], [, null, ]]); +recipes.addShaped(, [[, null, ],[, , ], [, null, ]]); +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); \ No newline at end of file diff --git a/project/Farming Valley/1.0.2/scripts/ShipmentBox.zs b/project/Farming Valley/1.0.2/scripts/ShipmentBox.zs new file mode 100644 index 000000000..e84e750c1 --- /dev/null +++ b/project/Farming Valley/1.0.2/scripts/ShipmentBox.zs @@ -0,0 +1,192 @@ +// --- Created by Kehaan --- + +mods.harvestfestival.Shipping.addShipping(, 20); +mods.harvestfestival.Shipping.addShipping(, 20); +mods.harvestfestival.Shipping.addShipping(, 20); +mods.harvestfestival.Shipping.addShipping(, 20); +mods.harvestfestival.Shipping.addShipping(, 85); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 50); +mods.harvestfestival.Shipping.addShipping(, 2); +mods.harvestfestival.Shipping.addShipping(, 135); +mods.harvestfestival.Shipping.addShipping(, 450); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 500); +mods.harvestfestival.Shipping.addShipping(, 1000); +mods.harvestfestival.Shipping.addShipping(, 4100); +mods.harvestfestival.Shipping.addShipping(, 30); +mods.harvestfestival.Shipping.addShipping(, 25); +mods.harvestfestival.Shipping.addShipping(, 75); +mods.harvestfestival.Shipping.addShipping(, 150); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 100); +mods.harvestfestival.Shipping.addShipping(, 1000); +mods.harvestfestival.Shipping.addShipping(, 10000); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 50); +mods.harvestfestival.Shipping.addShipping(, 1); +mods.harvestfestival.Shipping.addShipping(, 1); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 25); +mods.harvestfestival.Shipping.addShipping(, 25); +mods.harvestfestival.Shipping.addShipping(, 100); +mods.harvestfestival.Shipping.addShipping(, 25); +mods.harvestfestival.Shipping.addShipping(, 25); +mods.harvestfestival.Shipping.addShipping(, 25); +mods.harvestfestival.Shipping.addShipping(, 10000); +mods.harvestfestival.Shipping.addShipping(, 10); +mods.harvestfestival.Shipping.addShipping(, 1); +mods.harvestfestival.Shipping.addShipping(, 1); + +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); +.addTooltip(format.green("可以在出货箱中出售。")); \ No newline at end of file diff --git a/project/Farming Valley/1.0.2/scripts/ShopsItems.zs b/project/Farming Valley/1.0.2/scripts/ShopsItems.zs new file mode 100644 index 000000000..c882c9321 --- /dev/null +++ b/project/Farming Valley/1.0.2/scripts/ShopsItems.zs @@ -0,0 +1,1460 @@ +// --- Created by Kehaan --- +// recipes.remove(x); +// x.addTooltip(format.green("This item can be bought at the x")); +// mods.harvestfestival.Shops.addPurchasable("harvestfestival:x", x, y); + + +// --- Guidebooks --- +mods.harvestfestival.Shops.addPurchasableToBuilder(.withTag({identifier: "Guide_On_How_To_Summon_Harvest_Goddess"}), 0, 0, 10); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10); +.addTooltip(format.green("可以在Yulif和Cloe处购买")); +.withTag({identifier: "Guide_On_How_To_Summon_Harvest_Goddess"}).addTooltip(format.green("可以在Yulif和Cloe处购买")); + +// --- ArchitectureCraft --- +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10000); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 1500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 1500); + +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); + +// --- Coins --- +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 100); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 1000); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10000); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 1000000); + +.addTooltip(format.green("你可以等价出售/购买此物品,非常便于服务器中的交易。")); +.addTooltip(format.green("你可以等价出售/购买此物品,非常便于服务器中的交易。")); +.addTooltip(format.green("你可以等价出售/购买此物品,非常便于服务器中的交易。")); +.addTooltip(format.green("你可以等价出售/购买此物品,非常便于服务器中的交易。")); +.addTooltip(format.green("你可以等价出售/购买此物品,非常便于服务器中的交易。")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); + +// --- HFReader --- +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 1000); +.addTooltip(format.green("可以在Jenni处购买")); +.addTooltip(format.green("使用它右键作物来获取信息")); + +// --- Decocraft --- +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 5000); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 10); + +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); + +// --- Immersive Engineering --- +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("不会生成在世界中,请在铁匠铺购买")); +.addTooltip(format.green("不会生成在世界中,请在铁匠铺购买")); +.addTooltip(format.green("不会生成在世界中,请在铁匠铺购买")); +.addTooltip(format.green("不会生成在世界中,请在铁匠铺购买")); +.addTooltip(format.green("不会生成在世界中,请在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 2500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 2500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner",, 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 1000); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 2500); + +// RailCraft +recipes.remove(); +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner", , 100000); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", * 8, 800); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", * 8, 800); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", * 8, 1000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", * 8, 1400); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", * 6, 600); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", * 8, 600); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 250); + +// Psi + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 100000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 100000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 5000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 5000); + +// StorageDrawers + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 5000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 5000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 250); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 500); + +// Forestry +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 0}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 1}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 2}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 3}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 4}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 5}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 6}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 7}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 8}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 9}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 10}), 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn", .withTag({FarmBlock: 11}), 2000); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 20000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 2000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); + +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("不会生成在世界中,请在铁匠铺购买")); + +.addTooltip(format.green("这个物品可以在畜牧场的Jim处购买(不能用于作物)")); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 10000); +.addTooltip(format.green("这个物品可以在杂货铺购买")); + +recipes.remove(); +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner", , 25000); + +// Botania + +recipes.remove(); + +mods.harvestfestival.Shops.addShopToNPC("katlin", "Gadgets", "你好,我竟然有一家售卖杂货的小商店?!", "friday,5000,16000;monday,5000,16000;tuesday,5000,16000", "如果你想知道我卖什么,请在周五、周一和周二的5点至16点来这"); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 100000); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); + +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 2500); +.addTooltip(format.green("这个物品可以在杂货铺购买")); + +// Church + +mods.harvestfestival.Shops.addShopToNPC("thomas", "Church", "欢迎来到教堂!", "monday,1000,7000;tuesday,1000,7000;wednesday,1000,7000", "我的小店在周一至周三的1点到7点营业"); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500); + +.addTooltip(format.green("可以在教堂处购买")); +.addTooltip(format.green("可以在教堂处购买")); +.addTooltip(format.green("可以在教堂处购买")); + +// Super Circuit Maker +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 5000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 5000); + +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); + +// SpiceOfLife +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 2000); +.addTooltip(format.green("这个物品能够在咖啡屋购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 2000); +.addTooltip(format.green("这个物品能够在咖啡屋购买")); + +// Aquaculture +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.adjustPurchasable("harvestfestival:baitshop", "aquaculture_iron_fishing_rod", 1500); +mods.harvestfestival.Shops.adjustPurchasable("harvestfestival:baitshop", "aquaculture_gold_fishing_rod", 1000); +mods.harvestfestival.Shops.adjustPurchasable("harvestfestival:baitshop", "aquaculture_diamond_fishing_rod", 5000); + +.addTooltip(format.green("这个物品可以在钓鱼小屋处购买")); +.addTooltip(format.green("这个物品可以在钓鱼小屋处购买")); +.addTooltip(format.green("这个物品可以在钓鱼小屋处购买")); +.addTooltip(format.green("这个物品可以在钓鱼小屋处购买")); + +// Chisel And Bits +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("请使用钻石凿子")); +.addTooltip(format.green("请使用钻石凿子")); +.addTooltip(format.green("请使用钻石凿子")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 2500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general", , 2500); + +// --- Cyclic --- +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品可以在畜牧场购买")); +.addTooltip(format.green("这个物品可以在畜牧场购买")); +.addTooltip(format.green("这个物品可以在畜牧场购买")); +.addTooltip(format.green("这个物品可以在畜牧场购买")); +.addTooltip(format.green("这个物品可以在畜牧场购买")); +.addTooltip(format.green("这个物品可以在鱼饵店(Baitshop)购买")); +.addTooltip(format.green("这个物品可以在鱼饵店(Baitshop)购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); + +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn",, 500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:barn",, 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 4000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 25000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 7500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 2000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 75000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 100000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:baitshop", , 75000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:baitshop", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 250); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 250); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 250); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 750); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 25000); + +recipes.remove(); +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner", , 500); +recipes.remove(); +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner", , 500); + +recipes.remove(); +.addTooltip(format.green("这个物品可以在矿工小屋购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:miner", , 100); + +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 500); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 25000); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); + +// Refined Storage +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 100); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 25000); + +// --- Bibliocraft --- + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); +.addTooltip(format.green("可以在Yulif处购买")); + +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 1, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 2000); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 2000); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 0, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 6, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 6, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 3, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 3, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 32, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 16, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 16, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 6, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 6, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 16, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 2, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 32, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 16, 0, 500); +mods.harvestfestival.Shops.addPurchasableToBuilder(, 16, 0, 250); + +// --- InventoryPets --- + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(.withTag({slowDelay: 6000})); +recipes.remove(); +recipes.remove(); +recipes.remove(); + + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 100000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 100000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 100000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", .withTag({slowDelay: 6000}), 1000000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 25000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry", , 2500); + +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.withTag({slowDelay: 6000}).addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); + +// ChanceCubeFenn + +mods.harvestfestival.Shops.addShopToNPC("fenn", "Toys", "我真的很喜欢玩具,你想买一些吗?!", "monday,8000,18000;tuesday,8000,18000;wednesday,8000,18000;thursday,8000,18000;friday,8000,18000", "我会在周一至周五的8点到18点卖玩具"); +recipes.remove(); +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:toys", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:toys", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:toys", , 50000); +.addTooltip(format.green("这个物品可以在Tiberius的儿子Fenn处购买")); +.addTooltip(format.green("这个物品可以在Tiberius的儿子Fenn处购买")); +.addTooltip(format.green("这个物品可以在Tiberius的儿子Fenn处购买")); + +// --- SoggyMustaches Transportation --- + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addShopToNPC("girafi", "mechanic", "我曾经是个冒险家,但我现在决定当一个机械师。", "thursday,1000,14000;friday,1000,14000;saturday,1000,14000;sunday,1000,14000", "我的店只在周四至周日的1点到14点开门。"); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:mechanic", , 1000000); + +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); +.addTooltip(format.green("这个物品可以在杂货铺的Johan处购买")); + +// SoulShard +recipes.remove(); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); + +// --- mysticalagriculture + +// Furnaces + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 10000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 20000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 40000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 80000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 120000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:cafe", , 1000000); +.addTooltip(format.green("这个物品可以在咖啡屋的Liara处购买")); +.addTooltip(format.green("这个物品可以在咖啡屋的Liara处购买")); +.addTooltip(format.green("这个物品可以在咖啡屋的Liara处购买")); +.addTooltip(format.green("这个物品可以在咖啡屋的Liara处购买")); +.addTooltip(format.green("这个物品可以在咖啡屋的Liara处购买")); +.addTooltip(format.green("这个物品可以在咖啡屋的Liara处购买")); + +// Armor +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1000000); + +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); + +// Tools and Weapons +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 500000); + +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("用于Mystical Agriculture模组的作物")); + +// Machines +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 300000); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); +.addTooltip(format.green("只对Mystical Agriculture的作物有效")); + +// Ore +.addTooltip(format.green("这些矿物不在世界中生成")); +.addTooltip(format.green("这些矿物不在世界中生成")); +.addTooltip(format.green("这些矿物不在世界中生成")); +.addTooltip(format.green("这些矿物不在世界中生成")); +.addTooltip(format.green("这些矿物不在世界中生成")); +.addTooltip(format.green("这些矿物不在世界中生成")); + +recipes.remove(); +.addTooltip(format.green("这个物品可以在铁匠铺购买")); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:blacksmith", , 2000); + +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 1500); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); + +// Crops +recipes.remove(); +.addTooltip(format.green("只对Mystical Agriculture的作物有效")); +mods.harvestfestival.Shops.addShopToNPC("jamie", "Botanists", "我是一名市长,但我也是一名植物学家。我开了一家拥有很多绝妙作物的商店!", "monday,8000,18000;tuesday,8000,18000;wednesday,8000,18000;thursday,8000,18000;friday,8000,18000", "我的商店会在周一至周五的8点到18点开门"); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 3000); +.addTooltip(format.green("可以在教堂处购买")); + +recipes.remove(); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:gadgets", , 5000); +.addTooltip(format.green("这个物品能够在咖啡屋的Katlin处购买")); + +// Tier1 +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); + +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); + +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); + +// Tier2 +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 50000); + +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); + +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); + +//Tier3 +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 250000); + +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); + +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); + +//Tier4 +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 500000); + +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); + +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); + +// Tier5 +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 1000000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 1000000); + +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Jeimmi处购买")); + +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); +.addTooltip(format.green("此作物忽视季节!")); + +// CloeShop + +mods.harvestfestival.Shops.addShopToNPC("cloe", "Librarian", "我喜欢书信。所以我有一间邮局!", "monday,8000,18000;tuesday,8000,18000;wednesday,8000,18000;thursday,8000,18000;friday,8000,18000", "我的邮局会在周一至周五的8点到18点营业"); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 200); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 350); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", .withTag({identifier: "Guide_On_How_To_Summon_Harvest_Goddess"}), 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 1000); + +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买")); +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买")); + +// --- EnchantingPlus --- +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 601000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:librarian", , 600000); + +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买。不需要卷轴。")); +.addTooltip(format.green("这个物品可以在市政厅的Cloe处购买。不需要卷轴。")); + +// --- Tiberus + +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addShopToNPC("tiberius", "Secret Shop", "我有一家秘密商店。哦!现在好像不是秘密了!", "monday,10000,18000;tuesday,10000,18000;wednesday,10000,18000;thursday,10000,18000;friday,10000,18000", "我的邮局会在周一至周五的10点到18点营业"); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:secret shop", , 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:secret shop", , 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:secret shop", , 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:secret shop", .withTag({brewKey: "bloodthirst"}), 2000); + +.addTooltip(format.green("这个物品可以在钟表小屋处购买")); +.addTooltip(format.green("每颗心可以增加一颗心的生命上限。最大为40颗。")); +.addTooltip(format.green("这个物品可以在钟表小屋处购买")); +.addTooltip(format.green("这个物品可以在钟表小屋处购买")); +.withTag({brewKey: "bloodthirst"}).addTooltip(format.green("这个物品可以制作或在钟表小屋处购买。")); + +//recipes.remove(); +//recipes.remove(); +//recipes.remove(); + +// --- MusicDiscs +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:church", , 2500); + +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); +.addTooltip(format.green("这个物品可以在教堂的Tomas处购买")); + + +.addTooltip(format.green("Wild Horseradish Jam - Stardew Valley music")); +.addTooltip(format.green("It's A Big World Outside - Stardew Valley music")); +.addTooltip(format.green("Pelican Town - Stardew Valley music")); +.addTooltip(format.green("Ancient - Stardew Valley music")); +.addTooltip(format.green("Calico Desert - Stardew Valley music")); +.addTooltip(format.green("Nocturne Of Ice - Stardew Valley music")); +.addTooltip(format.green("This disc plays Stardew Valley music")); +.addTooltip(format.green("Mines Crystal Bells - Stardew Valley music")); +.addTooltip(format.green("Setting In - Stardew Valley music")); +.addTooltip(format.green("The Wind Can be Still - Stardew Valley music")); +.addTooltip(format.green("Cloud Country - Stardew Valley music")); +.addTooltip(format.green("Song Of Feathers Emily's Theme - Stardew Valley music")); + +// --- DoggyTalents + +.addTooltip(format.green("右键来生成你的小狗。然后用木棍右键来打开交互GUI,你可以在里面重命名或升级它。")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("你可以在畜牧场的Candice那儿领养小狗")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); +.addTooltip(format.green("这个物品可以在畜牧场的Candice那儿购买")); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addShopToNPC("candice", "Animal Shelter", "你好,我在经营一家动物收留所,这儿有些小狗狗需要一个新家。你想领养一只吗?", "monday,10000,13000;tuesday,10000,13000;Wednesday,5000,13000;Thursday,10000,13000;Friday,10000,13000;Saturday,10000,13000", "如果你想领养小狗或买一些玩具给它,请在周一至周六的10点到13点来这。"); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 200); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 750); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 200); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 400); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 5000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 10000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 100000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 1000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 25000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 25000); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 100); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 250); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 250); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 2500); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 200); +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:animal shelter",, 200); +recipes.addShapeless(,[ ]); + +// --- ExoticBirds +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在杂货铺购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); +.addTooltip(format.green("这个物品可以在养鸡场的Ashlee处购买")); + +.addTooltip(format.green("这个机器只能用于Exotic Bird模组。")); +.addTooltip(format.green("这个机器只能用于Exotic Bird模组。")); +.addTooltip(format.green("这个机器只能用于Exotic Bird模组。")); + +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); +recipes.remove(); + +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry",, 2500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry",, 50000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:general",, 2500); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry",, 5000); +mods.harvestfestival.Shops.addPurchasable("harvestfestival:poultry",, 50000); + +// --- HarvestFestival --- +mods.harvestfestival.Shops.addPurchasable("MineTweaker3:botanists", , 150000); +.addTooltip(format.green("这个物品能在一年后,在Danieru处购买,需要10000元。")); +.addTooltip(format.green("如果你想更早一些买到它,你可以在市长Jeimmi处花更高的价格购买。")); diff --git a/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/3dcrafter.json b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/3dcrafter.json new file mode 100644 index 000000000..465db12d4 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/3dcrafter.json @@ -0,0 +1,445 @@ +{ + "registryname": "minifield-crafter", + "localizedname": "3D制造机", + "requires-blueprint": true, + "color": "757575", + "modifiers": [ + { + "x": [-2,-1,0,1,2], + "y": 0, + "z": [1,7], + "elements": "techreborn:machine_casing@1", + "description": "升级机械外壳来减少处理时间。", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.98 + } + }, + { + "x": [-3,3], + "y": 0, + "z": [2,3,4,5,6], + "elements": "techreborn:machine_casing@1", + "description": "升级机械外壳来减少处理时间。", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.98 + } + }, + { + "x": [-2,-1,0,1,2], + "y": 0, + "z": [1,7], + "elements": "techreborn:machine_casing@2", + "description": "升级机械外壳来减少处理时间。", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.96 + } + }, + { + "x": [-3,3], + "y": 0, + "z": [2,3,4,5,6], + "elements": "techreborn:machine_casing@2", + "description": "升级机械外壳来减少处理时间。", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.96 + } + } + ], + "parts": [ + { + "x": [-2,-1,0,1,2], + "y": 0, + "z": [1,7], + "elements": [ + "techreborn:machine_casing@0" + ] + }, + { + "x": [-3,3], + "y": 0, + "z": [2,3,4,5,6], + "elements": [ + "techreborn:machine_casing@0" + ] + }, + { + "x": [-1,0,1], + "y": 4, + "z": [3,4,5], + "elements": [ + "actuallyadditions:block_misc@8" + ] + }, + { + "x": [-2,-1,0,1,2], + "y": [1,2], + "z": [1,7], + "elements": [ + "thermalfoundation:glass_alloy@7" + ] + }, + { + "x": [-3,3], + "y": [1,2], + "z": [2,3,4,5,6], + "elements": [ + "thermalfoundation:glass_alloy@7" + ] + }, + { + "x": -4, + "y": 0, + "z": 4, + "elements": [ + "casings_item_energy" + ] + }, + { + "x": 4, + "y": 0, + "z": 4, + "elements": [ + "casings_item_energy" + ] + }, + { + "x": 0, + "y": 0, + "z": 8, + "elements": [ + "casings_item_energy" + ] + }, + { + "x": 0, + "y": 1, + "z": 8, + "elements": [ + "fieldprojector" + ] + }, + { + "x": 4, + "y": 1, + "z": 4, + "elements": [ + "fieldprojector" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "fieldprojector" + ] + }, + { + "x": -4, + "y": 1, + "z": 4, + "elements": [ + "fieldprojector" + ] + }, + { + "x": 1, + "y": 4, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -1, + "y": 4, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 4, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 4, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 0, + "y": 4, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 4, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 2, + "y": 4, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 3, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": 4, + "z": 5, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 2, + "y": 4, + "z": 5, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 4, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 4, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 4, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 3, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": 3, + "z": 7, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -1, + "y": 3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 3, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 3, + "z": 7, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 1, + "y": 3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 3, + "z": 7, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 3, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 2, + "y": 4, + "z": 3, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 4, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/assembler.json b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/assembler.json new file mode 100644 index 000000000..af483cc06 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/assembler.json @@ -0,0 +1,842 @@ +{ + "registryname": "assembler", + "localizedname": "装配机", + "requires-blueprint": true, + "color": "A5A5A5", + "parts": [ + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 1, + "y": -1, + + "z": 0, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 0, + "y": 3, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 3, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 0, + "y": 3, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:molecular_assembler@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 3, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "appliedenergistics2:interface@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": 3, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:molecular_assembler@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/darknesscollector.json b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/darknesscollector.json new file mode 100644 index 000000000..b85c05cc9 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/darknesscollector.json @@ -0,0 +1,879 @@ +{ + "registryname": "darkness-collector", + "localizedname": "暗影冷凝器", + "requires-blueprint": true, + "color": "34c7bd", + "modifiers": [ + { + "x": 0, + "y": 2, + "z": 4, + "elements": "environmentaltech:aethium@0", + "description": "在位于后侧的机械电路板上放置方块使处理时间减半", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.5 + } + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": "iceandfire:dragonsteel_ice_block@0", + "description": "在位于左侧的机械电路板上放置方块使所需流体减半", + "modifier": { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 0.5 + } + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": "deepmoblearning:infused_ingot_block@0", + "description": "在位于右侧的机械电路板上放置方块可获得20%几率不消耗材料", + "modifier": { + "io": "input", + "target": "item", + "operation": 0, + "multiplier": -0.2, + "affectChance": true + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumcraft:metal_void", + "description": "在位于中间的机械电路板上放置以获得2倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 2.0 + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumadditions:mithrillium_block", + "description": "在位于中间的机械电路板上放置以获得3倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 3.0 + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumadditions:adaminite_block", + "description": "在位于中间的机械电路板上放置以获得4倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 4.0 + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumadditions:mithminite_block", + "description": "在位于中间的机械电路板上放置以获得5倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 5.0 + } + } + ], + "parts": [ + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "casings_item_fluid" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "casings_item_fluid" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "casings_item_fluid" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 7, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 5, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 7, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 5, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -2, + "y": 8, + "z": 3, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 8, + "z": 3, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 6, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -2, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 5, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 5, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 5, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 3, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": -3, + "y": 8, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": -2, + "y": 8, + "z": 2, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 8, + "z": 2, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 3, + "y": 8, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": 2, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": -2, + "y": 7, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 7, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 7, + "z": 5, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": -2, + "y": 8, + "z": 1, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -1, + "y": 6, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 6, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 8, + "z": 1, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 6, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 6, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 8, + "z": 5, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": 0, + "y": 6, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 6, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 4, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 8, + "z": -1, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": -1, + "y": 7, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 7, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 7, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 7, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 5, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 7, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 5, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 5, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 7, + "z": -1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 8, + "z": 0, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 0, + "y": 8, + "z": 0, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 8, + "z": 0, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 8, + "z": 4, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -1, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 8, + "z": 4, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -1, + "y": 4, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 8, + "z": 4, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 2, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 4, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/heavens-forge.json b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/heavens-forge.json new file mode 100644 index 000000000..8a08ae362 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/heavens-forge.json @@ -0,0 +1,677 @@ +{ + "registryname": "heavens-forge", + "localizedname": "天堂锻炉", + "requires-blueprint": true, + "color": "411e57", + "modifiers": [ + { + "x": [1,-1], + "y": [0,1], + "z": [0,2], + "elements": "extendedcrafting:lamp", + "description": "往午夜金属框架中添加流明精华以减少所需时间。", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.90 + } + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": "avaritia:block_resource@2", + "description": "替换晶素(Crystaltine)块以减半所需流体。", + "modifier": { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 0.5 + } + } + + ], + "parts": [ + + { + "x": [1,-1], + "y": [0,1], + "z": [0,2], + "elements": [ + "extendedcrafting:frame" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modulardiversity:blockmeklaseracceptor@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 4, + "y": -1, + "z": 1, + "elements": [ + "item_fluid" + ] + }, + { + "x": -4, + "y": -1, + "z": 1, + "elements": [ + "item_fluid" + ] + }, + { + "x": 4, + "y": 0, + "z": 2, + "elements": [ + "item_fluid" + ] + }, + { + "x": -4, + "y": 0, + "z": 2, + "elements": [ + "item_fluid" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -4, + "y": 0, + "z": 0, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 4, + "y": 0, + "z": 0, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -5, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -5, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 4, + "y": -1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -4, + "y": 1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -3, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -5, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": -5, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -4, + "y": 1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -4, + "y": -1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": 4, + "y": 1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -5, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 5, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 4, + "y": 1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 5, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -5, + "y": 0, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 5, + "y": 0, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -5, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -4, + "y": 1, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -5, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 4, + "y": 1, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": 5, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 4, + "y": -1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -5, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "extendedcrafting:storage@3" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/lowgravitydepositionchamber.json b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/lowgravitydepositionchamber.json new file mode 100644 index 000000000..d9fa339a7 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/lowgravitydepositionchamber.json @@ -0,0 +1,4567 @@ +{ + "registryname": "lowgravitydepositionchamber", + "localizedname": "低引力凝华仓", + "requires-blueprint": true, + "color": "222222", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": 6, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 6, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -5, + "y": 9, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 8, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 4, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 4, + "y": 8, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 2, + "y": 4, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 9, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 5, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 5, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 10, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 2, + "y": 6, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 11, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 1, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -1, + "y": 7, + "z": 1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 1, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": 7, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 12, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 13, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 14, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -3, + "y": 8, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 8, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 9, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 15, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 4, + "y": 9, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 11, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 16, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -1, + "y": 0, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 11, + + "elements": [ + "LGDC" + ] + }, + { + "x": 1, + "y": 0, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 11, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 11, + + "elements": [ + "LGDC" + ] + }, + { + "x": -1, + "y": -1, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 10, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 1, + "y": 1, + "z": 11, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 11, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 9, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 9, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 9, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 8, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -4, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 8, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 9, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 9, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 9, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 8, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 8, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 4, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 10, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 6, + "z": -4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -6, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 9, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 5, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 9, + "z": -2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 9, + "z": -2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -1, + "y": 9, + "z": -2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 9, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 2, + "z": -5, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 0, + "y": 4, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 2, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 6, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 1, + "z": -5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": -5, + + "elements": [ + "LGDC" + ] + }, + { + "x": -1, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 9, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 3, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 1, + "z": -5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 6, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 9, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 0, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": -5, + + "elements": [ + "LGDC" + ] + }, + { + "x": 0, + "y": 2, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 2, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 0, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 8, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 8, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 8, + "z": -1, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": 0, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 8, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -2, + "y": 8, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -5, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -1, + "y": 1, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": 1, + "z": 5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -6, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 1, + "y": 0, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 2, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": 2, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 8, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -8, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -7, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -7, + "y": -1, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -6, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": 9, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 9, + "z": 8, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 9, + "z": 8, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 9, + "z": 8, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 2, + "y": 9, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": -3, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": -3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -1, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": -3, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 7, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 7, + "y": -1, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 8, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -8, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 0, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": -7, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 8, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 8, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 8, + "z": 7, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -3, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 4, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 8, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": 8, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": -3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 0, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 4, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 6, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 8, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 0, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": -8, + "y": 1, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": -8, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 9, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -6, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": -3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 5, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 1, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 9, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 4, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 5, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -2, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -4, + "y": -1, + "z": -3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": 1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 5, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 1, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": 7, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 2, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -8, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 2, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -7, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -6, + "y": 2, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 8, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 8, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 6, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": 2, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 2, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 6, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 2, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 7, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 8, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -7, + "y": 3, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -4, + "y": 9, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -6, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": -2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -6, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 5, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 4, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 5, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": -1, + "z": -2, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 5, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 5, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 1, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 5, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": 9, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -1, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -2, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": -2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 3, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 6, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 7, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -8, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 4, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -7, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 4, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 4, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 4, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 6, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 5, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 5, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 1, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 2, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -1, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 5, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -5, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 7, + "y": 5, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -7, + "y": 6, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -4, + "y": 8, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 6, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/mixer.json b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/mixer.json new file mode 100644 index 000000000..e97520fcc --- /dev/null +++ b/project/Multiblock Madness/1.0.6/config/modularmachinery/machinery/mixer.json @@ -0,0 +1,840 @@ +{ + "registryname": "mixer", + "localizedname": "混合器", + "requires-blueprint": true, + "color": "52565c", + "parts": [ + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "casings_mixer" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "casings_mixer" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 0, + "y": 0, + "z": 6, + "elements": [ + "casings_mixer" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + + { + "x": -1, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "cyclicmagic:block_storeempty@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_device0@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "cyclicmagic:block_storeempty@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 6, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 6, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 6, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": -1, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "advgenerators:efficiency_upgrade_tier1@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 1, + "z": 5, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 5, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 5, + "elements": [ + "advgenerators:efficiency_upgrade_tier1@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 5, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 5, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "thermalfoundation:glass@3" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/resources/advgenerators/lang/zh_CN.lang b/project/Multiblock Madness/1.0.6/resources/advgenerators/lang/zh_CN.lang new file mode 100644 index 000000000..9aa29d941 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/resources/advgenerators/lang/zh_CN.lang @@ -0,0 +1,18 @@ +// === Turbine Materials + + +item.advgenerators.turbine_blade_hslasteel.name=HSLA 钢制涡轮叶片 +item.advgenerators.turbine_rotor_hslasteel.name=HSLA 钢制涡轮转子 +item.advgenerators.turbine_kit_hslasteel.name=HSLA 钢制转子升级组件 +tile.advgenerators.turbine_hslasteel.name=HSLA 钢质涡轮机 + +item.advgenerators.turbine_blade_extreme.name=极限合金涡轮叶片 +item.advgenerators.turbine_rotor_extreme.name=极限合金涡轮转子 +item.advgenerators.turbine_kit_extreme.name=极限合金转子升级组件 +tile.advgenerators.turbine_extreme.name=极限合金涡轮机 + +item.advgenerators.turbine_blade_super.name=超级合金涡轮叶片 +item.advgenerators.turbine_rotor_super.name=超级合金涡轮转子 +item.advgenerators.turbine_kit_super.name=超级合金转子升级组件 +tile.advgenerators.turbine_super.name=超级合金涡轮机 + diff --git a/project/Multiblock Madness/1.0.6/resources/contenttweaker/lang/zh_cn.lang b/project/Multiblock Madness/1.0.6/resources/contenttweaker/lang/zh_cn.lang new file mode 100644 index 000000000..576a154d1 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/resources/contenttweaker/lang/zh_cn.lang @@ -0,0 +1,118 @@ +tile.contenttweaker.sheetmetal_bronze.name=青铜金属块 +tile.contenttweaker.sheetmetal_refinediron.name=精炼铁金属块 +tile.contenttweaker.sheetmetal_thaumium.name=神秘锭金属块 +tile.contenttweaker.sheetmetal_brass.name=黄铜金属块 +tile.contenttweaker.sheetmetal_nimonic.name=铌锰合金块 +tile.contenttweaker.vanasteel_scaffolding.name=钒钢锭脚手架 +tile.contenttweaker.scal_scaffolding.name=钪铝合金脚手架 +tile.contenttweaker.bam_scaffolding.name=铝镁硼合金脚手架 +tile.contenttweaker.invar_scaffolding.name=殷钢脚手架 +tile.contenttweaker.nimonic_scaffolding.name=铌锰合金脚手架 +tile.contenttweaker.plating_basic.name=基础板块 +tile.contenttweaker.plating_advanced.name=高级板块 +tile.contenttweaker.plating_elite.name=精英板块 +tile.contenttweaker.plating_extreme.name=终极板块 +tile.contenttweaker.plating_du.name=枯竭铀板块 +tile.contenttweaker.starmetal_block.name=星辉锭块 + +item.contenttweaker.hastelloyfoil.name=哈氏合金薄片 +item.contenttweaker.goldfoil.name=金薄片 +item.contenttweaker.aluminumcasing.name=铝壳 +item.contenttweaker.inert_ingot.name=惰性金属锭 +item.contenttweaker.rod_bam.name=铝镁硼合金棒 +item.contenttweaker.rod_scal.name=钪铝合金棒 +item.contenttweaker.rod_vanasteel.name=钒钢锭棒 +item.contenttweaker.rod_nimonic.name=铌锰合金棒 +item.contenttweaker.greatwood_handle.name=宏伟木棍 +item.contenttweaker.slatedust.name=§e粉碎石板 +item.contenttweaker.activatedaspectuscopper.name=铜之星能元素象征 +item.contenttweaker.activatedaspectussilver.name=银之星能元素象征 +item.contenttweaker.activatedaspectusdawnstone.name=黎明石之星能元素象征 + +item.contenttweaker.adventure_token_tier1.name=等级1 冒险徽章 +item.contenttweaker.exploring_token_tier1.name=等级1 探索徽章 +item.contenttweaker.mining_token_tier1.name=等级1 挖掘徽章 +item.contenttweaker.tech_token_tier1.name=等级1 科技徽章 +item.contenttweaker.magic_token_tier1.name=等级1 魔法徽章 + +item.contenttweaker.adventure_token_tier2.name=等级2 冒险徽章 +item.contenttweaker.exploring_token_tier2.name=等级2 探索徽章 +item.contenttweaker.mining_token_tier2.name=等级2 挖掘徽章 +item.contenttweaker.tech_token_tier2.name=等级2 科技徽章 +item.contenttweaker.magic_token_tier2.name=等级2 魔法徽章 + +item.contenttweaker.adventure_token_tier3.name=等级3 冒险徽章 +item.contenttweaker.exploring_token_tier3.name=等级3 探索徽章 +item.contenttweaker.mining_token_tier3.name=等级3 挖掘徽章 +item.contenttweaker.tech_token_tier3.name=等级3 科技徽章 +item.contenttweaker.magic_token_tier3.name=等级3 魔法徽章 + +item.contenttweaker.adventure_token_tier4.name=等级4 冒险徽章 +item.contenttweaker.exploring_token_tier4.name=等级4 探索徽章 +item.contenttweaker.mining_token_tier4.name=等级4 挖掘徽章 +item.contenttweaker.tech_token_tier4.name=等级4 科技徽章 +item.contenttweaker.magic_token_tier4.name=等级4 魔法徽章 + +item.contenttweaker.adventure_token_tier5.name=等级5 冒险徽章 +item.contenttweaker.exploring_token_tier5.name=等级5 探索徽章 +item.contenttweaker.mining_token_tier5.name=等级5 挖掘徽章 +item.contenttweaker.tech_token_tier5.name=等级5 科技徽章 +item.contenttweaker.magic_token_tier5.name=等级5 魔法徽章 + +item.contenttweaker.adamantine_ingot.name=精金锭 +item.contenttweaker.orichalcum_ingot.name=奥利哈尔钢锭 +item.contenttweaker.palladium_ingot.name=钯锭 +item.contenttweaker.terrasteel_coil.name=泰拉钢加热线圈 +item.contenttweaker.gearcrushinginvar.name=殷钢粉碎轮 +item.contenttweaker.gearcrushingsteel.name=钢粉碎轮 +item.contenttweaker.gearcrushingdarksteel.name=玄钢粉碎轮 +item.contenttweaker.gearcrushingcortensteel.name=耐候钢粉碎轮 +item.contenttweaker.gearcrushingvanasteel.name=钒钢锭粉碎轮 + +item.contenttweaker.agitatorinvar.name=殷钢搅拌器 +item.contenttweaker.agitatorsteel.name=钢搅拌器 +item.contenttweaker.agitatordarksteel.name=玄钢搅拌器 +item.contenttweaker.agitatorhydronalium.name=铝镁合金搅拌器 +item.contenttweaker.agitatorhastelloy.name=哈氏合金 搅拌器 + +item.contenttweaker.foilinvar.name=殷钢薄片 +item.contenttweaker.foilsteel.name=钢薄片 +item.contenttweaker.foildarksteel.name=玄钢薄片 +item.contenttweaker.foilhydronalium.name=铝镁合金薄片 + +item.contenttweaker.rodinvar.name=殷钢棒 +item.contenttweaker.rodsteel.name=钢棒 +item.contenttweaker.roddarksteel.name=玄钢棒 +item.contenttweaker.rodhydronalium.name=铝镁合金棒 + +item.contenttweaker.blood_crystal.name=鲜血水晶 +item.contenttweaker.adaptive_ingot.name=自适应金属锭 +item.contenttweaker.casingsteel.name=钢壳 +item.contenttweaker.casingplatinum.name=铂壳 +item.contenttweaker.purpleprint.name=§5多方块结构映射器 + +item.contenttweaker.ingot_xp.name=经验灌注荧石锭 +tile.contenttweaker.block_xp.name=经验灌注荧石 + +fluid.moltenEmbers=熔融余烬 +fluid.moltenBedrock=熔融基岩 +fluid.moltenTokenIron=等级1源质 +fluid.moltenTokenBronze=等级2源质 +fluid.moltenTokenSteel=等级3源质 +fluid.moltenTokenRefinedIron=等级4源质 +fluid.moltenTokenOsmium=等级5源质 + + +item.contenttweaker.compressed_chrome.name=压缩铬 + +item.contenttweaker.matrix_deposition_+.name=正极凝华矩阵锭 +item.contenttweaker.matrix_deposition_-.name=负极凝华矩阵锭 +item.contenttweaker.neutronic.name=§l§8中子矩阵锭 +item.contenttweaker.incoherent.name=§l§c无逻辑矩阵锭 + +qmd.particle.filon.name=Filon +qmd.particle.filon.desc=终极宇宙之力! + +tile.contenttweaker.sooty_block.name=炭灰外壳 + +item.contenttweaker.lazurite_gem.name=青金宝石 \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/resources/jaopca/lang/zh_cn.lang b/project/Multiblock Madness/1.0.6/resources/jaopca/lang/zh_cn.lang new file mode 100644 index 000000000..fe944fc35 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/resources/jaopca/lang/zh_cn.lang @@ -0,0 +1,4 @@ +item.jaopca.crushedlump.name=%s碎块 +item.jaopca.leachedshard.name=%s碎片 +tile.jaopca.sheetmetal.name=%s薄片 +tile.jaopca.scaffolding.name=%s脚手架 \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/resources/mekatweaker/lang/zh_cn.lang b/project/Multiblock Madness/1.0.6/resources/mekatweaker/lang/zh_cn.lang new file mode 100644 index 000000000..26559acda --- /dev/null +++ b/project/Multiblock Madness/1.0.6/resources/mekatweaker/lang/zh_cn.lang @@ -0,0 +1,2 @@ +infuse.chrome=铬 +infuse.experience=经验 \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/add-recipes-temp.zs b/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/add-recipes-temp.zs new file mode 100644 index 000000000..f1ffb4127 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/add-recipes-temp.zs @@ -0,0 +1,495 @@ +########################################################################################## +#priority 100 +import crafttweaker.item.IItemStack; +import mods.jei.JEI.removeAndHide as rh; +import mods.jaopca.JAOPCA; +print("==================== loading mods add-recipes-temp.zs ===================="); +########################################################################################## + +### REMOVE RECIPES ### + +val recipestoRemove = +[ +, +, +, +, +, +//, +//, +//, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in recipestoRemove { + recipes.remove(item); +} + + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +/* +, +, +, +, +, +, +*/ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + mods.jei.JEI.removeAndHide(item); +} +recipes.removeShaped(, +[[null, , null], +[, , ], +[null, , null]]); +recipes.removeShaped(, [[, ],[, ]]); +recipes.removeShaped(, [[, , ]]); +recipes.removeShaped(, [[, , ]]); +recipes.removeShaped( * 6, [[, , ]]); +recipes.removeShapeless(, []); + +//-----------------just jei things +.displayName = "Quartz"; + +//mods.jei.JEI.addItem(); + +mods.jei.JEI.addItem(.withTag({textureBlock: {id: "tconstruct:metal", Count: 1 as byte, Damage: 4 as short}})); +mods.jei.JEI.addItem(.withTag({textureBlock: {id: "tconstruct:metal", Count: 1 as byte, Damage: 3 as short}})); + + + +//mods.jei.JEI.addItem(); +//mods.jei.JEI.addDescription(,"Your first Steel is made in the High Oven"); +.addTooltip(format.darkRed("你的第一块钢是通过高炉获得的")); +.addTooltip(format.darkRed("不常见的怪物凋落物")); +mods.jei.JEI.hideCategory("Painter"); +mods.jei.JEI.hideCategory("mekanism.combiner"); +mods.jei.JEI.hideCategory("EIOWC"); +mods.jei.JEI.hideCategory("EIOWO"); +mods.jei.JEI.hideCategory("thermalexpansion.factorizer_combine"); +mods.jei.JEI.hideCategory("thermalexpansion.factorizer_split"); +mods.jei.JEI.hideCategory("EIOTank"); +mods.jei.JEI.hideCategory("tinker_io:smart_output"); +mods.jei.JEI.hideCategory("embers.dawnstone_anvil"); + +### ADD ORE DICs ### + +val slimyMoss = ; +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); + + + +### Add recipes ### + +//salt block +recipes.addShaped(, [[, ],[, ]]); + +//Chest reset +recipes.addShapeless(, []); + +//blindfold +recipes.addShaped(, [[, , ]]); + +//Id card +recipes.addShapeless(, [,]); + +//Tier 1 Drawer +//recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Metal Ladder coflict +recipes.addShaped( * 2, [[, , ],[null, null, null], [, , ]]); + + +//Super Tome +mods.jei.JEI.removeAndHide(); +mods.jei.JEI.addItem(.withTag({"akashictome:data": { + tconstruct: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "tconstruct:book", Count: 1 as byte, tag: {"akashictome:definedMod": "tconstruct"}, Damage: 0 as short}, + integratedtunnels: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "integrateddynamics:on_the_dynamics_of_integration", Count: 1 as byte, tag: {"akashictome:definedMod": "integratedtunnels"}, Damage: 0 as short}, + astralsorcery: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "astralsorcery:itemjournal", Count: 1 as byte, tag: {"akashictome:definedMod": "astralsorcery"}, Damage: 0 as short}, + conarm: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "conarm:book", Count: 1 as byte, tag: {"akashictome:definedMod": "conarm"}, Damage: 0 as short}, + immersiveengineering: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "immersiveengineering:tool", Count: 1 as byte, tag: {"akashictome:definedMod": "immersiveengineering"}, Damage: 3 as short}, + arcanearchives: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "arcanearchives:tome_arcana", Count: 1 as byte, tag: {"akashictome:definedMod": "arcanearchives", Book: "arcanearchives:xml/tome.xml"}, Damage: 0 as short}, + qmd: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "qmd", "patchouli:book": "qmd:guide"}, Damage: 0 as short}, + valkyrielib: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "valkyrielib:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "valkyrielib"}, Damage: 0 as short}, + embers: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "embers:codex", Count: 1 as byte, tag: {"akashictome:definedMod": "embers"}, Damage: 0 as short}, + rftools: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_shape_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools"}, Damage: 0 as short}, + deepmoblearning: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "deepmoblearning", "patchouli:book": "deepmoblearning:book"}, Damage: 0 as short}, + solcarrot: {id: "solcarrot:food_book", Count: 1 as byte, tag: {"akashictome:definedMod": "solcarrot"}, Damage: 0 as short}, + rftools1: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools1"}, Damage: 0 as short}, + extendedcrafting: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "extendedcrafting:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "extendedcrafting"}, Damage: 0 as short}, + botania: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "botania:lexicon", Count: 1 as byte, tag: {"knowledge.minecraft": 1 as byte, "akashictome:definedMod": "botania", "knowledge.alfheim": 1 as byte, "knowledge.relic": 1 as byte}, Damage: 0 as short}, + bloodmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:bloodmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "bloodmagic"}, Damage: 0 as short}, + actuallyadditions: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "actuallyadditions:item_booklet", Count: 1 as byte, tag: {"akashictome:definedMod": "actuallyadditions"}, Damage: 0 as short}, + cyclicmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:cyclicmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "cyclicmagic"}, Damage: 0 as short}, + openblocks: {id: "openblocks:info_book", Count: 1 as byte, tag: {"akashictome:definedMod": "openblocks"}, Damage: 0 as short}, + cookingforblockheads: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "cookingforblockheads:recipe_book", Count: 1 as byte, tag: {"akashictome:definedMod": "cookingforblockheads"}, Damage: 1 as short}, + nuclearcraft: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "nuclearcraft", "patchouli:book": "nuclearcraft:guide"}, Damage: 0 as short}}}) +); +recipes.addShaped(.withTag({"akashictome:data": { + tconstruct: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "tconstruct:book", Count: 1 as byte, tag: {"akashictome:definedMod": "tconstruct"}, Damage: 0 as short}, + integratedtunnels: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "integrateddynamics:on_the_dynamics_of_integration", Count: 1 as byte, tag: {"akashictome:definedMod": "integratedtunnels"}, Damage: 0 as short}, + astralsorcery: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "astralsorcery:itemjournal", Count: 1 as byte, tag: {"akashictome:definedMod": "astralsorcery"}, Damage: 0 as short}, + conarm: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "conarm:book", Count: 1 as byte, tag: {"akashictome:definedMod": "conarm"}, Damage: 0 as short}, + immersiveengineering: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "immersiveengineering:tool", Count: 1 as byte, tag: {"akashictome:definedMod": "immersiveengineering"}, Damage: 3 as short}, + arcanearchives: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "arcanearchives:tome_arcana", Count: 1 as byte, tag: {"akashictome:definedMod": "arcanearchives", Book: "arcanearchives:xml/tome.xml"}, Damage: 0 as short}, + qmd: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "qmd", "patchouli:book": "qmd:guide"}, Damage: 0 as short}, + valkyrielib: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "valkyrielib:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "valkyrielib"}, Damage: 0 as short}, + embers: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "embers:codex", Count: 1 as byte, tag: {"akashictome:definedMod": "embers"}, Damage: 0 as short}, + rftools: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_shape_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools"}, Damage: 0 as short}, + deepmoblearning: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "deepmoblearning", "patchouli:book": "deepmoblearning:book"}, Damage: 0 as short}, + solcarrot: {id: "solcarrot:food_book", Count: 1 as byte, tag: {"akashictome:definedMod": "solcarrot"}, Damage: 0 as short}, + rftools1: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools1"}, Damage: 0 as short}, + extendedcrafting: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "extendedcrafting:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "extendedcrafting"}, Damage: 0 as short}, + botania: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "botania:lexicon", Count: 1 as byte, tag: {"knowledge.minecraft": 1 as byte, "akashictome:definedMod": "botania", "knowledge.alfheim": 1 as byte, "knowledge.relic": 1 as byte}, Damage: 0 as short}, + bloodmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:bloodmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "bloodmagic"}, Damage: 0 as short}, + actuallyadditions: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "actuallyadditions:item_booklet", Count: 1 as byte, tag: {"akashictome:definedMod": "actuallyadditions"}, Damage: 0 as short}, + cyclicmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:cyclicmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "cyclicmagic"}, Damage: 0 as short}, + openblocks: {id: "openblocks:info_book", Count: 1 as byte, tag: {"akashictome:definedMod": "openblocks"}, Damage: 0 as short}, + cookingforblockheads: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "cookingforblockheads:recipe_book", Count: 1 as byte, tag: {"akashictome:definedMod": "cookingforblockheads"}, Damage: 1 as short}, + nuclearcraft: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "nuclearcraft", "patchouli:book": "nuclearcraft:guide"}, Damage: 0 as short}}}), +[[null, , null],[, , ], [null, , null]]); + +//Rope +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//Modem +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//XP Tank +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + +//Broken powersuit recipe +recipes.addShaped(, [[, , ],[, , ], [, null, ]]); + +//Prefab +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Beet Seeds +recipes.addShapeless(, []); + +//No more cooked carrots! +furnace.remove(, ); +recipes.removeShapeless(, [, , , ]); + +//Missing Salads +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); + +//Choco +furnace.remove(, ); +furnace.addRecipe(, , 0.0); + +//Iron Bars +recipes.addShaped( * 8, [[.withTag({Material: "iron"}), .withTag({Material: "iron"}), .withTag({Material: "iron"})], [.withTag({Material: "iron"}), .withTag({Material: "iron"}), .withTag({Material: "iron"})]]); + +//The Hacatu Fix +recipes.addShaped( * 8, [[, , ], [, , ]]); + +//Radiant Resonators +recipes.addShaped(, [[, , ],[, , ], [, null, ]]); +.addTooltip(format.red("每位玩家最多拥有3个")); + +//dark bars +recipes.addShaped( * 8, [[, , ], [, , ]]); +//end bars +recipes.addShaped( * 8, [[, , ], [, , ]]); + +recipes.addShapeless(, [,,,]); +recipes.addShaped( * 6, [[, , ],[null, null, null], [null, null, null]]); +recipes.addShaped( * 15, [[, , ],[, null, null], [, , ]]); + + +recipes.addShaped(, [[],[], []]); + + +recipes.addShapedMirrored(, [[, , ],[, , ], [, , ]]); +//recipes.addShapedMirrored(, [[, , ],[, , .withTag({Material: "copper"})], [, , ]]); + +//Fix blaze blocks +recipes.addShapeless( * 9, []); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShapeless( * 9, []); + + +recipes.addShapeless( * 3, []); + +//recipes.remove(); +//recipes.addShaped(, [[null, , null],[, .withTag({FluidName: "gold", Amount: 1000}), ], [null, , null]]); + +recipes.addShapeless(, [,,]); + +recipes.addShaped( * 2, [[, , ],[, null, ], [, , ]]); + +recipes.addShapeless( * 6, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 5, []); +recipes.addShapeless( * 3, []); + +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +.addTooltip("按下shift查看可用强化"); +.addTooltip("按下shift查看可用强化"); +.addShiftTooltip((format.yellow("- 荧石可增加传输速度\n"))+(format.red("- 红石可开启红石信号控制输入输出功能\n"))+(format.gray("- 铁可以使它在没有位置放置过滤的物品时发出红石信号\n"))+(format.aqua("- 钻石粒能够使它按照过滤进行细微调整"))); +.addShiftTooltip((format.yellow("- 荧石可增加传输速度\n"))+(format.red("- 红石可开启红石信号控制输入输出功能"))); + +//crop sticks +recipes.addShaped( * 4, [[, ],[, ]]); + + +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ],[null, , null]]); + + +//upgrade chisel +recipes.addShaped(, [[null, ],[, null]]); + +//copy paste +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + + +//Furnace +furnace.addRecipe(, , 1.0); + +mods.inworldcrafting.ExplosionCrafting.explodeItemRecipe(, , 75); + +//scanner +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); + + + +//Openblocks tank +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Tank Drawer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +.addTooltip(format.lightPurple("不是用来合成的!")); + +/* Added by Cyclic +.maxStackSize = 64; +.maxStackSize = 64; +recipes.addShapeless( * 9, []); + +.displayName = "Constantan Heating Coil"; +.addTooltip(format.aqua("Grows from a Celestal Crystal Cluster")); +*/ + + +########################################################################################## +print("==================== end of mods add-recipes-temp.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/alloys.zs b/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/alloys.zs new file mode 100644 index 000000000..8b760ad97 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/alloys.zs @@ -0,0 +1,276 @@ +#priority 98 + +import crafttweaker.item.IItemStack; +import crafttweaker.oredict.IOreDict; +import mods.enderio.AlloySmelter; +import mods.immersiveengineering.ArcFurnace; +import mods.nuclearcraft.AlloyFurnace; +import mods.techreborn.blastFurnace; +import mods.thermalexpansion.InductionSmelter; +import mods.techreborn.implosionCompressor; +import mods.mekatweaker.InfuserType; +import mods.mekanism.infuser; + +print("==================== loading parts.zs ===================="); +########################################################################################## + + +################################################### +############## ALLOYS #################### +################################################### + +//inert ingot +ArcFurnace.addRecipe(*2, *2, null, 400, 1024, []); +AlloySmelter.addRecipe(*2, [*2,], 5000); + +//fused quartz +ArcFurnace.addRecipe(, , null, 200, 1024); + +//vibrant alloy +//ArcFurnace.addRecipe(, , null, 1200, 2048, []); +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.addRecipe(, [,], 20000, 0.1); + +//energetic alloy +AlloySmelter.removeRecipe(); +AlloyFurnace.removeRecipeWithOutput(); +ArcFurnace.removeRecipe(); + +ArcFurnace.addRecipe(, , null, 400, 1024, [,]); +AlloySmelter.addRecipe(, [,,], 10000, 0.1); +AlloyFurnace.addRecipe(, , ); +InductionSmelter.addRecipe(, , , 25000); + +//energetic silver +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.removeRecipe(); + +ArcFurnace.addRecipe(, , null, 400, 1024, [,]); +AlloySmelter.addRecipe(, [,,], 10000, 0.1); +AlloyFurnace.addRecipe(, , ); +InductionSmelter.addRecipe(, , , 25000); + +//Pulsating +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.addRecipe(, [,], 10000, 0.1); +ArcFurnace.addRecipe(, , null, 600, 1024, [], "Alloying"); + +//Steel +for item in .items{ArcFurnace.removeRecipe(item);} +ArcFurnace.addRecipe(*2, *2, *2, 400, 512, [], "Alloying"); +ArcFurnace.addRecipe(, , , 400, 512, [], "Alloying"); +ArcFurnace.addRecipe(, , , 400, 512, [*2], "Alloying"); + +//Dark Steel +ArcFurnace.removeRecipe(); +ArcFurnace.addRecipe(, , null, 1200, 1024, [*4], "Alloying"); + +//Electrical Steel +ArcFurnace.removeRecipe(); +ArcFurnace.addRecipe(, , null, 800, 1024, [], "Alloying"); + +//Red Alloy +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.removeRecipe(); +ArcFurnace.addRecipe(, , null, 600, 1024, [,], "Alloying"); +AlloySmelter.addRecipe(, [,,], 10000, 0.1); +//AlloyFurnace.addRecipe([, , , ]); + +//Knight Slime +ArcFurnace.addRecipe(, , null, 600, 1024, [,], "Alloying"); +AlloySmelter.addRecipe(, [, ,], 10000, 0.1); + +//Clear Glass +ArcFurnace.addRecipe(, * 2, null, 200, 512); + +//Advanced Alloy +recipes.remove(); +ArcFurnace.addRecipe(*2, *2, null, 500, 1024, [*2, ], "Alloying"); +AlloySmelter.addRecipe( *2, [ * 2, * 2,], 10000); + +//Enhanced Alloy +recipes.remove(); +//ArcFurnace.addRecipe(*2, *2, null, 1000, 2048, [*2, ], "Alloying"); +AlloySmelter.addRecipe( * 2, [ * 2, * 2,], 15000); + +//Adaptive Ingot +AlloySmelter.addRecipe(, [, ], 15000); +ArcFurnace.addRecipe(, , null, 500, 1024, [], "Alloying"); +AlloyFurnace.addRecipe(, , ); + +//Stellar Alloy +AlloyFurnace.removeRecipeWithOutput(*2); +AlloySmelter.removeRecipe(); +AlloySmelter.addRecipe(*2, [,,*4], 1000000, 0.0); + + +//osgloglas Alloy +AlloySmelter.addRecipe(, [,,], 500000, 0.0); +//osmerdium Alloy +AlloySmelter.addRecipe(*2, [,], 1000000, 0.0); + + +//Prosperity shard +AlloySmelter.addRecipe(*4, [, ], 15000); +InductionSmelter.addRecipe(*4, , , 15000); +AlloyFurnace.addRecipe(, , *4); + +//Quartz Glass +AlloySmelter.addRecipe(, [, ], 15000); +ArcFurnace.addRecipe(, , null, 500, 1024, [], "Alloying"); +AlloyFurnace.addRecipe(, , ); + +//Vib Quartz Glass +AlloySmelter.addRecipe(, [, ,*2], 15000); +ArcFurnace.addRecipe(, , null, 500, 1024, [*2], "Alloying"); +AlloyFurnace.addRecipe(, *2, ); + +//polymer_clay +AlloySmelter.addRecipe(*32, [, *16], 20000); +ArcFurnace.addRecipe(*32, , null, 1200, 512, [*16], "Alloying"); +AlloyFurnace.addRecipe(, *16, *32); + +AlloySmelter.addRecipe(*16, [, *8], 15000); +ArcFurnace.addRecipe(*16, , null, 800, 512, [*8], "Alloying"); +AlloyFurnace.addRecipe(, *8, *16); + +AlloySmelter.addRecipe(*8, [, *4], 10000); +ArcFurnace.addRecipe(*8, , null, 600, 512, [*4], "Alloying"); +AlloyFurnace.addRecipe(, *4, *8); + +AlloySmelter.addRecipe(*4, [, *2], 5000); +ArcFurnace.addRecipe(*4, , null, 600, 512, [*2], "Alloying"); +AlloyFurnace.addRecipe(, *2, *4); + +//Specter Ingot +InductionSmelter.addRecipe(, , , 10000); +InductionSmelter.addRecipe(*2, , , 10000); +ArcFurnace.addRecipe(*2, , null, 500, 1024, [], "Alloying"); +ArcFurnace.addRecipe(, , null, 500, 1024, [], "Alloying"); + +//Titanium Iridium +AlloyFurnace.removeRecipeWithOutput(*2); + +//Bimetal Gear +InductionSmelter.addRecipe(, , *4, 10000); +ArcFurnace.addRecipe(, , null, 500, 1024, [*4], "Alloying"); +AlloySmelter.addRecipe(, [, *4], 10000); + +//Dark Gear +InductionSmelter.addRecipe(, , *4, 25000); +ArcFurnace.addRecipe(, , null, 500, 2048, [*4], "Alloying"); +AlloySmelter.addRecipe(, [, *4], 25000); + +//Energetic Gear +InductionSmelter.addRecipe(, , *4, 50000); +AlloySmelter.addRecipe(, [, *4], 50000); + +//Vibrant Gear +InductionSmelter.addRecipe(, , *4, 100000); +AlloySmelter.addRecipe(, [, *4], 100000); + +//Manylan +furnace.remove(); +AlloyFurnace.removeRecipeWithOutput(); +AlloyFurnace.removeRecipeWithOutput(); +AlloyFurnace.removeRecipeWithOutput(); +ArcFurnace.removeRecipe(); +blastFurnace.addRecipe(, null, , , 600, 80, 1500); + +//Dawnstone +//ArcFurnace.addRecipe(*2, *2, null, 500, 4096, [*2,*2,], "Alloying"); +InductionSmelter.addRecipe(*4, *4, , 75000); + +//Duskstone + recipes.remove(); +.displayName = "黄昏金属锭"; +.displayName = "黄昏金属块"; +AlloySmelter.addRecipe(, [, ,], 100000); + +//Feroborron +ArcFurnace.addRecipe(*2, , null, 500, 2048, [], "Alloying"); +InductionSmelter.addRecipe(*2, , , 75000); + +//Tough Alloy +ArcFurnace.addRecipe(*2, , null, 1000, 2048, [], "Alloying"); +InductionSmelter.addRecipe(*2, , , 75000); + +//Nichrome +AlloyFurnace.removeRecipeWithOutput(*2); +AlloyFurnace.removeRecipeWithOutput(*2); +AlloyFurnace.removeRecipeWithOutput(*2); +infuser.addRecipe("CHROME", 25, , ); + +//Stainless Steel +AlloyFurnace.removeRecipeWithOutput(*6); +AlloyFurnace.removeRecipeWithOutput(*6); +infuser.addRecipe("CHROME", 20, , ); + + +//Pink Slime ingot +InductionSmelter.addRecipe(, , , 50000); +AlloySmelter.addRecipe(, [, ], 50000); +AlloyFurnace.addRecipe(, , ); + +//Crystal ingot +InductionSmelter.addRecipe(, , , 20000); + +//Melodic +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.removeRecipe(); +AlloySmelter.addRecipe(, [, ,], 100000); + + +//XP Ingot +val xpMap as int[IItemStack] = { +:10, +:20, +:20, +:10, +:15, +:20, +:30, +} as int[IItemStack]; +for matter, qty in xpMap { +InfuserType.addTypeObject(matter, "EXPERIENCE", qty); +} +infuser.addRecipe("EXPERIENCE", 100, , ); +recipes.addShaped(, +[[,,], +[,,], +[,,]]); +recipes.addShapeless(*9, []); + + +val alloystoAdapt = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in alloystoAdapt { +AlloySmelter.addRecipe(item * 3, [, item], 15000); +ArcFurnace.addRecipe(item * 3, , null, 500, 1024, [item], "Alloying"); +AlloyFurnace.addRecipe(, item, item * 3); +} + + + + +########################################################################################## +print("==================== end of parts.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/parts.zs b/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/parts.zs new file mode 100644 index 000000000..20180e785 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/Non Mod Scripts/parts.zs @@ -0,0 +1,344 @@ +#priority 98 + +import crafttweaker.item.IItemStack; +import crafttweaker.oredict.IOreDict; +import mods.immersiveengineering.Crusher; +import mods.immersiveengineering.MetalPress; +import mods.nuclearcraft.Manufactory; +import mods.nuclearcraft.Pressurizer; +import mods.techreborn.grinder; +import mods.techreborn.rollingMachine; +import mods.thermalexpansion.Compactor; +import mods.thermalexpansion.Pulverizer; +import mods.advancedrocketry.PlatePresser; +import mods.techreborn.implosionCompressor; +import mods.techreborn.plateBendingMachine; +import mods.techreborn.assemblingMachine; +import mods.advancedrocketry.Lathe; +import mods.enderio.SagMill; + +print("==================== loading parts.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + +//Binder +.displayName = "万用粘合剂"; +recipes.addShapedMirrored(*8, [[, , ],[, , ], [, , ]]); +recipes.addShapeless(*2, [,]); +recipes.addShapeless(*4, [,,,]); +//recipes.addShaped(*8, [[, , ],[, , ], [, , ]]); +//recipes.addShaped(*8, [[, , ],[, , ], [, , ]]); + + +//scaffolding +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); +assemblingMachine.addRecipe(*9, *3, *3, 100, 100); + + + +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); +recipes.addShaped( * 6, [[, , ],[null, , null], [, null, ]]); + + +################# GEARS ####################### +mods.actuallyadditions.AtomicReconstructor.removeRecipe(); + +MetalPress.addRecipe(, , , 2000, 4); +MetalPress.addRecipe(, , , 2000, 4); +Compactor.addGearRecipe(, *4, 4000); + +################# PLATES ####################### +//restonia +//mods.immersiveengineering.MetalPress.addRecipe(, , , 2000); +Compactor.addStorageRecipe(, , 1500); +Pressurizer.addRecipe(, ); +MetalPress.addRecipe(, , , 2000); + +//Enori +//mods.immersiveengineering.MetalPress.addRecipe(, , , 2000); +Compactor.addStorageRecipe(, , 1500); +Pressurizer.addRecipe(, ); +MetalPress.addRecipe(, , , 2000); + +//void +MetalPress.removeRecipe(); +MetalPress.addRecipe(, , , 2000); +Compactor.addStorageRecipe(, , 1500); +Pressurizer.addRecipe(, ); + +//void metal +MetalPress.addRecipe(, , , 2000); +Pressurizer.removeRecipeWithInput(); + +//Carbon Plate +MetalPress.addRecipe(, , , 2000); + +//Iriduim Alloy Plate +Compactor.removeStorageRecipe(); +MetalPress.removeRecipe(); +Pressurizer.removeRecipeWithOutput(); +PlatePresser.removeRecipe(); +mods.advancedrocketry.RollingMachine.removeRecipe(); + +//Electial Steel +//plateBendingMachine.addRecipe(,, 400, 8); + +//Energetic Alloy +//plateBendingMachine.addRecipe(, , 400, 8); + +//QUartz +mods.immersiveengineering.MetalPress.removeRecipe(); +mods.techreborn.compressor.addRecipe(, , 400, 8); + +//sheetmetal +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); + + +### Rolling Machine ### +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9, []); +rollingMachine.addShapeless(*9,[]); +rollingMachine.addShapeless(*9,[]); +rollingMachine.addShapeless(*9,[]); +rollingMachine.addShapeless(*9,[]); +rollingMachine.addShapeless(*9,[]); + +### Compressed Platess ### +mods.techreborn.compressor.addRecipe(, *9, 600, 50); +mods.techreborn.compressor.addRecipe(, *9, 600, 50); +mods.techreborn.compressor.addRecipe(, *9, 600, 50); +mods.techreborn.compressor.addRecipe(, *9, 600, 50); +mods.techreborn.compressor.addRecipe(, *9, 600, 50); + + + +################################### LATHE ###################################### + +mods.advancedrocketry.Lathe.clear(); + +val latheRods as IItemStack[IItemStack] = { +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +} as IItemStack[IItemStack]; + +for material, rod in latheRods { + Lathe.addRecipe(rod*4, 100, 2000, material); +} + + +val latheWires as IItemStack[IItemStack] = { +:, +:, +:, +:, +} as IItemStack[IItemStack]; + +for rod, wire in latheWires { + Lathe.addRecipe(wire*4, 100, 2000, rod); +} + +################################################### +############ CRUSHING #################### +################################################### + + +//clay dust +Crusher.removeRecipe(); +Crusher.addRecipe(*4,, 1024); +Crusher.addRecipe(,, 1024); +grinder.removeRecipe(*9); +grinder.addRecipe(*4, , 300, 4); +grinder.addRecipe(, , 150, 2); +Manufactory.removeRecipeWithInput(); +Manufactory.addRecipe(, * 4); +Manufactory.addRecipe(, ); +Pulverizer.removeRecipe(); +Pulverizer.addRecipe(*4, , 2000); +Pulverizer.addRecipe(, , 1500); +SagMill.addRecipe([*4], [1] , , "NONE"); + +//limestone +val limestoneforFlux = ; +limestoneforFlux.add(); +limestoneforFlux.add(); +limestoneforFlux.add(); +limestoneforFlux.add(); +limestoneforFlux.add(); +for item in limestoneforFlux.items{ +Crusher.addRecipe(*3, item, 1024, , 0.5); +Pulverizer.addRecipe(*4, item, 1500, , 50); +} +Manufactory.addRecipe(, *4); +grinder.addRecipe(*4, , 300, 4); +SagMill.addRecipe([*3], [1] , , "MULTIPLY_OUTPUT"); + + +//sulfur +Crusher.addRecipe(*3, , 1024, , 0.5); +Manufactory.addRecipe(, *4); +grinder.addRecipe(*4, , 300, 4); +Pulverizer.addRecipe(*4, , 1500, , 50); +SagMill.addRecipe([*3], [1] , , "MULTIPLY_OUTPUT"); + +//Radiant Dust +Crusher.addRecipe(*9, , 1024, *3, 0.5); +Manufactory.addRecipe(, *9); +grinder.addRecipe(*9, , 300, 4); +Pulverizer.addRecipe(*9, , 1500, *3, 50); +SagMill.addRecipe([*9], [1] , , "MULTIPLY_OUTPUT"); + + +//Ember Grit +Crusher.addRecipe(, , 2048, , 0.1); +Manufactory.addRecipe(, ); +grinder.addRecipe(, , 300, 4); +Pulverizer.addRecipe(, , 1500, , 10); +SagMill.addRecipe([], [1] , , "NONE"); + + +//Graphite +grinder.addRecipe(, , 300, 4); +SagMill.addRecipe([], [1] , , "NONE"); + +//Slates +Crusher.addRecipe(*2, , 2048); +Crusher.addRecipe(*4, , 2048); +Crusher.addRecipe(*8, , 2048); +Crusher.addRecipe(*16, , 2048); +Crusher.addRecipe(*32, , 2048); +Manufactory.addRecipe(, *2); +Manufactory.addRecipe(, *4); +Manufactory.addRecipe(, *8); +Manufactory.addRecipe(, *16); +Manufactory.addRecipe(, *32); +Pulverizer.addRecipe(*2, , 10000); +Pulverizer.addRecipe(*4, , 10000); +Pulverizer.addRecipe(*8, , 10000); +Pulverizer.addRecipe(*16, , 10000); +Pulverizer.addRecipe(*32, , 10000); +grinder.addRecipe(*2, , 300, 4); +grinder.addRecipe(*4, , 300, 4); +grinder.addRecipe(*8, , 300, 4); +grinder.addRecipe(*16, , 300, 4); +grinder.addRecipe(*32, , 300, 4); + +Crusher.addRecipe(, , 2048); +Crusher.addRecipe(,, 2048); + +//Silicon dust +Crusher.addRecipe(, , 1024); +Manufactory.addRecipe(, ); +grinder.addRecipe(, , 300, 4); +SagMill.addRecipe([], [1] , , "NONE"); + +//Skystone dust +Crusher.addRecipe(, , 1024); +grinder.addRecipe(, , 300, 4); +SagMill.addRecipe([], [1] , , "NONE"); + +//Plutonium +val plutoniumDust = +[ + , + , + , + , +] + as IItemStack[]; +for item in plutoniumDust { +Manufactory.addRecipe(item, ); +} + +//Wither Ash +Crusher.addRecipe(*3, , 1024); +Manufactory.addRecipe(, *3); +grinder.addRecipe(*3, , 300, 4); +SagMill.addRecipe([*3], [1] , , "MULTIPLY_OUTPUT"); + + + +########################################################################################## +print("==================== end of parts.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/applied_energestics.zs b/project/Multiblock Madness/1.0.6/scripts/applied_energestics.zs new file mode 100644 index 000000000..4c8c71533 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/applied_energestics.zs @@ -0,0 +1,242 @@ +import mods.appliedenergistics2.Inscriber; +import crafttweaker.item.IItemStack; +import mods.threng.Aggregator; +import mods.techreborn.blastFurnace; + +print("==================== loading applied.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + + +//normal crafting table recipe, might be to expensive +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//interface +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); +recipes.addShapeless(, []); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + + +//inscribers +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShapedMirrored(, [[, , ],[, null, ], [, , ]]); + +//drives +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, null, ], [, , ]]); +recipes.addShapeless(, [, ,]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//busses +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(*2, [[null, , null], [, , ]]); +recipes.addShaped(, [[, , ], [null, , null]]); +recipes.addShaped(*2, [[, , ], [null, , null]]); + +//crafting unit +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//assembler +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//ender hat +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +//station +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//me chest +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +//condenser +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +//charger +recipes.addShapedMirrored(, [[, , ],[, , null], [, , ]]); + +//dense smart cable +recipes.addShaped(, [[, ],[, ]]); + +//spatial io port +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//io port +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//quantum ring +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//Patterns +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//Fluid I/O +recipes.addShaped(, [[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ], [, , ]]); +recipes.addShaped(, [[, , ], [, , ]]); +recipes.addShaped(*2, [[, , ], [, , ]]); + + +//moved to actually additions +//Inscriber.addRecipe(, , true, ); + +//fluix platinum + + +furnace.remove(); +blastFurnace.addRecipe(, null, , null, 1200, 60, 2000); + +.displayName = "福鲁伊克斯铂锭"; +Aggregator.removeRecipe(); +Aggregator.addRecipe(, , , ); + +.displayName = "福鲁伊克斯覆层铂锭"; +Inscriber.removeRecipe(); +Inscriber.addRecipe(, , false, , ); + +//fluix logic chip +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//upgrades from simple storage network +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(*2, [[null, , null], [, , ]]); +recipes.addShaped(, [[, , ], [null, , null]]); +recipes.addShaped( * 2, [[, , ], [null, , null]]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [, ]); + + +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 100, 1000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 100, 1000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 100, 1000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 300, 10000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 600, 100000, , ,); + +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 600, 10000, *4,,,); + +//Lazy Frame +recipes.addShaped(*4, [ + [, , ], + [, , ], + [, , ] +]); + +####### PACKAGED AUTO ################## + +//Component +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + +//ME Component +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +recipes.addShaped(*2, [ + [, , ], + [, , ], + [, , ] +]); + +//Pattern +recipes.addShaped(*2, [ + [, , ], + [, , ], + [, , ] +]); +recipes.addShaped(*4, [ + [, , ], + [, , ], + [, , ] +]); + +//packager +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +//packer extention +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +//unpacker +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + +//encoder +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + + +//Terminal Converting +recipes.addShaped( * 64, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +########################################################################################## +print("==================== end of applied.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/astral_sorcery.zs b/project/Multiblock Madness/1.0.6/scripts/astral_sorcery.zs new file mode 100644 index 000000000..500a14745 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/astral_sorcery.zs @@ -0,0 +1,163 @@ +import crafttweaker.item.IItemStack; +import mods.tconstruct.Casting; +import mods.tconstruct.Melting; +import mods.astralsorcery.LiquidInteraction; +import mods.thaumcraft.Infusion; +import mods.astralsorcery.Altar; +import mods.astralsorcery.LightTransmutation; +import mods.astralsorcery.StarlightInfusion; + +print("==================== loading Astral Sorcery ===================="); +########################################################################################## + +val itemstoRemove = +[ + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + +//.addTooltip(format.aqua("Drop any log into liquid Starlight to create")); +.addTooltip(format.aqua("由天体水晶簇生长而来")); + +//Wand with no starlight +recipes.addShaped(, [[null, , ],[null, , ], [, null, null]]); + + +//mods.astralsorcery.Lightwell.addLiquefaction(IItemStack input, ILiquidStack output, float productionMultiplier, float shatterMultiplier, int colorhex); + + +LightTransmutation.removeTransmutation(, true); +LightTransmutation.addTransmutation(, , 9); + +//1000 max starlight for first tier altar +Altar.addDiscoveryAltarRecipe("internal/altar/upgrade_tier2", , 950, 200, [ + + , , , + + , , , + + , , ]); + +//2000 max starlight 2nd tier +Altar.addAttunementAltarRecipe("internal/altar/illuminator", , 1500, 300, [ + + , , , + , , , + , , , + , , , ]); +Altar.addAttunementAltarRecipe("internal/altar/illuminator2", , 1500, 300, [ + + , , , + , , , + , , , + , , , ]); +Altar.addAttunementAltarRecipe("internal/altar/illuminator3", , 1500, 300, [ + + , , , + , , , + , , , + , , , ]); + + + +Altar.addAttunementAltarRecipe("internal/altar/upgrade_tier3", , 1900, 400, [ + + , null, , + , , , + , , , + , , , ]); + +Altar.addConstellationAltarRecipe("internal/altar/upgrade_tier4", , 3800, 500, [ + + , , , + , , , + , , , + , , , , + , , + , , + , , + , ]); + +//Altar.addTraitAltarRecipe(string recipeLocation, IItemStack output, int starlight, int craftTickTime, IIngredient[] inputs, @optional String iRequiredConstellationFocusName); +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/beacon", , 5000, 400, [ + + , , , + , , , + , , , + , , , , + , , + , , + + , , + , , + + , , + , , + + //Outer Items, indices 25+ + + , , , + +]); + +//illumination powder +Altar.addDiscoveryAltarRecipe("internal/altar/illuminationpowder", *16, 250, 200, [ + + null, , null, + + , , , + + null, , null]); + + +/* +Altar.addAttunementAltarRecipe("multiblockmadness:shaped/internal/altar/runealtar", , 500, 300, [ + + , , , + + , , , + + , , , + + , , , ]); +*/ + +//Starmetal Block recipes +recipes.addShapeless( * 9, []); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +Melting.addRecipe( * 1296, ); +Casting.addBasinRecipe(, null, , 1296); + +.addTooltip(format.lightPurple("用来激活暮色传送门")); + +//Illumination Powder +StarlightInfusion.addInfusion(, *8, false, 0.5, 200); + + +//Skystone +LightTransmutation.addTransmutation(, , 5); + +//LiquidInteraction.addInteraction(ILiquidStack liquidIn1, float chanceConsumption1, ILiquidStack liquidIn2, float chanceConsumption2, int weight, IItemStack output); +LiquidInteraction.addInteraction( * 50, 0.5, * 200, 0.5, 89, ); +LiquidInteraction.addInteraction( * 50, 0.5, * 200, 0.5, 10, ); +LiquidInteraction.addInteraction( * 50, 0.5, * 200, 0.5, 1, ); + + +Altar.removeAltarRecipe("astralsorcery:shaped/internal/altar/chalice"); + +Infusion.registerRecipe("chalice", "", +, 5, +[*150, *100, *100, *50], +, +[,, , , +,, , ]); + + + +########################################################################################## +print("==================== end of Astral Sorcery ===================="); \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/scripts/blood_magic.zs b/project/Multiblock Madness/1.0.6/scripts/blood_magic.zs new file mode 100644 index 000000000..1d701b7af --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/blood_magic.zs @@ -0,0 +1,224 @@ +import crafttweaker.item.IItemStack; +import mods.bloodmagic.TartaricForge; +import mods.bloodmagic.BloodAltar; +import mods.thaumcraft.Crucible; +import mods.thaumcraft.ArcaneWorkbench; +import mods.astralsorcery.Altar; +print("==================== loading blood magic.zs ===================="); +########################################################################################## + +//Blood Altar +//InputStack, OutputStack, TierRequired, LPRequired, UsageRate, DrainRate + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +.addTooltip(format.gold("能够当作坠星标位仪式的催化物")); +.addTooltip(format.darkRed("需要你的宝珠内存有5,000,000 LP")); +.addTooltip(format.gold("能够当作坠星标位仪式的催化物")); +.addTooltip(format.darkRed("需要你的宝珠内存有1,000,000 LP")); +//Automating Blood +mods.immersiveengineering.Mixer.addRecipe(*1000, .withTag({Potion: "minecraft:harming"})*1000, [], 1024); +Crucible.registerRecipe("BucketLife", "", + .withTag({FluidName: "lifeessence", Amount: 1000}), , + [ * 10, * 1, * 1] +); + +#--------------Weak blood orb +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({orb: "bloodmagic:weak"}), , 0, 2000, 12, 12); + +#--------------apprentice blood orb +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({orb: "bloodmagic:apprentice"}), , 1, 5000, 30, 20); + +#--------------magician blood orb +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({orb: "bloodmagic:magician"}), , 2, 20000, 100, 20); + + +//dawn inscription +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({uses: 10}), , 5, 200000, 400, 200); + + +//dusk inscription + + +mods.thermalexpansion.InductionSmelter.addRecipe(, , *8, 5000); +mods.techreborn.implosionCompressor.addRecipe(, null, *9, *16, 40, 50000); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.addRecipe(*9, , 3000); + +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({uses: 10}), , 3, 50000, 200, 20); + + + + +//Blood Bronze +BloodAltar.addRecipe(, , 1, 2000, 12, 12); + + +# Blank Slate +.displayName = "Block of Slates"; +/*.displayName = "Block of Reinforced Slates"; +.displayName = "Block of Imbued Slates"; +.displayName = "Block of Demonic Slates"; +.displayName = "Block of Ethereal Slates";*/ + BloodAltar.removeRecipe(); + BloodAltar.addRecipe(, , 0, 1000, 10, 10); + +.addTooltip(format.red("由被束缚之剑击杀的怪物掉落")); +.addTooltip(format.red("使用感知之剑收集意志")); + +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +TartaricForge.removeRecipe([.withTag({}), ]); +//TartaricForge.addRecipe(IItemStack output, IItemStack[] inputs, double minSouls, double soulDrain); +TartaricForge.removeRecipe([, , , ]); +TartaricForge.addRecipe(,[, , , ], 64,10); + +.add(); +.add(); +.add(); +recipes.addShapeless(, [,]); + + +mods.thaumcraft.Crucible.registerRecipe("sentient_sword", "", + .withTag({ench: [{lvl: 3 as short, id: 21 as short}]}), .withTag({ench: [{lvl: 2 as short, id: 20 as short}]}), + [ * 30, * 15, * 30] +); +mods.thaumcraft.Crucible.registerRecipe("sacrificial_dagger", "", + , , + [ * 20, * 10, * 30] +); + +//mods.bloodmagic.AlchemyTable.addRecipe(IItemStack output, IItemStack[] inputs, int syphon, int ticks, int minTier); +mods.bloodmagic.AlchemyTable.addRecipe(, [, ], 500,200,0); + +//Binding Reagent +TartaricForge.removeRecipe([, , , ]); +TartaricForge.addRecipe(,[, , , ], 100,10); + +//Graveyard/glass combo +TartaricForge.addRecipe(,[, , , ], 150,20); +mods.botania.ElvenTrade.addRecipe([], [,*9]); + +//Ash +TartaricForge.removeRecipe([, , , ]); +ArcaneWorkbench.registerShapedRecipe("CTAsh", "", 200, [,,], +, +[[, , ], +[, , ], +[, , ]] +); + +//crystl brik +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 4, [[, ],[, ]]); + + +//Altar.addTraitAltarRecipe(string recipeLocation, IItemStack output, int starlight, int craftTickTime, IIngredient[] inputs, @optional String iRequiredConstellationFocusName); + +TartaricForge.removeRecipe([, , , ]); +TartaricForge.removeRecipe([, , , ]); +TartaricForge.removeRecipe([, , , ]); +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/demon_crystallizer", , 5000, 400, [ + + , , , + , , , + , , , + + , , , , + null, null, + , , + null, null, + , , + null, null, + null, , + //Outer Items, indices 25+ + , , , , +]); + +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/demon_pylon", , 5000, 400, [ + + , , , + , , , + , , , + + null, null, , , + null, null, + , , + null, null, + , , + , null, + null, , + //Outer Items, indices 25+ + , , , , +]); + +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/demon_crucible", , 5000, 400, [ + + , , , + , , , + , , , + + null, null, , , + , , + , , + null, null, + , , + null, null, + null, , + //Outer Items, indices 25+ + , , , , +]); + + +//Loose Traction +recipes.addShaped(.withTag({level: 0, key: "bloodmagic.upgrade.slippery"}), [[null, , null],[, .withTag({level: 9, key: "bloodmagic.upgrade.slowness"}).onlyWithTag({level: 9, key: "bloodmagic.upgrade.slowness"}), ], [null, , null]]); + + + + + + +/* +val runeUncrafting = +[ +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in runeUncrafting { +recipes.addShapeless(, [item]); +}*/ + + +print("==================== end of blood magic.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/botania.zs b/project/Multiblock Madness/1.0.6/scripts/botania.zs new file mode 100644 index 000000000..6b2848c7a --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/botania.zs @@ -0,0 +1,246 @@ +########################################################################################## +#modloaded botania +#priority 100 + +import crafttweaker.item.IItemStack; +import mods.botania.Apothecary; +import mods.botania.ElvenTrade; +import mods.botania.ManaInfusion; +import mods.botania.Orechid; +import mods.botania.OrechidIgnem; +import mods.botania.PureDaisy; +import mods.botania.RuneAltar; +import mods.botaniatweaks.Agglomeration; +import mods.inworldcrafting.FluidToItem; +import mods.thermalexpansion.Insolator; + +print("==================== loading mods botania.zs ===================="); +########################################################################################## + +//mods.botania.ElvenTrade.addRecipe([], [,]); + +val remove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in remove { +recipes.remove(item); +} + + +//Mana Gun +recipes.addShaped(, [[, , ],[null, , ], [null, null, ]]); + + +//mods.thermalexpansion.Insolator.addRecipe(IItemStack primaryOutput, IItemStack primaryInput, IItemStack secondaryInput, int energy, @Optional IItemStack secondaryOutput, @Optional int secondaryChance, @Optional int water); +## Black Lotus +Insolator.addRecipe(, , , 1000, , 100, 1000); +Insolator.addRecipe(*2, , , 7500, , 25, 2500); +Insolator.addRecipe(*3, , , 15000, , 5, 5000); + + +// living wood +PureDaisy.removeRecipe(); + +val livingWood = +[ + /* + , + , + , + , + , + */ + , + , + , +] + as IItemStack[]; + +for item in livingWood { +PureDaisy.addRecipe(item, ); +} + + +// living stone +val plantsformossy = +[ +, +, +, +, + +] + as IItemStack[]; +for item in plantsformossy { +.add(item); +} +PureDaisy.removeRecipe(); +PureDaisy.addRecipe(, ); + +FluidToItem.transform(, , [, ], true); + +/* Does not work with botania items for some reason +.displayName = "Manasilver Ingot"; +.displayName = "Manasilver Nugget"; +.displayName = "Block of Manasilver"; +.displayName = "Manasilver Essence"; +.displayName = "Manasilver Seeds"; +.displayName = "Molten Manasilver"; +.displayName = "Manasilver Rod"; +*/ + +### CRAFTING RECIPES ### +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); + +//spreader +recipes.addShapedMirrored(, [[, , ],[, , null], [, , ]]); + + +mods.astralsorcery.Altar.addAttunementAltarRecipe("multiblockmadness:shaped/internal/altar/runealtar", , 1000, 300, [ + + , , , + + , , , + + , , , + + , , , ]); + +### INFUSION ### +//Mana Powder +ManaInfusion.removeRecipe(); +ManaInfusion.addInfusion(,,10000); +ManaInfusion.addInfusion(,,5000); +ManaInfusion.addInfusion(,,7500); + +//Essence of Mana +ManaInfusion.addInfusion(.withTag({Aspects: [{amount: 1, key: "praecantatio"}]}), , 1000); + +//Mana Steel +ManaInfusion.removeRecipe(); +ManaInfusion.removeRecipe(); + +ManaInfusion.addInfusion(,,10000); +ManaInfusion.addInfusion(*2,,10000); +ManaInfusion.addInfusion(,,100000); +ManaInfusion.addInfusion(*2,,100000); + +Agglomeration.removeRecipe(, [, , ]); + +Agglomeration.addRecipe(, +[, , ] +,500000,0x0000FF,0x00FF00, +,,); + +//mods.thaumcraft.Infusion.registerRecipe(String name, String research, IItemStack output, int instability, CTAspectStack[] aspects, IIngredient centralItem, IIngredient[] recipe); +//Glimering Wood +mods.astralsorcery.StarlightInfusion.addInfusion(, , false, 0.1, 100); +mods.astralsorcery.StarlightInfusion.addInfusion(, , false, 0.1, 100); + + + +//Nature Pylon +mods.thaumcraft.Infusion.registerRecipe("nature_pylon", "", +, 5, +[*200, *100, *50, *50], +, [,,, ,,, ,]); + +//Gateway Core +mods.thaumcraft.Infusion.registerRecipe("gateway_core", "", +, 10, +[*200, *100, *50, *50], +, +[,, , , +,, , ]); + + +Agglomeration.addRecipe(, [, , ,],250000,0x0000FF,0x8afff7,,,); + +RuneAltar.addRecipe(*4,[,,,,,,,], 10000); + +//RuneAltar.removeRecipe(IIngredient output); +RuneAltar.removeRecipe(); + +//mods.botania.RuneAltar.addRecipe(IItemStack output, IIngredient[] input, int mana); +RuneAltar.addRecipe(,[, , , , , ], 20000); + +val petalDupe = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in petalDupe { +Insolator.addRecipe(item*2, item, , 1500); +Insolator.addRecipe(item*3, item, , 3000); +Insolator.addRecipe(item*5, item, , 5000); +} +//mods.thermalexpansion.Insolator.addRecipe(IItemStack primaryOutput, IItemStack primaryInput, IItemStack secondaryInput, int energy, @Optional IItemStack secondaryOutput, @Optional int secondaryChance, @Optional int water); + +//Shaped Quartz +//PureDaisy.addRecipe(, ); +PureDaisy.addRecipe(, ); + + + +mods.botania.ManaInfusion.removeRecipe(); + +//Spark augmets +recipes.addShapeless(, [,,,]); +recipes.addShapeless(, [,,,]); +recipes.addShapeless(, [,,,]); +recipes.addShapeless(, [,,,]); + +//Life FLower +//mods.botania.Apothecary.removeRecipe(IItemStack output); +mods.botania.Apothecary.removeRecipe(.withTag({type: "dandelifeon"})); +mods.botania.Apothecary.removeRecipe(.withTag({type: "munchdew"})); +mods.botania.Apothecary.removeRecipe(.withTag({type: "kekimurus"})); +mods.botania.Apothecary.removeRecipe(.withTag({type: "entropinnyum"})); + +mods.botania.Apothecary.addRecipe("dandelifeon", +[, , , , , , , ]); + +mods.botania.Apothecary.addRecipe("munchdew", +[,,,,]); + +mods.botania.Apothecary.addRecipe("kekimurus", +[,,,,,,]); + +mods.botania.Apothecary.addRecipe("entropinnyum", +[,,,,,,,,]); + + +.withTag({type: "endoflame"}).addTooltip(format.red("1小时后枯萎!")); +.withTag({type: "endoflame"}).addTooltip(format.red("1小时后枯萎!")); + +########################################################################################## +print("==================== end of mods botania.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/creative_biz.zs b/project/Multiblock Madness/1.0.6/scripts/creative_biz.zs new file mode 100644 index 000000000..2ccffe0d1 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/creative_biz.zs @@ -0,0 +1,318 @@ +import crafttweaker.item.IItemStack; + +import mods.thaumcraft.Infusion; +import mods.botaniatweaks.Agglomeration; +import mods.extendedcrafting.EnderCrafting; +import mods.enderio.Vat; +import mods.nuclearcraft.Crystallizer; + +print("==================== loading creative biz.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +val EXitemstoRemove = +[ + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in EXitemstoRemove { + mods.avaritia.ExtremeCrafting.remove(item); +} + +//Luminessence +recipes.removeShapeless( * 2, [, , , ]); +Vat.removeRecipe(); +Vat.addRecipe(, 1, , +[,,,],[3,2,1.5,1], +[,,,],[1,1,2,4], 100000); +Crystallizer.addRecipe(*100, , 1, 10); + + +//Ultime Ingot +Agglomeration.addRecipe(, +[, , , , ] +,1000000,0x004a80,0xa432a8, +,,, +null, , +); + +.displayName = "午夜金属锭"; +.displayName = "午夜金属块"; +.displayName = "午夜金属粒"; +.displayName = "午夜金属棒"; +.displayName = "午夜金属框架"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属灯"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属板"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属灯"; + +.displayName = "暮色金属粒"; + + + +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); + + +//New Neutronium Essence output +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); + + +//mods.iceandfire.recipes.addFireDragonForgeRecipe(, , ); + +.addTooltip(format.lightPurple("在太空站用轨道激光站挖掘获得")); + +//AR Creative Power Plug +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Infinity ingot +mods.techreborn.fusionReactor.addRecipe(*4, *4, , 100000000, -25000000, 2400, 50); + + +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, , , , , , , , null], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [null, , , , , , , , null] +]); + +//Sponge +Infusion.registerRecipe("creative_flux_sponge", "", +, 20, +[*10, *200, *50], +, +[,, , , +,, , ]); + + +//Midnight Block Uncrafting +recipes.addShapeless( * 9, []); + +//Twilight Ingot +.displayName = "暮色金属锭"; +.displayName = "暮色金属块"; +EnderCrafting.remove(); +EnderCrafting.addShaped(, +[[, , ], +[, , ], +[, , ]]); + +//Endest Star +.displayName = "终末之星"; +.displayName = "终末之星块"; +.displayName = "终末之星粒"; +EnderCrafting.remove(); +EnderCrafting.addShaped(, +[[null, , null], +[, , ], +[null, , null]]); + +//Cosmic Meatballs +mods.extendedcrafting.TableCrafting.addShapeless(0, *4, [, , , , +, , , , , +, , , , , +, , , , , , +, , , , , , +, , , , , , +, , , , , , +, , , , , , +, , , , ]); + +//Cosmic stew +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); + + +//Endest Pearl +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, , , , null, null, null], + [null, null, , , , , , null, null], + [null, , , , , , , , null], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [null, , , , , , , , null], + [null, null, , , , , , null, null], + [null, null, null, , , , null, null, null] +]); + +//Infinity Catalyst +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, null, , null, null, null, null], + [null, , null, null, , null, null, , null], + [null, null, , null, , null, , null, null], + [null, null, null, , , , null, null, null], + [.withTag({Material: "blood_infused_iron"}), , , , , , , , ], + [null, null, null, , , , null, null, null], + [null, null, , null, , null, , null, null], + [null, , null, null, , null, null, , null], + [null, null, null, null, , null, null, null, null] +]); + +//Guilty Pool +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null], + [, , , null, null, null, , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); +recipes.addShapeless(, [.withTag({mana: 500000, creative: 1 as byte})]); +recipes.addShapeless(.withTag({mana: 500000, creative: 1 as byte}), []); + +//Creative Tank +mods.extendedcrafting.TableCrafting.addShaped(0, .withTag({tier: 4}), [ + [, , , , , , , , ], + [, , , , .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), , , , ], + [, , .withTag({tier: 3}), , , , .withTag({tier: 3}), , ], + [, , , , , , , , ], + [, .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), , , , , , .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), ], + [, , , , , , , , ], + [, , .withTag({tier: 3}), , , , .withTag({tier: 3}), , ], + [, , , , .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), , , , ], + [, , , , , , , , ] +]); +recipes.addShapeless(.withTag({tier: 4}), [.withTag({RSControl: 0 as byte, Creative: 1 as byte, Level: 4 as byte})]); +recipes.addShapeless(.withTag({RSControl: 0 as byte, Creative: 1 as byte, Level: 4 as byte}), [.withTag({tier: 4})]); + +//Creative Essentia Cell +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); + +//Wireless Termanal +mods.extendedcrafting.TableCrafting.addShaped(0, .withTag({StoredTerminals: [{ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "wft:wft_creative", Count: 1 as byte, Damage: 0 as short}, {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "wct:wct_creative", Count: 1 as byte, Damage: 0 as short}], IsInRange: 0 as byte, SelectedTerminal: 0, internalCurrentPower: 1600000.0}), [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); + +//COil +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null], + [null, null, , , , , , null, null], + [null, , , , .withTag({Recv: 25000, RSControl: 0 as byte, Facing: 4 as byte, Creative: 0 as byte, Energy: 0, Level: 4 as byte, SideCache: [2, 1, 1, 1, 1, 1] as byte[] as byte[], Send: 25000}), , , , null], + [, , .withTag({tier: 3}), , , , .withTag({tier: 3}), , ], + [null, , , , .withTag({Recv: 25000, RSControl: 0 as byte, Facing: 4 as byte, Creative: 0 as byte, Energy: 0, Level: 4 as byte, SideCache: [2, 1, 1, 1, 1, 1] as byte[] as byte[], Send: 25000}), , , , null], + [null, null, , , , , , null, null], + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null] +]); + +//Creative Cell +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , , , , , , , ], + [, , , , .reuse(), , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, .withTag({tier: 4}).reuse(), , , , , , .reuse(), ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , .reuse(), , , , ], + [, , , , , , , , ] +]); +recipes.addShapeless(, []); +recipes.addShapeless(, []); + + +//Creative Storage +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , .withTag({tier: 3}), , ], + [, , , , ], + [.withTag({tier: 3}), , , , .withTag({tier: 3})], + [, , , , ], + [, , .withTag({tier: 3}), , ] +]); + + +/*mods.qmd.target_chamber.addRecipe(IIngredient inputItem, IIngredient inputParticle, IIngredient outputItem, IIngredient outputParticle1, IIngredient outputParticle2, IIngredient outputParticle3, long maxEnergy, double crossSection, {long energyReleased, double processRadiation}) +Note: the input particles amount is the amount of particles needed to convert the item, Its energy is the minimum energy and its focus is the minimum focus. The output particles amount is the max amount/t released per input particle/t. The convention(i.e not required but recommended) is that positive particles are in outputParticle1, neutral particles in outputParticle2 and negitive particles in outputParticle3. This is because outputParticle2 can't be steered so will always come out the back of the chamber. +*/ + +//Neutronium +/* +mods.qmd.target_chamber.addRecipe(, ((*1000000)^50000)~2.0, , +null, null, null, 53000, 0.28, -100000, 0.001); +*/ + +recipes.addShapeless( * 9, []); +mods.extendedcrafting.CombinationCrafting.addRecipe(, 100000000, , +[,,,, +,,,, +,,,, +,,,]); + +mods.extendedcrafting.TableCrafting.remove(); +mods.extendedcrafting.TableCrafting.addShaped(3, , [ + [, , , , , , ], + [, , , , , , ], + [, , , , , , ], + [, , , , , , ] +]); +########################################################################################## +print("==================== end of creative biz.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/ebwizardry.zs b/project/Multiblock Madness/1.0.6/scripts/ebwizardry.zs new file mode 100644 index 000000000..b6fdac6de --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/ebwizardry.zs @@ -0,0 +1,38 @@ +########################################################################################## +import crafttweaker.item.IItemStack; +import mods.botania.ManaInfusion; + +print("==================== loading mods ebwizardry.zs ===================="); +########################################################################################## + +### REMOVE RECIPES ### +val itemstoRemove = +[ + , + , + , + , + , + , + , + +] + as IItemStack[]; +for item in itemstoRemove { + recipes.remove(item); +} +### Add recipes ### +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +ManaInfusion.addInfusion(,,250000); +.addTooltip(format.aqua("将魔力水晶扔进至少含有四分之一的魔力池中获得")); +########################################################################################## +print("==================== end of mods ebwizardry.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/embers.zs b/project/Multiblock Madness/1.0.6/scripts/embers.zs new file mode 100644 index 000000000..cac357c5d --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/embers.zs @@ -0,0 +1,124 @@ +########################################################################################## +import mods.tconstruct.Alloy; +import mods.tconstruct.Melting; +import mods.tconstruct.Casting; +import crafttweaker.liquid.ILiquidStack; +import mods.embers.Mixer; +import mods.embers.EmberGeneration; +import crafttweaker.item.IItemStack; +import mods.thermalexpansion.Crucible; +print("==================== loading mods embers.zs ===================="); +########################################################################################## + +recipes.addShapeless( * 4, []); + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[null, , null], [, , ]]); + + +.addTooltip(format.red("使用灰烬晶体开采机从基岩中提取而来")); +.addTooltip(format.red("使用灰烬晶体开采机从基岩中提取而来")); +.addTooltip(format.red("使用灰烬晶体开采机从基岩中提取而来")); +.addTooltip(format.red("用灰烬炉烧制物品获得")); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[null, , ],[, , ], [, , ]]); + +//Cinder Plinth +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +//Beam Cannon +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Pedestal +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); + + +//Mixer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Dawnstone +Melting.addRecipe( * 1296, ); +Melting.addRecipe( * 576, ); +Melting.addRecipe( * 144, ); +Melting.addRecipe( * 144, ); + +Crucible.addRecipe( * 1296, , 10000); +Crucible.addRecipe( * 576, , 4000); +Crucible.addRecipe( * 144, , 1000); +Crucible.addRecipe( * 144, , 1000); + +Melting.addRecipe( * 100, ,1000); +Melting.addRecipe( * 600, ,2000); +Melting.addRecipe( * 2000, ,4000); +Melting.addRecipe( * 50, ,1000); +Mixer.remove( * 8); +Mixer.add( * 144,[ * 144, * 144, * 125]); + +EmberGeneration.addMetalCoefficient(,3); + +Casting.addTableRecipe(, , , 576, false, 250); +Casting.addTableRecipe(, , , 144, false, 100); +Casting.addTableRecipe(, , , 144, false, 100); +Casting.addBasinRecipe(, null, , 1296); + +mods.embers.Alchemy.add(, [,,,,], {"iron":48 to 64,"dawnstone":48 to 64}); +//mods.embers.Alchemy.remove(IItemStack ); + + +//inert metal +Mixer.add( * 72, [ * 72, * 36]); + + +recipes.addShaped(, [[, , ],[, , ], [, null, ]]); +recipes.addShaped(, [[null, null, null],[, null, ], [, , ]]); + + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +mods.inworldcrafting.FluidToItem.transform(, , [], true); +mods.inworldcrafting.FluidToItem.transform(, , [], true); +mods.inworldcrafting.FluidToItem.transform(, , [], true); + +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xcfcfcf); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xff9b4a); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xa6a6a6); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0x5c6f7a); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xe89e43); + + +//Glowstone +mods.embers.Melter.add( * 250, ); +mods.embers.Melter.add( * 1000, ); + + +########################################################################################## +print("==================== end of mods embers.zs ===================="); + +//(any[], ZenTypeNative: crafttweaker.liquid.ILiquidStack[]) \ No newline at end of file diff --git a/project/Multiblock Madness/1.0.6/scripts/enviromental_tech.zs b/project/Multiblock Madness/1.0.6/scripts/enviromental_tech.zs new file mode 100644 index 000000000..9635451d4 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/enviromental_tech.zs @@ -0,0 +1,83 @@ +import crafttweaker.item.IItemStack; +import mods.advancedrocketry.Crystallizer; +import mods.rockhounding_chemistry.PullingCrucible; +import mods.advancedrocketry.PrecisionAssembler; + +print("==================== loading mods enviromental tech.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +//, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//laser core +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(*4, [[, , ],[, , ], [, , ]]); + +//Crystal Lens +recipes.addShaped(, [[, null, ],[, , ], [, null, ]]); + +/* Lunar Biz +//lunarvoltaic cell +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +*/ +//Litherite +Crystallizer.addRecipe(, 1200, 10000, , ); +PullingCrucible.add(, , *4); + +val MinerTooltip = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in MinerTooltip { +item.addTooltip(format.green("潜行右键切换模式")); +} + +//Photo cell +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Connector +PrecisionAssembler.addRecipe(, 1200, 25000, *4, ); +########################################################################################## +print("==================== end of mods enviromental tech.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/fossils.zs b/project/Multiblock Madness/1.0.6/scripts/fossils.zs new file mode 100644 index 000000000..f6d51c104 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/fossils.zs @@ -0,0 +1,72 @@ +import crafttweaker.item.IItemStack; +import crafttweaker.liquid.ILiquidStack; +import crafttweaker.oredict.IOreDictEntry; +print("==================== loading mods Fossils.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +.addTooltip(format.green("种在树下")); + +.maxDamage = 3000; +//.damage = 10; + +recipes.addShapeless(.withTag({ench: [{lvl: 5 as short, id: 47 as short}, {lvl: 3 as short, id: 45 as short}, {lvl: 1 as short, id: 70 as short}], RepairCost: 7, infench: [{lvl: 3 as short, id: 4 as short}]}),[,]); + +recipes.addShapeless(.withTag({ench: [{lvl: 5 as short, id: 47 as short}], RepairCost: 1}),[,]); +recipes.addShapeless(.withTag({ench: [{lvl: 5 as short, id: 47 as short}], RepairCost: 1}),[,]); +recipes.addShapeless(.withTag({ench: [{lvl: 4 as short, id: 21 as short}, {lvl: 3 as short, id: 20 as short}, {lvl: 5 as short, id: 16 as short}, {lvl: 4 as short, id: 34 as short}, {lvl: 1 as short, id: 70 as short}], RepairCost: 3}),[,]); + +//mods.fossils.recipes.removeWorktableRecipe(); +//mods.fossils.recipes.addWorktableRecipe(, , .withTag({ench: [{lvl: 1 as short, id: 27 as short}, {lvl: 5 as short, id: 36 as short}], RepairCost: 3})); + +mods.fossils.recipes.addAnalyzerOutput(, .withTag({ench: [{lvl: 1 as short, id: 27 as short}, {lvl: 5 as short, id: 36 as short}], RepairCost: 3}), 100); + + +val tinyDustMap as IItemStack[IItemStack] = { +: , +: , +: , +: , +: , +: , +: , +: , +: , +: , + +: , +: , +: , +: , +: , +: , +: , +: , + +: , +: , +: , +: , +: , +} as IItemStack[IItemStack]; + +for tinyDust, material in tinyDustMap { + mods.fossils.recipes.addSifterOutput(material, tinyDust, 1); +} + + + +########################################################################################## +print("==================== end of Fossils.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/modular_machines.zs b/project/Multiblock Madness/1.0.6/scripts/modular_machines.zs new file mode 100644 index 000000000..fa4845799 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/modular_machines.zs @@ -0,0 +1,796 @@ +import mods.modularmachinery.RecipePrimer; +import crafttweaker.item.IItemStack; +import mods.actuallyadditions.Empowerer; +import mods.extendedcrafting.CombinationCrafting; + +print("==================== loading modular machines.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//Vent +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Blueprints +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:mixer"}), [[, , ],[, , ], [, , ]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:minifield-crafter"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:assembler"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:darkness-collector"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:lowgravitydepositionchamber"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:heavens-forge"}), [[null, , null],[, , ], [null, , null]]); + +//Energy input +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockenergyinputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockenergyinputhatch { +.add(item); +} + +//Energy output +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockenergyoutputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockenergyoutputhatch { +.add(item); +} + +//Fluid Input +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockfluidinputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockfluidinputhatch { +.add(item); +} + +//Fluid Output +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockfluidoutputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockfluidoutputhatch { +.add(item); +} + +//Item Output +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockoutputbus = +[ +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockoutputbus { +.add(item); +} + +//Item Input +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockinputbus = +[ +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockinputbus { +.add(item); +} + +//Reinforced Casing +Empowerer.addRecipe(, , , , +, , 25000, 400, [0.5, 0.3, 1]); +CombinationCrafting.addRecipe(, 1000000, , +[, , , ]); + +############################################## +## +## Mini Field Crafter +## +############################################## + +##Tech Reborn Basic Frame +val TRBasicFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-trbasicframe", "minifield-crafter", 500, 0); +TRBasicFrame.addEnergyPerTickInput(2000); +TRBasicFrame.addItemInput(); +TRBasicFrame.addItemInput(); +TRBasicFrame.addItemInput( * 6); +TRBasicFrame.addItemInput( * 20); +TRBasicFrame.addItemOutput(); +TRBasicFrame.build(); + +##Mekanism Steel Casing +val MekanismSteelCasing = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-mekanismsteelcasing", "minifield-crafter", 500, 0); +MekanismSteelCasing.addEnergyPerTickInput(4000); +MekanismSteelCasing.addItemInput(); +MekanismSteelCasing.addItemInput(); +MekanismSteelCasing.addItemInput( * 12); +MekanismSteelCasing.addItemInput( * 14); +MekanismSteelCasing.addItemOutput(); +MekanismSteelCasing.build(); + +val MekanismSteelCasing2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-mekanismsSteelcasing2", "minifield-crafter", 500, 0); +MekanismSteelCasing2.addEnergyPerTickInput(4000); +MekanismSteelCasing2.addItemInput(); +MekanismSteelCasing2.addItemInput(); +MekanismSteelCasing2.addItemInput( * 12); +MekanismSteelCasing2.addItemInput( * 14); +MekanismSteelCasing2.addItemOutput(*2); +MekanismSteelCasing2.build(); + +##Thermal Machine Frame +val ThermalFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermalframe", "minifield-crafter", 500, 0); +ThermalFrame.addEnergyPerTickInput(4000); +ThermalFrame.addItemInput(); +ThermalFrame.addItemInput(); +ThermalFrame.addItemInput( * 8); +ThermalFrame.addItemInput( * 6); +ThermalFrame.addItemInput( * 8); +ThermalFrame.addItemInput( * 4); +ThermalFrame.addItemOutput(); +ThermalFrame.build(); + +val ThermalFrame2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermalframe2", "minifield-crafter", 500, 0); +ThermalFrame2.addEnergyPerTickInput(4000); +ThermalFrame2.addItemInput(); +ThermalFrame2.addItemInput(); +ThermalFrame2.addItemInput( * 8); +ThermalFrame2.addItemInput( * 6); +ThermalFrame2.addItemInput( * 8); +ThermalFrame2.addItemInput( * 4); +ThermalFrame2.addItemOutput(*2); +ThermalFrame2.build(); + +##Industruial Machine Chassis +val IndustruialChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-industruialchassis", "minifield-crafter", 500, 0); +IndustruialChassis.addEnergyPerTickInput(6000); +IndustruialChassis.addItemInput(.withTag({Aspects: [{amount: 10, key: "machina"}]})); +IndustruialChassis.addItemInput(); +IndustruialChassis.addItemInput( * 18); +IndustruialChassis.addItemInput( * 8); +IndustruialChassis.addItemOutput(); +IndustruialChassis.build(); + +val IndustruialChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-industruialchassis2", "minifield-crafter", 500, 0); +IndustruialChassis2.addEnergyPerTickInput(6000); +IndustruialChassis2.addItemInput(.withTag({Aspects: [{amount: 10, key: "machina"}]})); +IndustruialChassis2.addItemInput(); +IndustruialChassis2.addItemInput( * 18); +IndustruialChassis2.addItemInput( * 8); +IndustruialChassis2.addItemOutput(*2); +IndustruialChassis2.build(); + +##Soul Machine Chassis +val SoulChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-soulchassis", "minifield-crafter", 500, 0); +SoulChassis.addEnergyPerTickInput(6000); +SoulChassis.addItemInput(.withTag({Aspects: [{amount: 10, key: "spiritus"}]})); +SoulChassis.addItemInput(); +SoulChassis.addItemInput( * 18); +SoulChassis.addItemInput( * 8); +SoulChassis.addItemOutput(); +SoulChassis.build(); + +val SoulChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-soulchassis2", "minifield-crafter", 500, 0); +SoulChassis2.addEnergyPerTickInput(6000); +SoulChassis2.addItemInput(.withTag({Aspects: [{amount: 10, key: "spiritus"}]})); +SoulChassis2.addItemInput(); +SoulChassis2.addItemInput( * 18); +SoulChassis2.addItemInput( * 8); +SoulChassis2.addItemOutput(*2); +SoulChassis2.build(); + +##Enhanced Machine Chassis +val EnhancedChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-Enhancedchassis", "minifield-crafter", 500, 0); +EnhancedChassis.addEnergyPerTickInput(10000); +EnhancedChassis.addItemInput(.withTag({Aspects: [{amount: 10, key: "alienis"}]})); +EnhancedChassis.addItemInput(); +EnhancedChassis.addItemInput( * 18); +EnhancedChassis.addItemInput( * 8); +EnhancedChassis.addItemOutput(); +EnhancedChassis.build(); + +val EnhancedChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-Enhancedchassis2", "minifield-crafter", 500, 0); +EnhancedChassis2.addEnergyPerTickInput(10000); +EnhancedChassis2.addItemInput(.withTag({Aspects: [{amount: 10, key: "alienis"}]})); +EnhancedChassis2.addItemInput(); +EnhancedChassis2.addItemInput( * 18); +EnhancedChassis2.addItemInput( * 8); +EnhancedChassis2.addItemOutput(*2); +EnhancedChassis2.build(); + + +##Advanced Rockety Frame +val ARFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-arframe", "minifield-crafter", 500, 0); +ARFrame.addEnergyPerTickInput(3000); +ARFrame.addItemInput(); +ARFrame.addItemInput( * 18); +ARFrame.addItemInput( * 9); +ARFrame.addItemOutput(); +ARFrame.build(); + +val ARFrame2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-arframe2", "minifield-crafter", 500, 0); +ARFrame2.addEnergyPerTickInput(3000); +ARFrame2.addItemInput(); +ARFrame2.addItemInput( * 18); +ARFrame2.addItemInput( * 9); +ARFrame2.addItemOutput(*2); +ARFrame2.build(); + +##Actually Additions Iron Casing +val AAIronCasing = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aaironaasing", "minifield-crafter", 500, 0); +AAIronCasing.addEnergyPerTickInput(1000); +AAIronCasing.addItemInput( * 26); +AAIronCasing.addItemInput(); +AAIronCasing.addItemInput(); +AAIronCasing.addItemOutput(); +AAIronCasing.build(); + +##Profiling Bench +val RHBench = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-rhbench", "minifield-crafter", 500, 0); +RHBench.addEnergyPerTickInput(1000); +RHBench.addItemInput( * 8); +RHBench.addItemInput( * 4); +RHBench.addItemInput(); +RHBench.addItemInput(); +RHBench.addItemInput(); +RHBench.addItemOutput(); +RHBench.build(); + +##Energy Acceptor +val AEAcceptor = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aeacceptor", "minifield-crafter", 500, 0); +AEAcceptor.addEnergyPerTickInput(1000); +AEAcceptor.addItemInput( * 8); +AEAcceptor.addItemInput(); +AEAcceptor.addItemInput(); +AEAcceptor.addItemInput( * 6); +AEAcceptor.addItemInput( * 12); +AEAcceptor.addItemOutput(); +AEAcceptor.build(); + +##ME Controller +val MEController = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-mecntroller", "minifield-crafter", 500, 0); +MEController.addEnergyPerTickInput(5000); +MEController.addItemInput(); +MEController.addItemInput(*8); +MEController.addItemInput(*12); +MEController.addItemInput( * 6); +MEController.addItemInput(); +MEController.addItemOutput(); +MEController.build(); + + +##Small Crate +val AASmallCrate = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aasmallcrate", "minifield-crafter", 500, 0); +AASmallCrate.addEnergyPerTickInput(1000); +AASmallCrate.addItemInput(); +AASmallCrate.addItemInput( * 2); +AASmallCrate.addItemInput( * 24); +AASmallCrate.addItemOutput(); +AASmallCrate.build(); + +##Medium Crate +val AAMediumCrate = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aamediumcrate", "minifield-crafter", 500, 0); +AAMediumCrate.addEnergyPerTickInput(2000); +AAMediumCrate.addItemInput(); +AAMediumCrate.addItemInput(); +AAMediumCrate.addItemInput( * 2); +AAMediumCrate.addItemInput( * 24); +AAMediumCrate.addItemOutput(); +AAMediumCrate.build(); + +##Large Crate +val AALargeCrate = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aalargecrate", "minifield-crafter", 500, 0); +AALargeCrate.addEnergyPerTickInput(4000); +AALargeCrate.addItemInput(); +AALargeCrate.addItemInput(); +AALargeCrate.addItemInput( * 2); +AALargeCrate.addItemInput( * 24); +AALargeCrate.addItemOutput(); +AALargeCrate.build(); + +##Thermal Tank +val ThermalTank = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermaltank", "minifield-crafter", 500, 0); +ThermalTank.addEnergyPerTickInput(1000); +ThermalTank.addItemInput( * 12); +ThermalTank.addItemInput( * 2); +ThermalTank.addItemInput( * 12); +ThermalTank.addItemInput(); +ThermalTank.addItemOutput(); +ThermalTank.build(); + +##Nuclearcraft Chassis +val NCChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-ncchassis", "minifield-crafter", 500, 0); +NCChassis.addEnergyPerTickInput(4000); +NCChassis.addItemInput( * 8); +NCChassis.addItemInput( * 18); +NCChassis.addItemInput(); +NCChassis.addItemInput(); +NCChassis.addItemOutput(); +NCChassis.build(); + +##RF Tools Frame +val RFToolsFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-rftoolsframe", "minifield-crafter", 500, 0); +RFToolsFrame.addEnergyPerTickInput(3000); +RFToolsFrame.addItemInput( * 20); +RFToolsFrame.addItemInput( * 6); +RFToolsFrame.addItemInput(); +RFToolsFrame.addItemInput(); +RFToolsFrame.addItemOutput(); +RFToolsFrame.build(); + +##Embers Core +val EmbersCore = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-emberscore", "minifield-crafter", 500, 0); +EmbersCore.addEnergyPerTickInput(1000); +EmbersCore.addItemInput(); +EmbersCore.addItemInput( * 12); +EmbersCore.addItemInput( * 8); +EmbersCore.addItemInput(); +EmbersCore.addItemOutput(); +EmbersCore.build(); + +##Compact Machine Wall +val MachineWall = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machinewall", "minifield-crafter", 100, 0); +MachineWall.addEnergyPerTickInput(1000); +MachineWall.addItemInput(); +MachineWall.addItemInput(*2); +MachineWall.addItemOutput(*16); +MachineWall.build(); + +##Compact Machine 1 +val MachineOne = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machineone", "minifield-crafter", 200, 0); +MachineOne.addEnergyPerTickInput(1000); +MachineOne.addItemInput(*26); +MachineOne.addItemInput(); +MachineOne.addItemOutput(); +MachineOne.build(); + +##Compact Machine 2 +val MachineTwo = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machinetwo", "minifield-crafter", 300, 0); +MachineTwo.addEnergyPerTickInput(2000); +MachineTwo.addItemInput(*26); +MachineTwo.addItemInput(); +MachineTwo.addItemInput(); +MachineTwo.addItemOutput(); +MachineTwo.build(); + +##Compact Machine 3 +val MachineThree = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machinethree", "minifield-crafter", 600, 0); +MachineThree.addEnergyPerTickInput(4000); +MachineThree.addItemInput(*26); +MachineThree.addItemInput(); +MachineThree.addItemInput(); +MachineThree.addItemOutput(); +MachineThree.build(); + +##TCconstruct +val TCconstruct = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-tcconstruct", "minifield-crafter", 400, 0); +TCconstruct.addEnergyPerTickInput(2000); +TCconstruct.addItemInput(); +TCconstruct.addItemInput(*8); +TCconstruct.addItemInput(*12); +TCconstruct.addItemInput(*6); +TCconstruct.addItemInput(); +TCconstruct.addItemOutput(*2); +TCconstruct.build(); + +/* +##Thermal Device Frame +val ThermalDeviceFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermaldeviceframe", "minifield-crafter", 1000, 0); +ThermalDeviceFrame.addEnergyPerTickInput(100); +ThermalDeviceFrame.addItemInput(); +ThermalDeviceFrame.addItemInput( * 6); +ThermalDeviceFrame.addItemInput( * 8); +ThermalDeviceFrame.addItemInput( * 12); +ThermalDeviceFrame.addItemInput(); +ThermalDeviceFrame.addItemOutput(); +ThermalDeviceFrame.build(); +*/ + + + + + +############################################## +## +## Mixer +## +############################################## + + +##Brass +val dustBrass = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-brass", "mixer", 300, 0); +dustBrass.addEnergyPerTickInput(100); +dustBrass.addItemInput(); +dustBrass.addItemInput( * 3); +dustBrass.addItemOutput( * 4); +dustBrass.addItemOutput().setChance(0.5); +dustBrass.build(); + + +##Bronze +val dustBronze = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-bronze", "mixer", 300, 0); +dustBronze.addEnergyPerTickInput(100); +dustBronze.addItemInput(); +dustBronze.addItemInput( * 3); +dustBronze.addItemOutput( * 4); +dustBronze.addItemOutput().setChance(0.5); +dustBronze.build(); + +##Steel +val carbonforSteel = ; +carbonforSteel.add(); +carbonforSteel.add(); +carbonforSteel.add(); +carbonforSteel.add(); + +val dustSteel = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-steel", "mixer", 300, 0); +dustSteel.addEnergyPerTickInput(100); +dustSteel.addItemInput(); +dustSteel.addItemInput(); +dustSteel.addItemOutput(); +dustSteel.addItemOutput().setChance(0.5); +dustSteel.build(); + +##Electrum +val dustElectrum = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-electrum", "mixer", 300, 0); +dustElectrum.addEnergyPerTickInput(100); +dustElectrum.addItemInput(); +dustElectrum.addItemInput(); +dustElectrum.addItemOutput( * 2); +dustElectrum.addItemOutput().setChance(0.5); +dustElectrum.build(); + +##Energetic +val dustEnergetic = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-energetic", "mixer", 300, 0); +dustEnergetic.addEnergyPerTickInput(100); +dustEnergetic.addItemInput(); +dustEnergetic.addItemInput(); +dustEnergetic.addItemOutput( * 2); +dustEnergetic.addItemOutput().setChance(0.5); +dustEnergetic.build(); + +##Dimentional +val dustDimentional = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-dimentional", "mixer", 300, 0); +dustDimentional.addEnergyPerTickInput(100); +dustDimentional.addItemInput( * 4); +dustDimentional.addItemInput(); +dustDimentional.addItemOutput( * 2); +dustDimentional.addItemOutput().setChance(0.5); +dustDimentional.build(); + +##Invar +val dustInvar = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-invar", "mixer", 300, 0); +dustInvar.addEnergyPerTickInput(100); +dustInvar.addItemInput( * 2); +dustInvar.addItemInput(); +dustInvar.addItemOutput( * 3); +dustInvar.addItemOutput().setChance(0.5); +dustInvar.build(); + +##CarbonManganese +val dustCarbonManganese = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-carbonmanganese", "mixer", 300, 0); +dustCarbonManganese.addEnergyPerTickInput(100); +dustCarbonManganese.addItemInput(); +dustCarbonManganese.addItemInput(); +dustCarbonManganese.addItemOutput( * 2); +dustCarbonManganese.addItemOutput().setChance(0.5); +dustCarbonManganese.build(); + +##Flux Dust +val dustFlux = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-flux", "mixer", 300, 0); +dustFlux.addEnergyPerTickInput(100); +dustFlux.addItemInput( * 4); +dustFlux.addItemInput( * 4); +dustFlux.addItemInput( * 4); +dustFlux.addItemOutput(*2); +dustFlux.addItemOutput().setChance(0.5); +dustFlux.build(); + +##RichSlag +val RichSlag = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-richslag", "mixer", 100, 0); +RichSlag.addEnergyPerTickInput(1000); +RichSlag.addItemInput(*32); +RichSlag.addItemInput(); +RichSlag.addItemInput(); +RichSlag.addFluidInput(* 800); +RichSlag.addItemOutput(*32); +RichSlag.build(); + +############################################## +## +## Assembler +## +############################################## + +##TechBasicCircuit +val TechBasicCircuit = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-techbasiccircuit", "assembler", 10, 0); +TechBasicCircuit.addEnergyPerTickInput(1000); +TechBasicCircuit.addItemInput(*4); +TechBasicCircuit.addItemInput(*2); +TechBasicCircuit.addItemInput(); +TechBasicCircuit.addItemOutput(); +TechBasicCircuit.build(); + +##ModularCircut +val assemblerModularCircutBlock = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-circutblock", "assembler", 400, 0); +assemblerModularCircutBlock.addEnergyPerTickInput(10000); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addFluidInput(*2000); +assemblerModularCircutBlock.addItemOutput(); +assemblerModularCircutBlock.build(); + +##HighlyAdvancedFrame +val assemblerHighlyAdvancedFrameBlock = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-highlyadvancedframe", "assembler", 600, 0); +assemblerHighlyAdvancedFrameBlock.addEnergyPerTickInput(10000); +assemblerHighlyAdvancedFrameBlock.addItemInput(); +assemblerHighlyAdvancedFrameBlock.addItemInput(*4); +assemblerHighlyAdvancedFrameBlock.addItemInput(*4); +assemblerHighlyAdvancedFrameBlock.addFluidInput(*2000); +assemblerHighlyAdvancedFrameBlock.addItemOutput(); +assemblerHighlyAdvancedFrameBlock.build(); + +##BasicCoils +val assemblerBasicCoils = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Basiccoils", "assembler", 10, 0); +assemblerBasicCoils.addEnergyPerTickInput(1000); +assemblerBasicCoils.addItemInput(*4); +assemblerBasicCoils.addItemInput(); +assemblerBasicCoils.addItemOutput(*2); +assemblerBasicCoils.build(); + +##BasicCoils2 +val assemblerBasicCoils2 = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Basiccoils2", "assembler", 10, 0); +assemblerBasicCoils2.addEnergyPerTickInput(1000); +assemblerBasicCoils2.addItemInput(*4); +assemblerBasicCoils2.addItemInput(); +assemblerBasicCoils2.addItemOutput(); +assemblerBasicCoils2.build(); + +##AdvancedCoils +val assemblerAdvancedCoils = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Advancedcoils", "assembler", 20, 0); +assemblerAdvancedCoils.addEnergyPerTickInput(2000); +assemblerAdvancedCoils.addItemInput(*4); +assemblerAdvancedCoils.addItemInput(); +assemblerAdvancedCoils.addItemOutput(); +assemblerAdvancedCoils.build(); + +##QuarryCard +val assemblerQuarryCard = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-quarrycard", "assembler", 600, 0); +assemblerQuarryCard.addEnergyPerTickInput(4000); +assemblerQuarryCard.addItemInput(); +assemblerQuarryCard.addItemInput(*4); +assemblerQuarryCard.addItemInput(*4); +assemblerQuarryCard.addItemInput(*4); +assemblerQuarryCard.addFluidInput(*4000); +assemblerQuarryCard.addItemOutput(); +assemblerQuarryCard.build(); + +############################################## +## +## Shadow Condensor +## +############################################## + +.addTooltip(format.darkPurple("暗影冷凝器的流体升级材料")); +.addTooltip(format.darkPurple("暗影冷凝器的物品升级材料")); +.addTooltip(format.darkPurple("暗影冷凝器的速度升级材料")); +.addTooltip(format.darkPurple("暗影冷凝器2x输出升级材料")); +.addTooltip(format.darkPurple("暗影冷凝器3x输出升级材料")); +.addTooltip(format.darkPurple("暗影冷凝器4x输出升级材料")); +.addTooltip(format.darkPurple("暗影冷凝器5x输出升级材料")); + +val MidnightIngot = mods.modularmachinery.RecipeBuilder.newBuilder("midnight-ingot", "darkness-collector", 2000, 0); +//MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addFluidInput(*4000); +MidnightIngot.addItemOutput(); +MidnightIngot.addDimensionRequirement([10]); +MidnightIngot.build(); + +val VoidSeed = mods.modularmachinery.RecipeBuilder.newBuilder("void-seed", "darkness-collector", 2000, 0); +//VoidSeed.addItemInput(); +VoidSeed.addItemInput(); +VoidSeed.addFluidInput(*4000); +VoidSeed.addItemOutput(); +VoidSeed.addDimensionRequirement([10]); +VoidSeed.build(); + + + +############################################## +## +## Forge of the Heavens +## +############################################## + +.addTooltip(format.aqua("Forge of the Heavens fluid modifier")); + +##CyrstaltineIngot +val CyrstaltineIngot = mods.modularmachinery.RecipeBuilder.newBuilder("forge-cyrstaltineingot", "heavens-forge", 400, 0); +CyrstaltineIngot.addMekanismLaserInput(5000000); +CyrstaltineIngot.addItemInput(); +CyrstaltineIngot.addItemInput(); +CyrstaltineIngot.addItemInput(*4); +CyrstaltineIngot.addItemInput(*8); +CyrstaltineIngot.addItemInput(*4); +CyrstaltineIngot.addFluidInput(* 10000); +CyrstaltineIngot.addFluidInput(* 10000); +CyrstaltineIngot.addItemOutput(); +CyrstaltineIngot.build(); + +##PositiveDispositionMatrix +val PositiveDispositionMatrix = mods.modularmachinery.RecipeBuilder.newBuilder("forge-positivedispositionmatrix", "heavens-forge", 600, 0); +PositiveDispositionMatrix.addMekanismLaserInput(10000000); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addFluidInput(* 5000); +PositiveDispositionMatrix.addItemOutput(); +PositiveDispositionMatrix.build(); + +##NegitiveDispositionMatrix +val NegitiveDispositionMatrix = mods.modularmachinery.RecipeBuilder.newBuilder("forge-negitivedispositionmatrix", "heavens-forge", 600, 0); +NegitiveDispositionMatrix.addMekanismLaserInput(10000000); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addFluidInput(* 5000); +NegitiveDispositionMatrix.addItemOutput(); +NegitiveDispositionMatrix.build(); + +##NeutroniumNugget +val NeutroniumNugget = mods.modularmachinery.RecipeBuilder.newBuilder("forge-neutroniumnugget", "heavens-forge", 100, 0); +NeutroniumNugget.addMekanismLaserInput(1000000); +NeutroniumNugget.addItemInput(*9); +NeutroniumNugget.addFluidInput(* 1000); +NeutroniumNugget.addItemOutput(); +NeutroniumNugget.build(); + +##NeutroniumIngot +val NeutroniumIngot = mods.modularmachinery.RecipeBuilder.newBuilder("forge-neutroniumingot", "heavens-forge", 200, 0); +NeutroniumIngot.addMekanismLaserInput(100000000); +NeutroniumIngot.addItemInput(*9); +NeutroniumIngot.addGasInput("fusionfuel", 10000); +NeutroniumIngot.addItemOutput(); +NeutroniumIngot.build(); + +##MignightLampLuminessence +val MignightLampLuminessence = mods.modularmachinery.RecipeBuilder.newBuilder("forge-mignightlampluminessence", "heavens-forge", 500, 0); +MignightLampLuminessence.addMekanismLaserInput(5000000); +MignightLampLuminessence.addItemInput(); +MignightLampLuminessence.addItemInput(); +MignightLampLuminessence.addFluidInput(* 10000); +MignightLampLuminessence.addItemOutput(); +MignightLampLuminessence.build(); + +##MignightLampGlowstone +val MignightLampGlowstone = mods.modularmachinery.RecipeBuilder.newBuilder("forge-mignightlampglowstone", "heavens-forge", 500, 0); +MignightLampGlowstone.addMekanismLaserInput(5000000); +MignightLampGlowstone.addItemInput(); +MignightLampGlowstone.addItemInput(); +MignightLampGlowstone.addFluidInput(* 10000); +MignightLampGlowstone.addItemOutput(); +MignightLampGlowstone.build(); +########################################################################################## +print("==================== end of modular machines.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/mystical_agriculture.zs b/project/Multiblock Madness/1.0.6/scripts/mystical_agriculture.zs new file mode 100644 index 000000000..ff35205c9 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/mystical_agriculture.zs @@ -0,0 +1,109 @@ +import crafttweaker.item.IItemStack; +import mods.thermalexpansion.InductionSmelter; + +print("==================== loading mystical agriculture.zs ===================="); +########################################################################################## + + + +val removerecipes = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +] +as IItemStack[]; +for item in removerecipes { + recipes.remove(item); +} + +//seeds +/* +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +*/ + +//Hide base seeds + mods.jei.JEI.removeAndHide(); + +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); + + +.addTooltip(format.darkPurple("章节1的任务奖励")); +.addTooltip(format.red("不可制作")); +.addTooltip(format.red("不可制作")); +.addTooltip(format.red("不可制作")); +.addTooltip(format.red("不可制作")); +.addTooltip(format.red("不可制作")); + +.add(); +.add(); +.add(); +//.add(); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +mods.astralsorcery.Altar.addConstellationAltarRecipe("mypackname:shaped/internal/altar/master_infusion_crystal", , 2000, 100, [ + + , , , + + , , , + + , , , + + , , + , , + , , + , , + , , + , ]); + +//Tier 2 Metal +InductionSmelter.addRecipe(, , *4, 5000); + +//Tier 3 metal +InductionSmelter.addRecipe(, , *4, 10000); +mods.immersiveengineering.ArcFurnace.addRecipe(, , null, 300, 1024, [*4], "Alloying"); + +//Tier 4 metal +mods.techreborn.blastFurnace.addRecipe(, null, , *4, 600, 100, 1500); + +//Tier 5 metal +mods.techreborn.blastFurnace.addRecipe(, null, , *4, 1200, 150, 2500); + +//Tier 6 metal +mods.techreborn.blastFurnace.addRecipe(, null, , *4, 2400, 200, 3500); + +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(*2, [[null, , null],[, , ], [null, , null]]); + + +recipes.addShaped( * 16, [[, , ],[, null, ], [, , ]]); + + + +########################################################################################## +print("==================== end of mystical agriculture.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/rockhounding.zs b/project/Multiblock Madness/1.0.6/scripts/rockhounding.zs new file mode 100644 index 000000000..b14aca4fa --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/rockhounding.zs @@ -0,0 +1,457 @@ +import crafttweaker.item.IItemStack; +import mods.rockhounding_chemistry.MaterialCabinet; +import mods.rockhounding_chemistry.Transposer; + + +print("==================== loading mods rockhounding.zs ===================="); +########################################################################################## + +val EletrochemicalCTSR = ; + +val itemstoRemove = +[ + , + EletrochemicalCTSR, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + + +.addTooltip("按住shift来查看多方块所需材料"); +.addShiftTooltip((format.red("- 电站"))); +.addShiftTooltip((format.gray("- 物料柜"))); +.addShiftTooltip((format.white("- 元素柜"))); +.addShiftTooltip((format.yellow("- 可选:服务器"))); + +mods.enderio.SagMill.addRecipe([,], [0.15,0.1], ); +mods.enderio.SagMill.addRecipe([,], [0.20,0.15], ); +mods.enderio.SagMill.addRecipe([,], [0.25,0.1], ); + +.add(); + +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +//Fly Ash Balls +recipes.remove(); +recipes.addShaped(, [[, , ],[, *1000, ], [, , ]]); + +//gas Pipes +recipes.remove(); + +recipes.addShaped( * 16, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + + +//Item Detector +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//logic chips (might change idk) +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Advanced Logic Chip +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Heating Element +recipes.addShaped(*2, [[, , ],[, null, ], [, , ]]); +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +// Remove Iron Casings ============================================================= +//.displayName = "TAIGA Casing"; + + +// Remove Unused Graphite Ingots ============================================================= +//mods.jei.JEI.removeAndHide(); + +// Remove Unused wrong Titanium Plate ============================================================= +//mods.jei.JEI.removeAndHide(); + +// Sodium Hydroxid through Alcheical Imbuer ===================================================================================================================================================================== +//mods.thermalexpansion.Imbuer.addRecipe( * 500, * 3, * 1000, 2048); +//mods.thermalexpansion.Imbuer.addRecipe( * 2500, * 3, * 1000, 2048); + + +// Remove and Replace Gas Pipe ============================================================= +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); +//mods.rockhounding_chemistry.ProfilingBench.add(, *4, 1); + +// Remove and Replace Iron Casings ============================================================= +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); +//mods.rockhounding_chemistry.ProfilingBench.add(, *8, 5); + +// Vapor Distilation Plant ============================================================= +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + +##======================================================= +##LAB BLENDER +##======================================================= +// Lab Blend Controller ============================================================= +//recipes.remove(); +//**Note 1: input will be extended to their oredicts. Plans to improve this. +//input array: the list of ingredients with their quantity +//output stack: the resulting mixture and its quantity +//mods.rockhounding_chemistry.LabBlender.add([*9, *4, *2], *9); +//output stack: the output to remove +//mods.rockhounding_chemistry.LabBlender.remove(); + + +recipes.addShaped(EletrochemicalCTSR, [[, , ],[, , ], [, , ]]); + + +// Power Station ============================================================= +//recipes.remove(); + +// Gas Condenser ============================================================= +//recipes.remove(); + +// Pressure Vessel ============================================================= +//recipes.remove(); + +// Evaporation Tank ============================================================= +//recipes.remove(); + +// Seasonal Rack ============================================================= +//recipes.remove(); + +// Slurry Pond ============================================================= +//recipes.remove(); + +// Transposer ============================================================= +//recipes.remove(); + +// Heat Exchanger ============================================================= +//recipes.remove(); + +// Fluid Tank ============================================================= +//recipes.remove(); + +// Gas Pressurizer ============================================================= +//recipes.remove(); + +// Expansion Chambre ============================================================= +//recipes.remove(); + +// Catalyst Regenerator ============================================================= +//recipes.remove(); + +## Air Compressor ============================================================= +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +// Gas Holder ============================================================= +//recipes.remove(); + +##======================================================= +##MINERAL SIZER +##======================================================= + +//Note 1: the script with a single output does not need comminution +//Note 2: output arrays can be also made of 1 element only +//input stack: the item to crush +//output stack: the crushed item + + +//input stack: the item to crush +//output array: the list of possible outputs +//comminution array: the comminution for each output (values: min 0, max 15) + +//mods.rockhounding_chemistry.MineralSizer.add(, [, , , , ], [5, 10, 12, 6, 4]); +//mods.rockhounding_chemistry.MineralSizer.add("oreUninspected", [, , , , ], [5, 10, 12, 6, 4]); + +//input stack: the input to remove +//mods.rockhounding_chemistry.MineralSizer.removeByInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.MineralSizer.removeByOredict("oreUninspected"); + +// Server ============================================================= +//recipes.remove(); + +// Compressing Unit ============================================================= +//recipes.remove(); + +// GAN Controller ============================================================= +//recipes.remove(); + +##======================================================= +##LEACHING VAT +##======================================================= +//input stack: the item to be analyzed +//output array: the list of extracted items +//gravity array: the gravity of each extracted items +//leachate: the fluid byproduct (optional) +//input stack: the input to remove +//mods.rockhounding_chemistry.LeachingVat.removeByInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.LeachingVat.removeByOredict("slimeball"); + +#======================================================= +#CHEMICAL EXTRACTOR +#======================================================= +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//categoty: the category of the input +//input stack: the item to decompose +//output array: the list of elements oredict composing the input +//quantity array: the list of quantities expressed in PartsPerCraft for each element +//mods.rockhounding_chemistry.ChemicalExtractor.add("Sulfate", , ["dustCalcium", "dustSulfur", "dustCarbon", "dustIron", "dustTin"], [20, 13, 5, 4, 3]); + + + + +mods.rockhounding_chemistry.ChemicalExtractor.add("Rare Earth", , +["dustVanadium", "dustScandium", "dustMolybdenum", "dustYttrium", "dustNeodymium"], [56, 42, 37, 25, 20]); +//input stack: the input to remove +//mods.rockhounding_chemistry.ChemicalExtractor.removebyInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.ChemicalExtractor.removeByOredict("oreIron"); +//inhibited element: element not being extracted +//mods.rockhounding_chemistry.InhibitElements.inhibit("dustZirconium"); + +##======================================================= +##MATERIAL CABINET +##======================================================= +//symbol: a 2 chars symbol appearing on screen +//oredict: the element oredict to be added +//name: the display name of the added element +MaterialCabinet.add("Sy", "dustSyrmorite", "Syrmorite"); +MaterialCabinet.add("Oc", "dustOctine", "Octine"); + +MaterialCabinet.add("Ar", "dustArdite", "Ardite"); +MaterialCabinet.add("Gl", "dustGlowstone", "Glowstone"); +MaterialCabinet.add("Bz", "dustBlaze", "Blaze Powder"); + +MaterialCabinet.add("Ad", "dustAdamantine", "Adamantine"); +MaterialCabinet.add("Or", "dustOrichalcum", "Orichalcum"); +MaterialCabinet.add("Pl", "dustPalladium", "Palladium"); +MaterialCabinet.add("St", "dustAstralStarmetal", "Starmetal"); + +MaterialCabinet.add("Hf", "dustHafnium", "Hafnium"); + + + +//oredict: the oredict to remove +//mods.rockhounding_chemistry.MaterialCabinet.remove("dustDraconium"); + +#======================================================= +#METAL ALLOYER +#======================================================= +//input array: list of oredicts composing the alloy +//quantity array: quantity expressed in PartsPerCraft for each element +//output stack: the resulting alloy + +//Kanthal +mods.rockhounding_chemistry.MetalAlloyer.add(["dustIron", "dustChromium", "dustAluminum", "dustSilicon", "dustManganese", "dustCarbon"], [67, 23, 6, 2, 1, 1], ); + + + +//Nichrome +mods.rockhounding_chemistry.MetalAlloyer.remove(); +//mods.rockhounding_chemistry.MetalAlloyer.add(["dustNickel", "dustChromium", "dustIron", "dustSilicon", "dustManganese", "dustMolybdenum"], [70, 20, 1, 2, 3, 4], ); + +// Transposer echanges ============================================================= +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +//Transposer.add(*1000, *1000); not sure what liquid:hydrogenchloride should be, its not a fluid + + +#======================================================= +#PROFILING BENCH +#======================================================= +//input stack: the specific item to be shaped +//output stack: the reshaped item +//pattern: the casting pattern (0:generic, 1:coil, 2:rod, 3:foil, 4:arm, 5:casing, 6:gear, 7:ingot, 8:gauze, 9:coin, 10:plate ) +recipes.remove(); +##Moved to 3D craft +//recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + + +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎8组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎16组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎32组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎64组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎128组"); + +/* +recipes.addShaped(.withTag({ench: [{lvl: 1 as short, id: 34 as short}], RepairCost: 1}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({ench: [{lvl: 2 as short, id: 34 as short}], RepairCost: 1}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({ench: [{lvl: 3 as short, id: 34 as short}], RepairCost: 1}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({ench: [{lvl: 4 as short, id: 34 as short}]}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({Unbreakable: 1 as byte}), [[null, , null],[, , ], [, , ]]); +*/ + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌8组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌16组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌32组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌64组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + + +//mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌128组"); + + +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); + +mods.thermalexpansion.Compactor.addStorageRecipe( * 4, , 1500); +mods.thermalexpansion.Compactor.addStorageRecipe( * 4, , 1500); +mods.rockhounding_chemistry.ProfilingBench.add(, *20, 5); +mods.rockhounding_chemistry.ProfilingBench.add(, *20, 5); + +//input stack: the oredict-based items to be shaped +//mods.rockhounding_chemistry.ProfilingBench.add("blockGlass", *4, 0); + +//input stack: the input to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByOredict("blockGlass"); +//output stack: the output to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); +//casting pattern: the pattern to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByPattern(3); + +##======================================================= +##CRYSTAL PULLING CRUCIBLE +##======================================================= +recipes.remove(); +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//base input: the base ingredient +//dopant: the dopant element +//output: the grown crystal +mods.rockhounding_chemistry.PullingCrucible.add(, , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, , ); +mods.rockhounding_chemistry.PullingCrucible.add(, , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, , ); + +mods.rockhounding_chemistry.PullingCrucible.add(, , ); + +//mods.rockhounding_chemistry.PullingCrucible.add("nuggetIron", , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, "dustGlowstone", ); +//mods.rockhounding_chemistry.PullingCrucible.add("nuggetIron", "dustGlowstone", ); +//input stack: the input to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByInput(); +//input oredict: the input oredict to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByInputOredict("nuggetIron"); +//dopant stack: the dopant to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByDopant(); +//dopant oredict: the dopant oredict to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByDopantOredict("dustGlowstone"); +//output stack: the output to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByOutput(); + +val colorName = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, + +] + as IItemStack[]; + +for item in colorName { +(item).addTooltip(format.darkGreen("过滤碎片")); +} +########################################################################################## +print("==================== end of mods rockhounding.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/rockhounding_alloytips.zs b/project/Multiblock Madness/1.0.6/scripts/rockhounding_alloytips.zs new file mode 100644 index 000000000..f19ed6ccc --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/rockhounding_alloytips.zs @@ -0,0 +1,235 @@ +import crafttweaker.item.IItemStack; + +//Thanks Hacatu! + +val alloyComponentStrsMap as string[][IItemStack] = { +.firstItem: +[ +"96 ppc 铜", +"3 ppc 铍", +"1 ppc 钴" +], +.firstItem: +[ +"98 ppc 铝", +"2 ppc 钪" +], +.firstItem: +[ +"76 ppc 铝", +"15 ppc 镁", +"3 ppc 硼", +"3 ppc 锂", +"3 ppc 硅" +], +.firstItem: +[ +"57 ppc 钴", +"28 ppc 铬", +"11 ppc 钨", +"2 ppc 碳", +"1 ppc 硅", +"1 ppc 钼" +], +.firstItem: +[ +"63 ppc 铜", +"30 ppc 镍", +"2 ppc 铬", +"1 ppc 硅", +"1 ppc 锰", +"1 ppc 铁", +"1 ppc 钛", +"1 ppc 锆" +], +.firstItem: +[ +"50 ppc 镍", +"21 ppc 铬", +"20 ppc 钴", +"6 ppc 钼", +"2 ppc 钛", +"1 ppc 铝" +], +.firstItem: +[ +"55 ppc 镍", +"16 ppc 钼", +"15 ppc 铬", +"5 ppc 铁", +"4 ppc 钨", +"3 ppc 钴", +"1 ppc 锰", +"1 ppc 铌" +], +.firstItem: +[ +"86 ppc 铜", +"11 ppc 镍", +"2 ppc 铁", +"1 ppc 锰" +], +.firstItem: +[ +"77 ppc 铝", +"12 ppc 镁", +"1 ppc 锰" +], +.firstItem: +[ +"95 ppc 铁", +"2 ppc 铬", +"1 ppc 碳", +"1 ppc 钒", +"1 ppc 硅" +], +.firstItem: +[ +"82 ppc 碳化钨化合物", +"13 ppc 钴", +"5 ppc 碳" +], +.firstItem: +[ +"94 ppc 钽", +"5 ppc 钨", +"1 ppc 铌" +], +.firstItem: +[ +"70 ppc 镍", +"30 ppc 铝" +], +.firstItem: +[ +"48 ppc 镍", +"22 ppc 铬", +"19 ppc 钴", +"4 ppc 钛", +"2 ppc 钨", +"2 ppc 铝", +"2 ppc 钽", +"1 ppc 铌" +], +://zircaloy +[ +"98 ppc 锆", +"4 ppc 锡", +"1 ppc 铌", +"1 ppc 铁", +"1 ppc 铬" +], +.firstItem: +[ +"50 ppc 铈", +"29 ppc 镧", +"15 ppc 钕", +"5 ppc 镨", +"1 ppc 铁" +], +.firstItem: +[ +"75 ppc 金", +"22 ppc 铜", +"3 ppc 银" +], +.firstItem: +[ +"75 ppc 金", +"18 ppc 银", +"5 ppc 铜", +"2 ppc 镉" +], +.firstItem: +[ +"75 ppc 金", +"10 ppc 铂", +"10 ppc 镍", +"5 ppc 锌" +], +://shibuchi +[ +"70 ppc 铜", +"20 ppc 银", +"10 ppc 金" +], +.firstItem: +[ +"75 ppc 铜", +"20 ppc 锌", +"5 ppc 砷" +], +.firstItem: +[ +"90 ppc 锡", +"6 ppc 锑", +"2 ppc 铜", +"1 ppc 铋", +"1 ppc 铅" +], +.firstItem: +[ +"93 ppc 铁", +"1 ppc 镍", +"1 ppc 硅", +"1 ppc 铬", +"1 ppc 磷", +"1 ppc 锰", +"1 ppc 铜", +"1 ppc 钒" +], +.firstItem: +[ +"90 ppc 铜", +"10 ppc 金" +], +.firstItem: +[ +"80 ppc 金", +"20 ppc 铝" +], +.firstItem: +[ +"65 ppc 铁", +"30 ppc 钕", +"2 ppc 硼", +"1 ppc 铌", +"1 ppc 镝", +"1 ppc 镨" +], +.firstItem: +[ +"50 ppc 钴", +"25 ppc 钐", +"18 ppc 铁", +"5 ppc 铜", +"2 ppc 锆" +], +://didymium brick +[ +"46 ppc 镧", +"34 ppc 钕", +"11 ppc 镨", +"5 ppc 钐", +"4 ppc 钆", +"60 ppc 过滤过的砂子", +"(制作8个)" +], +.firstItem: +[ +"67 ppc 铁", +"23 ppc 铬", +"6 ppc 铝", +"2 ppc 硅", +"1 ppc 锰", +"1 ppc 碳" +] +} as string[][IItemStack]; + +for alloyItem, componentStrs in alloyComponentStrsMap { + alloyItem.addTooltip(format.gold("按住shift查看合金成分:")); + for str in componentStrs { + alloyItem.addShiftTooltip(format.blue(str)); + } +} + diff --git a/project/Multiblock Madness/1.0.6/scripts/tech_reborn.zs b/project/Multiblock Madness/1.0.6/scripts/tech_reborn.zs new file mode 100644 index 000000000..ef6eb00f9 --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/tech_reborn.zs @@ -0,0 +1,240 @@ + +import mods.techreborn.rollingMachine; +import crafttweaker.item.IItemStack; +import mods.actuallyadditions.Empowerer; +import mods.techreborn.blastFurnace; +import mods.thermalexpansion.Transposer; +import mods.thermalexpansion.Centrifuge; +import mods.techreborn.fusionReactor; +import mods.techreborn.scrapbox; +import mods.techreborn.assemblingMachine; +import mods.techreborn.fluidReplicator; + +print("==================== loading mods techreborn.zs ===================="); +########################################################################################## + + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//UU Matter +.addTooltip(format.darkPurple("用物质机收集而得")); + +//Overclocker +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null], [, , ]]); + +Transposer.addFillRecipe(, .withTag({Fluid: {FluidName: "water", Amount: 1000}}), * 250, 5000); + +//Data Control +recipes.addShaped(*4, [[, , ],[, , ], [, , ]]); + +//UGE tank +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//refined iron +furnace.remove(); +blastFurnace.removeRecipe(); +mods.immersiveengineering.ArcFurnace.addRecipe(*2, , , 400, 512, [, ], "Alloying"); +mods.immersiveengineering.ArcFurnace.addRecipe(, , , 300, 512, [], "Alloying"); +mods.thermalexpansion.InductionSmelter.addRecipe(, , , 10000, , 25); +blastFurnace.addRecipe(*2, , , , 1800, 100, 1000); + +//Grinder +recipes.addShaped(, [[, , ],[, , ], [null, , null]]); +//Chem Reactor +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//Rolling Machine +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//Wire Mill +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//electrolyzer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +### Assembling Machine ### + +//Gold Cable +assemblingMachine.addRecipe(, , , 100, 32); + +//Coils +assemblingMachine.addRecipe(*2, *4, , 100, 32); +assemblingMachine.addRecipe(, *4, , 100, 32); + +//Advanced Coils +assemblingMachine.addRecipe(, , *4, 100, 32); + +### Rolling Machine ### + + + +//heating coils +rollingMachine.removeRecipe(); +rollingMachine.removeRecipe(); +rollingMachine.removeRecipe(); +rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); +rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); + + +//Terrasteel coil +//rollingMachine.addShaped(*4, [[,,],[,null,],[,,]]); + + + +//Blast Furnace +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Cupronickel/Constantan Heating Coil + +.displayName = "康铜加热线圈"; +.add(); +mods.techreborn.rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); + +//mods.techreborn.rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); + +//Advanced Frame +//recipes.addShaped(, [[, , ],[, , ], [, , ]]); +Empowerer.addRecipe(, , , , , , 250000, 400, [0.9, 0.1, 0.2]); +.addTooltip(format.darkPurple("消耗1,000,000 RF")); + +//1st Tier Casing +recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); + +//2nd tier casing +recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); +//recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); + +//3rd Tier Casing +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); + +//SOlar Panel +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//Reinforced Glass +blastFurnace.addRecipe(*2, null, *2, , 1200, 50, 2000); + +### Ginder ### +/*Clay Dust +mods.techreborn.grinder.removeRecipe(*9); +mods.techreborn.grinder.addRecipe(*4, , 300, 4); +mods.techreborn.grinder.addRecipe(, , 150, 2); +*/ + +mods.techreborn.industrialGrinder.addRecipe(, , , null, , null, *500, 200, 512); + +### BLAST FURNACE ### +//mods.techreborn.blastFurnace.removeInputRecipe(IIngredient iIngredient) +// 3880 is max heat + + +//centrifuge + mods.jei.JEI.removeAndHide(); + mods.jei.JEI.removeAndHide(); + mods.jei.JEI.removeAndHide(); +//recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Reflectors +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + + +############################################ +############## CENTERIFUGE ############### +############################################ + +//mods.thermalexpansion.Centrifuge.addRecipe(WeightedItemStack[] outputs, IItemStack input, ILiquidStack fluid, int energy); + + +//Rubber Wood +Centrifuge.addRecipe([ % 50, % 25, % 33], , *100, 4000); + +//lapis dust +Centrifuge.addRecipe([ % 75, % 50, % 25, % 25], , null, 10000); + +//Redstone +Centrifuge.addRecipe([ % 10, % 30, % 50], , *100, 10000); + +//glowstone +Centrifuge.addRecipe([ % 25, % 25], , *100, 10000); + +//endstone +Centrifuge.addRecipe([ % 5, % 25], , *100, 10000); + +//netherrack +Centrifuge.addRecipe([ % 25, % 5, % 5, % 5], , *10, 10000); + +/* +Centrifuge.addRecipe([( * 5) % 10, % 50], , , 2000); +Centrifuge.addRecipe([( * 5) % 10, % 50], , , 2000); +Centrifuge.addRecipe([( * 5) % 10, % 50], , , 2000); +Centrifuge.addRecipe([( * 5) % 10, % 50], , , 2000); +Centrifuge.addRecipe([( * 5) % 10, % 50], , , 2000); +*/ + +//Remove cell recipes +fusionReactor.removeRecipe(.withTag({Fluid: {FluidName: "fluidheliumplasma", Amount: 1000}})); +fusionReactor.removeRecipe(.withTag({Fluid: {FluidName: "fluidhelium3", Amount: 1000}})); + +//More Helium +recipes.addShaped(, [[null, , null],[, .withTag({Fluid: {FluidName: "helium", Amount: 1000}}).onlyWithTag({Fluid: {FluidName: "helium", Amount: 1000}}), ], [null, , null]]); + +scrapbox.addScrapboxDrop(); +scrapbox.removeRecipe(); + +############################################ +############## Fluid Replicator ########## +########################################### + +//Remove liquid recipes +fluidReplicator.removeRecipe(); +fluidReplicator.removeRecipe(); + +//Heavy water +fluidReplicator.addRecipe(2,,10, 1000); +//Enderium +fluidReplicator.addRecipe(2,,100, 1000); +//liquid helium +fluidReplicator.addRecipe(2,,10, 1000); +//Iridium +fluidReplicator.addRecipe(64,,1000, 10000); +//water +fluidReplicator.addRecipe(1,*10000 ,10, 1000); +//lava +fluidReplicator.addRecipe(1,,10, 1000); + + + +########################################################################################## +print("==================== end of mods techreborn.zs ===================="); diff --git a/project/Multiblock Madness/1.0.6/scripts/thaumcraft.zs b/project/Multiblock Madness/1.0.6/scripts/thaumcraft.zs new file mode 100644 index 000000000..0451cc7fb --- /dev/null +++ b/project/Multiblock Madness/1.0.6/scripts/thaumcraft.zs @@ -0,0 +1,183 @@ +########################################################################################## +#modloaded thaumcraft +#priority 100 + +import mods.thaumcraft.ArcaneWorkbench; +import mods.thaumcraft.Crucible; +import mods.thaumcraft.Infusion; +import crafttweaker.item.IItemStack; +import mods.arcanearchives.GCT; +import mods.thaumcraft.SalisMundus; +import mods.botania.PureDaisy; + +print("==================== loading mods thaumcraft.zs ===================="); +########################################################################################## + + +val itemstoRemove = +[ + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +ArcaneWorkbench.removeRecipe(); + +val preciousGems = ; +preciousGems.add(); +preciousGems.add(); +preciousGems.add(); +preciousGems.add(); +preciousGems.add(); +//preciousGems.add(); +//preciousGems.add(); +//preciousGems.add(); + + .setAspects( * 15); + +.addTooltip(format.gold("放在物品栏内会自动照亮周围区域")); +.addTooltip(format.darkPurple("炸毁裂缝得到")); +### CRAFTING RECIPES ### + +// thaumometer +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapedRecipe("CTThaumometer", "", 20, + [], + , [ + [, , ], + [, , ], + [, , ] + ] +); + +// arcane stone +//ArcaneWorkbench.removeRecipe(); +/*ArcaneWorkbench.registerShapedRecipe("CTArcaneStone", "", 10, + [], + * 8, [ + [, , ], + [, , ], + [, , ] + ] +);*/ +ArcaneWorkbench.registerShapedRecipe("CTArcaneStone", "", 10, [], + * 8, [ + [, , ], + [, , ], + [, , ] + ] +); + +//Quartz Slivers +GCT.addRecipe("nuggets", , []); + +//Plate for research +recipes.addShaped(, [[.reuse().transformDamage(10)],[]]); + +PureDaisy.addRecipe(, ); + +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapedRecipe("CTBrassSmelter", "", 50, [], +, +[[, , ], +[, , ], +[, , ]] +); + +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapedRecipe("CTVoidSmelter", "", 750, [*3], +, +[[, , ], +[, , ], +[, , ]] +); + +ArcaneWorkbench.registerShapedRecipe("essentia_component_64k", "", 10, [], , [[, , ],[, , ], [, , ]]); +ArcaneWorkbench.registerShapedRecipe("essentia_component_16k", "", 10, [], , [[, , ],[, , ], [, , ]]); +ArcaneWorkbench.registerShapedRecipe("essentia_component_4k", "", 10, [], , [[, , ],[, , ], [, , ]]); +ArcaneWorkbench.registerShapedRecipe("essentia_component_1k", "", 10, [], , [[, , ],[, , ], [, , ]]); + + +Crucible.removeRecipe(); +Crucible.registerRecipe("CTThaumium", "", + , , + [ * 5, * 5] +); +Crucible.registerRecipe("CTThaumium2", "", + *2, , + [ * 5, * 5] +); +Crucible.registerRecipe("SkullVoidstone", "", + , , + [ * 10] +); + +Crucible.removeRecipe(); +Crucible.registerRecipe("AstralNitor", "", + , , + [ * 10, * 10, * 10] +); +/* +Crucible.registerRecipe("GreatwoodLog", "", + , , + [ * 20, * 5, * 5] +); +*/ +Crucible.registerRecipe("GreatwoodSapling", "", + , , + [ * 20, * 5, * 5] +); +Crucible.removeRecipe(); +Crucible.registerRecipe("GreatwoodSapling", "", + , , + [ * 10, * 10, * 5] +); +furnace.setFuel(, 6400); +// runic matrix +ArcaneWorkbench.removeRecipe(); + + +//add aspects + .setAspects( * 10, * 10, * 10); + .setAspects( * 10, * 10, * 10); + .setAspects(*40,*40); + .setAspects(*40,*40); + +.add(); + + +//primordial_pearl +mods.astralsorcery.Altar.addAttunementAltarRecipe("mm:shaped/internal/thaumcraft/primordial_pearl", , 1500, 300, [ + + , , , + , , , + , , , + + , , , ]); + + + +/* +.removeAspects(*8,*10); +.removeAspects(*30,*30,*10,*10,*3); +//,*/ + +## GREATWOOD STICK +//recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +//recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +.addTooltip(format.lightPurple("对着宏伟之木原木使用世界盐")); +SalisMundus.addSingleConversion(.block, *2); + + + + +########################################################################################## +print("==================== end of mods thaumcraft.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/config/betterquesting/DefaultQuests.json b/project/Multiblock Madness/1.2.1/config/betterquesting/DefaultQuests.json new file mode 100644 index 000000000..70341ca5a --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/betterquesting/DefaultQuests.json @@ -0,0 +1,67415 @@ +{ + "format:8": "2.0.0", + "questDatabase:9": { + "0:10": { + "questID:3": 0, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "匠魂工具", + "desc:8": "§b这里的任务大多数都很人性化,例如:鹤嘴锄任务中,你可以选择制作一把铲子和一把手斧来完成任务。\n\n§b所有匠魂任务都可以在最后的需求分页里打勾完成。\n\n§r当工具耐久耗尽时,你需要在工具装配台中,使用与工具头部相同的材料来修复它,或者你也可以将磨制工具与工具合成来修复。\n\n当你把模具箱放置在模具加工台和部件加工台之间时,它们会自动相连并拥有更方便的功能。\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:pattern", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "minecraft:planks", + "Count:1": 1, + "Damage:2": 0 + } + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "4:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "minecraft:log", + "Count:1": 1, + "Damage:2": 0 + } + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "id:8": "tconstruct:pattern", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "1:10": { + "questID:3": 1, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:pickaxe", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 1.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 1.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "aoe", + "1:8": "tool", + "2:8": "harvest" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "第一把镐子", + "desc:8": "将空白模具放置在模具加工台中就能制作工具模具。制作好的模具放入部件加工台中,再放上可用材料(比如木头)就能够制作工具部件。最后在工具装配台中将工具部件组装,即可获得一把完整的工具。\n\n所需的工具部件材料是任意的,任务都会完成。(或一把完整的镐)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "wood" + }, + "Damage:2": 0, + "OreDict:8": "partPickHead" + }, + "1:10": { + "id:8": "tconstruct:binding", + "Count:3": 1, + "tag:10": { + "Material:8": "wood" + }, + "Damage:2": 0, + "OreDict:8": "partBinding" + }, + "2:10": { + "id:8": "tconstruct:tool_rod", + "Count:3": 1, + "tag:10": { + "Material:8": "wood" + }, + "Damage:2": 0, + "OreDict:8": "partToolRod" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:pickaxe", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.9, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 1.6 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.9, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 1.6 + }, + "Special:10": { + "Categories:9": { + "0:8": "aoe", + "1:8": "harvest", + "2:8": "tool" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "index:3": 2, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "minecraft:cactus", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:flint", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:bone", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "2:10": { + "questID:3": 2, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:mattock", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "HarvestLevelAxe:3": 0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "HarvestLevelShovel:3": 0, + "Durability:3": 55, + "HarvestLevel:3": 0, + "Attack:5": 4.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "HarvestLevelAxe:3": 0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "HarvestLevelShovel:3": 0, + "Durability:3": 55, + "HarvestLevel:3": 0, + "Attack:5": 4.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "aoe", + "1:8": "tool", + "2:8": "harvest" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "更多工具", + "desc:8": "制作一把鹤嘴锄或铲+斧。任意材料都可以完成任务。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:mattock", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "HarvestLevelAxe:3": 0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "HarvestLevelShovel:3": 0, + "Durability:3": 55, + "HarvestLevel:3": 0, + "Attack:5": 4.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "HarvestLevelAxe:3": 0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "HarvestLevelShovel:3": 0, + "Durability:3": 55, + "HarvestLevel:3": 0, + "Attack:5": 4.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "aoe", + "1:8": "tool", + "2:8": "harvest" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:hatchet", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 2.0 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 2.0 + }, + "Special:10": { + "Categories:9": { + "0:8": "aoe", + "1:8": "weapon", + "2:8": "tool", + "3:8": "harvest" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:shovel", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 1.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 69, + "HarvestLevel:3": 0, + "Attack:5": 1.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "aoe", + "1:8": "tool", + "2:8": "harvest" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "index:3": 2, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "tconstruct:shovel_head", + "Count:3": 1, + "tag:10": { + "Material:8": "steeleaf" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:binding", + "Count:3": 1, + "tag:10": { + "Material:8": "iron" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tconstruct:tool_rod", + "Count:3": 1, + "tag:10": { + "Material:8": "dragonbone" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "3:10": { + "questID:3": 3, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:broadsword", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 75, + "HarvestLevel:3": 0, + "Attack:5": 2.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 75, + "HarvestLevel:3": 0, + "Attack:5": 2.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "weapon", + "1:8": "tool" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "匠魂武器", + "desc:8": "§b任意部件都可以完成任务,你可以在匠魂提供的基础剑类武器中任选制作。§r\n\n燧石、骨头和仙人掌很适合前期用来制作武器部件。书中能看到所有可用的部件材料。\n\n这些材料能够强化你的武器!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:broadsword", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 75, + "HarvestLevel:3": 0, + "Attack:5": 2.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 75, + "HarvestLevel:3": 0, + "Attack:5": 2.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "weapon", + "1:8": "tool" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:longsword", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 72, + "HarvestLevel:3": 0, + "Attack:5": 2.0 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 72, + "HarvestLevel:3": 0, + "Attack:5": 2.0 + }, + "Special:10": { + "Categories:9": { + "0:8": "weapon", + "1:8": "tool" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {}, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:rapier", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 55, + "HarvestLevel:3": 0, + "Attack:5": 1.5 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 1.8, + "FreeModifiers:3": 3, + "Durability:3": 55, + "HarvestLevel:3": 0, + "Attack:5": 1.5 + }, + "Special:10": { + "Categories:9": { + "0:8": "weapon", + "1:8": "tool" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "wood", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "3:10": { + "index:3": 3, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:web", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:fermented_spider_eye", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:blaze_powder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "4:10": { + "questID:3": 4, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:sulfur_torch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "沼泽尽头", + "desc:8": "交错次元十分令人讨厌。完成任务来避免进入那可怕的地方。\n\n你仍然需要制作护身符来完成任务以继续发展。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:octine_ore", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thebetweenlands:cragrock", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thebetweenlands:log_weedwood", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thebetweenlands:syrmorite_ore", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 32, + "Damage:2": 18, + "OreDict:8": "" + } + } + } + } + }, + "5:10": { + "questID:3": 5, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:sand", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Some Basic Materials", + "desc:8": "Standard gathering routine." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:clay_ball", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:sand", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "sand" + }, + "2:10": { + "id:8": "minecraft:gravel", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:dirt_essence", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mysticalagriculture:water_essence", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mysticalagriculture:fire_essence", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "mysticalagriculture:stone_essence", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "6:10": { + "questID:3": 6, + "preRequisites:11": [ + 401 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Heavy Engineering Blocks", + "desc:8": "Used for more advanced machinery." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 9, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-excavatordemo", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-excavatordemo" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 3, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-metalpress", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-metalpress" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 5, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-refinery", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-refinery" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 3, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-autoworkbench", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-autoworkbench" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 5, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-arcfurnace", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-arcfurnace" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 7, + "structureName:8": "config/capsule/prefabs/immersivepetroleum/ip-pumpjack", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ip-pumpjack" + }, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "7:10": { + "questID:3": 7, + "preRequisites:11": [ + 18 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:tinker_lens", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "工匠小帮手", + "desc:8": "前期的余烬!\n任意手里拿着工匠单片眼镜即可看到不同方块的工作方式。\n\n带着大气能量测量表能够找到余烬能量富集的地方,这里最适合放置你的晶体开采机了。\n\n没有gui意味着你很难知道机器内部发生了什么,所以制作一些物品计量表吧!\n\n\n查阅古代法典能够看到更详细的物品信息,是的,比任务描述详细。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:tinker_lens", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:ember_detector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:ember_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "embers:fluid_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:ember_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "8:10": { + "questID:3": 8, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_item_conduit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "科技材料", + "desc:8": "这儿有一些东西帮助你搭建物流系统。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderutilities:storage_0", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_item_conduit", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "artisanworktables:artisans_hammer_diamond", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "openblocks:tank", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "9:10": { + "questID:3": 9, + "preRequisites:11": [ + 7 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ember_bore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "灰烬开采机", + "desc:8": "将方块放置在基岩上方三格以内,然后用管道将煤炭等可燃物从上方的洞抽入进开采机内,它就会开始开采灰烬晶体!开采机大小为3X3。\n\n在顶部中心处放置机械核心连接器(或机械核心)可增加多个访问面。\n\n§c如果使用的是机械核心连接器,你必须右键放置,如果潜行右键放置,它就不会连接到开采机上!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_bore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:crystal_ember", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:shard_ember", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "embers:dust_ember", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:hopper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "10:10": { + "questID:3": 10, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "compactmachines3:fieldprojector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "微缩科技", + "desc:8": "如何使用:\n\n放置任意方块,然后在顶上放置压缩空间机械制作器,将它朝向你想要压缩投影存在的地方放置。右键制作器来查看另外三个制作器可放置的位置。右键另一个制作器来查看另外两个制作器需要放置的位置。请确保每个制作器面向同一个点,且地板是平整的。\n\n如果放置正确,一个§e§6橙色的全息投影§r会在中心生成。这儿就是你需要搭建配方的地方。\n\n最基础的一点,制作器最少也要离地一格方块。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "compactmachines3:fieldprojector", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:compass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "11:10": { + "questID:3": 11, + "preRequisites:11": [ + 358 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_soul_binder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "灵魂绑定", + "desc:8": "使用灵魂瓶,制作新物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_soul_binder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "12:10": { + "questID:3": 12, + "preRequisites:11": [ + 596, + 598, + 691 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "终极锭!", + "desc:8": "想要自动化这家伙好像有些难办。你需要找到一种方法来放置充能方块,同样的,你也需要找到破坏和收集未充能方块的方法。\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + } + } + } + } + }, + "13:10": { + "questID:3": 13, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "星光", + "desc:8": "魔法很有趣!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "ebwizardry:magic_crystal", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "ebwizardry:arcane_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:charm_spell_discovery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemskyresonator", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "14:10": { + "questID:3": 14, + "preRequisites:11": [ + 15 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tcomplement:melter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "冶炼", + "desc:8": "使用金属来升级你的装备。\n\n将冶炼炉放在装有熔岩的焦黑储罐上。放入2个金或粘土,融化后,右键放置在冶炼炉上的浇注口来将熔融金属排出,你可以将其排出到浇筑台上,配合各种铸模即可制作金属制对应物品。\n\n§c冶炼炉只能同时容纳一种流体!§r\n\n§b徽章可以在商店任务章节里兑换资源。\n\n§5等级6的种子能够以1比2的比例向下分解。请明智地选择!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tcomplement:melter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:seared_tank", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "smelteryHeart" + }, + "2:10": { + "id:8": "tconstruct:casting", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:faucet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:lava_bucket", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "执行一条命令", + "viaPlayer:1": 0, + "index:3": 2, + "title:8": "系统通告", + "command:8": "/say VAR_NAME 已完成章节 1!" + } + } + }, + "15:10": { + "questID:3": 15, + "preRequisites:11": [ + 427 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:materials", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "焦黑砖", + "desc:8": "搭建冶炼炉的第一步。你需要比任务需求更多的焦黑砖,但目前来讲,这些足够了。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:materials", + "Count:3": 24, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:vis_meal", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "16:10": { + "questID:3": 16, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "iron" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "这不是铁镐吗?", + "desc:8": "铸模成型后,往里导入熔融金属。这个任务需要铁来完成。\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "iron" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:sharpening_kit", + "Count:3": 1, + "tag:10": { + "Material:8": "iron" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "17:10": { + "questID:3": 17, + "preRequisites:11": [ + 579 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumicaugmentation:starfield_glass", + "Count:3": 5, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "天堂锻炉", + "desc:8": "由巨型激光供能,这个多方块机器能够将一些极稀有、极珍贵的材料煅烧在一起。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:heavens-forge" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "modulardiversity:blockmeklaseracceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "itemOutputHatch" + }, + "4:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 2, + "Damage:2": 2, + "OreDict:8": "itemInputHatch" + }, + "5:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 2, + "Damage:2": 6, + "OreDict:8": "fluidInputHatch" + }, + "6:10": { + "id:8": "mekanism:basicblock", + "Count:3": 24, + "Damage:2": 8, + "OreDict:8": "" + }, + "7:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 16, + "Damage:2": 2, + "OreDict:8": "" + }, + "8:10": { + "id:8": "techreborn:storage2", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + }, + "9:10": { + "id:8": "environmentaltech:structure_frame_6", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "10:10": { + "id:8": "thaumcraft:metal_alchemical_advanced", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "11:10": { + "id:8": "extendedcrafting:frame", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "12:10": { + "id:8": "extendedcrafting:storage", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "13:10": { + "id:8": "thaumicaugmentation:starfield_glass", + "Count:3": 6, + "Damage:2": 2, + "OreDict:8": "" + }, + "14:10": { + "id:8": "twilightforest:block_storage", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "mekData:10": { + "security:3": 0, + "ownerUUID:8": "d1717768-0172-49ab-aec1-454f6a362e3f", + "controlType:3": 0 + } + }, + "Damage:2": 14, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "mekData:10": { + "energyStored:6": 1995000.0 + } + }, + "Damage:2": 13, + "OreDict:8": "" + } + } + } + } + }, + "18:10": { + "questID:3": 18, + "preRequisites:11": [ + 10 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:mech_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "余烬核心", + "desc:8": "在制作器中间的橙色投影中,按照配方搭建多方块结构,然后将催化物品扔到投影中。\n\n你可以把它用在晶体开采机上,它同样能够增加开采机的可交互面。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:mech_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:sealed_planks", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:block_caminite_brick", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:archaic_brick", + "Count:3": 128, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "19:10": { + "questID:3": 19, + "preRequisites:11": [ + 198 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 134, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "铂锭", + "desc:8": "需要2000度高温。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 134, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "20:10": { + "questID:3": 20, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-章节 5已移除-", + "desc:8": "用来制作板或致密板。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "21:10": { + "questID:3": 21, + "preRequisites:11": [ + 7 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:item_pipe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "物品管道", + "desc:8": "将物品从容器内抽出,并传输到管道尽头。 \n\n§c提取泵需要红石信号激活。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:item_pipe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:item_pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:caminite_lever", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:item_pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "22:10": { + "questID:3": 22, + "preRequisites:11": [ + 9 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ember_activator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "激活这些余烬!", + "desc:8": "用工匠单片眼镜查看它的顶部和底部,你可以发现底部是用来输入固态余烬,顶部是用来输出余烬能量的。在顶部放上灰烬能量发射器即可传输能量,然后在铜质灰烬能量单元或灰烬能量驱动的机器上放置一个灰烬能量接收器即可接收能量。\n\n用工匠锤在接收器处§6潜行右键§r,然后在发射器处§6右键§r。为发射器提供一个§6红石信号§r后,你就能看到灰烬能量被传输出来!灰烬能量最大发射距离为25格。\n\n§b在前期,灰烬能量可以用来代替少量RF,你只需在机器上放置一个接收器!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_activator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:ember_emitter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:ember_receiver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:tinker_hammer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:caminite_lever", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:copper_cell", + "Count:3": 1, + "tag:10": { + "emberCapacity:6": 24000.0, + "ember:6": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "23:10": { + "questID:3": 23, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:block_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "使用灰烬能量冶炼金属(2倍矿物)", + "desc:8": "在熔炼炉正确一侧放上灰烬能量接收器。用锤子潜行右键接收器,然后右键发射器即可将它们连接在一起。使用拉杆来激活发射器。\n\n你可以拿着物品右键熔炼炉将物品放进去,也可以直接把物品扔进去,当然,用管道抽进去也是可行的。 \n\n这是前期矿物双倍化的方法之一。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:block_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:fluid_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "24:10": { + "questID:3": 24, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "泵升级", + "desc:8": "用这些东西对着泵右键。在你获取电弧炉之前,你无法制作铝。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "25:10": { + "questID:3": 25, + "preRequisites:11": [ + 7 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:pipe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "流体管道", + "desc:8": "与物品管道的工作方式相同。 \n\n§c§c请确保有红石信号用来激活提取器。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:pipe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "26:10": { + "questID:3": 26, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:stamper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Stamping Metal", + "desc:8": "Fluid goes in the Bottom, one empty block, then the Stamper above that. Right click with the stamp to attach, them power with Ember.\n\nBe sure that your Ember Shards are placed before you start piping metal in!\n\nItems are collected in a Bin below the Stamp Base, or dropped if there is no Bin." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:stamper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:stamper_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:stamp_plate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "embers:bin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:blend_caminite", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "27:10": { + "questID:3": 27, + "preRequisites:11": [ + 238 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Basic Alloys", + "desc:8": "Cast out one of the five basic alloys to complete this chapter!\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 162, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 164, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "3:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 3, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 161, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "4:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 4, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:inert_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/say VAR_NAME has completed Chapter 2!" + } + } + }, + "28:10": { + "questID:3": 28, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:log", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Punching Wood", + "desc:8": "Welcome to Multiblock Madness! \n\nMost vanilla recipes are unchanged, so you can start at your own pace. Take you time setting up a base, or rush ahead with progression.\n\nRecipes get progressively more expensive as you go through the pack, so stock up!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:log", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "logWood" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "comforts:sleeping_bag", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "1:10": { + "id:8": "prefab:item_start_house", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "29:10": { + "questID:3": 29, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "akashictome:tome", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Akashic Tome", + "desc:8": "This is basically a hand held book shelf. Craft it together with any book to add it.\n\nRight click with it to open the book menu, then once you are done looking at whichever book just left click the air with it.\n\n§bThe filled Tome is craftable, so if you do lose your Tome, just craft another." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "akashictome:tome", + "Count:3": 1, + "tag:10": { + "akashictome:data:10": { + "tconstruct:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tconstruct:book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "tconstruct" + }, + "Damage:2": 0 + }, + "integratedtunnels:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "integrateddynamics:on_the_dynamics_of_integration", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "integratedtunnels" + }, + "Damage:2": 0 + }, + "astralsorcery:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemjournal", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "astralsorcery" + }, + "Damage:2": 0 + }, + "conarm:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "conarm:book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "conarm" + }, + "Damage:2": 0 + }, + "immersiveengineering:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:tool", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "immersiveengineering" + }, + "Damage:2": 3 + }, + "arcanearchives:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "arcanearchives:tome_arcana", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "arcanearchives", + "Book:8": "arcanearchives:xml/tome.xml" + }, + "Damage:2": 0 + }, + "qmd:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "patchouli:guide_book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "qmd", + "patchouli:book:8": "qmd:guide" + }, + "Damage:2": 0 + }, + "valkyrielib:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "valkyrielib:guide", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "valkyrielib" + }, + "Damage:2": 0 + }, + "embers:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:codex", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "embers" + }, + "Damage:2": 0 + }, + "rftools:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:rftools_shape_manual", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "rftools" + }, + "Damage:2": 0 + }, + "deepmoblearning:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "patchouli:guide_book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "deepmoblearning", + "patchouli:book:8": "deepmoblearning:book" + }, + "Damage:2": 0 + }, + "solcarrot:10": { + "id:8": "solcarrot:food_book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "solcarrot" + }, + "Damage:2": 0 + }, + "rftools1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:rftools_manual", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "rftools1" + }, + "Damage:2": 0 + }, + "extendedcrafting:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extendedcrafting:guide", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "extendedcrafting" + }, + "Damage:2": 0 + }, + "botania:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:lexicon", + "Count:1": 1, + "tag:10": { + "knowledge.minecraft:1": 1, + "akashictome:definedMod:8": "botania", + "knowledge.alfheim:1": 1, + "knowledge.relic:1": 1 + }, + "Damage:2": 0 + }, + "bloodmagic:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "guideapi:bloodmagic-guide", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "bloodmagic" + }, + "Damage:2": 0 + }, + "actuallyadditions:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_booklet", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "actuallyadditions" + }, + "Damage:2": 0 + }, + "cyclicmagic:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "guideapi:cyclicmagic-guide", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "cyclicmagic" + }, + "Damage:2": 0 + }, + "openblocks:10": { + "id:8": "openblocks:info_book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "openblocks" + }, + "Damage:2": 0 + }, + "cookingforblockheads:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "cookingforblockheads:recipe_book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "cookingforblockheads" + }, + "Damage:2": 1 + }, + "nuclearcraft:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "patchouli:guide_book", + "Count:1": 1, + "tag:10": { + "akashictome:definedMod:8": "nuclearcraft", + "patchouli:book:8": "nuclearcraft:guide" + }, + "Damage:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "30:10": { + "questID:3": 30, + "preRequisites:11": [ + 16 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:lurker_skin_pouch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Backpacks", + "desc:8": "You will need to go to the Betweenlands before you can craft your first backpack, the Lurker Skin Pouch.\n\nIn the meantime, have a Shulker box!" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:purple_shulker_box", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "31:10": { + "questID:3": 31, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "chisel:chisel_iron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Looking Good!", + "desc:8": "Right click with the Chisel to open the block chisel menu, then put something that can be chiseled, for example cobblestone. Then you click a variant to chisel all the cobble in the upper left slot into the one you picked. You can also leave a chiseled block in the slot, which will enable you to chisel inworld blocks of the same type with left click." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "chisel:chisel_iron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "chisel:factory", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "chisel:laboratory", + "Count:3": 64, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "chisel:tyrian", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "chisel:valentines", + "Count:3": 64, + "Damage:2": 3, + "OreDict:8": "" + } + } + }, + "1:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "openblocks:builder_guide", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "32:10": { + "questID:3": 32, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "questbook:itemquestbook", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hotkeys and Quests", + "desc:8": "§d§rWe have a few very useful hotkeys to set up in this pack:\n\n§2Better Questing: Opens the questbook.\n\n§bOre Excavator: Holding down while using a tool will cause connected blocks to be harversted as well.\n\n§eNotes: Opens a notepad.\n\n§6Find Me: Pushing while hovering oven an item will cause nearby chests containing that item to light up.\n\n\n\n§rIf you are having trouble with a quest, read the discription!\n\nWhen you see a red X§r, you will need to check it to complete the quest." + } + }, + "tasks:9": { + "0:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "33:10": { + "questID:3": 33, + "preRequisites:11": [ + 67 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Pumping Fluids", + "desc:8": "This pump needs a small amount of power in the top to run, as well as a redstone signal. Right click a side with the Hammer to change in/output." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderstorage:ender_storage", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "34:10": { + "questID:3": 34, + "preRequisites:11": [ + 59, + 482 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "cyclicmagic:builder_pattern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Automating the 3D Crafting!", + "desc:8": "Shift right click on each corner of a 3D craft, then place the Markers inside the Replicator. Link the last Marker to where you want the Builder to assemble the structure.\n\nAfter receiving RF and the items, it will start to build." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "cyclicmagic:builder_pattern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "cyclicmagic:card_location", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "35:10": { + "questID:3": 35, + "preRequisites:11": [ + 21, + 25 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:item_transfer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Item/Fluid Filters", + "desc:8": "Place one of these as a pipe, then right click it with the only thing you want to pass through it." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:item_transfer", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:fluid_transfer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "36:10": { + "questID:3": 36, + "preRequisites:11": [ + 79 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Upgrading a Gas Pump", + "desc:8": "Upgrade a Gas Pump by right clicking with a Compressing Unit." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:gasline_pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "37:10": { + "questID:3": 37, + "preRequisites:11": [ + 501 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "improvedbackpacks:backpack", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Backpack", + "desc:8": "Can be placed in the body Bauble slot, and opened with a hotkey.\n\n§bYou may notice a lot of single use crafted quests, such as this one, giving a choice for another of the same item. This is intended for players on a team." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "improvedbackpacks:backpack", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "improvedbackpacks:backpack", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "improvedbackpacks:blank_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "improvedbackpacks:tanned_leather", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "38:10": { + "questID:3": 38, + "preRequisites:11": [ + 331 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:condenser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Cleaning up Flux", + "desc:8": "Place the §5Flux Condenser§r on top of one of the jars, with the other four connected by tube to it. Then place the Lattices on top, all connected to the Condenser as well. \n\nEach of the outside jars will need to be filled with Essenta to activate the §5Condenser§r. Be sure to keep the Lattces clean by using a Filter on them when they get clogged." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:condenser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:jar_normal", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:tube", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thaumcraft:condenser_lattice", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:filter", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "39:10": { + "questID:3": 39, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "waystones:return_scroll", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Return Scrolls", + "desc:8": "Hold paper in your hand, and Charcoal in your off hand, then shift right click your Waystone to copy the strange symbols. This also requires a small amount of XP to create.\n\n\n\n\n\n(or you can use the /home command, but thats not as cool)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "waystones:return_scroll", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:paper", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "40:10": { + "questID:3": 40, + "preRequisites:11": [ + 39 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:large_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fluid Storage Mk2", + "desc:8": "Stores MORE fluid!\n\nPlace the Valve on top of the Reservoir. Fluid can be transfered through any of the sides or the bottom." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:large_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:stone_valve", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:coin", + "Count:3": 1, + "Damage:2": 64, + "OreDict:8": "" + } + } + } + } + }, + "41:10": { + "questID:3": 41, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "plustic::10": { + "Size:3": 1, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + }, + "plustic:fruitsalad_cap:10": { + "Size:3": 5, + "Items:9": {} + }, + "plustic:musicofthespheres_cap:10": { + "Size:3": 1, + "Items:9": {} + } + }, + "id:8": "tconstruct:pickaxe", + "Count:3": 1, + "tag:10": { + "StatsOriginal:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 4.5, + "FreeModifiers:3": 3, + "Durability:3": 172, + "HarvestLevel:3": 1, + "Attack:5": 2.175 + }, + "Stats:10": { + "AttackSpeedMultiplier:5": 1.0, + "MiningSpeed:5": 4.5, + "FreeModifiers:3": 3, + "Durability:3": 172, + "HarvestLevel:3": 1, + "Attack:5": 2.175 + }, + "Special:10": { + "Categories:9": { + "0:8": "harvest", + "1:8": "aoe", + "2:8": "tool" + } + }, + "TinkerData:10": { + "Materials:9": { + "0:8": "wood", + "1:8": "flint", + "2:8": "wood" + }, + "Modifiers:9": { + "0:8": "toolleveling" + } + }, + "Modifiers:9": { + "0:10": { + "identifier:8": "ecological", + "color:3": -7444965, + "level:3": 1 + }, + "1:10": { + "identifier:8": "crude", + "color:3": -9868951, + "level:3": 2, + "crude2:1": 1 + }, + "2:10": { + "identifier:8": "toolleveling", + "color:3": 16777215, + "level:3": 1 + } + }, + "Traits:9": { + "0:8": "ecological", + "1:8": "crude2", + "2:8": "toolleveling" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Altering Your Tools", + "desc:8": "Place any tool or weapon in the center of the tool station along with a part to replace that part.\n\n§bAdd these to your pickaxe for more specific Fossil drops." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "id:8": "fossil:relic_scrap", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "fossil:biofossil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "42:10": { + "questID:3": 42, + "preRequisites:11": [ + 23 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:geo_separator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ore Byproducts", + "desc:8": "When you melt an ore, some impurities are lost. If you attach this to the base of the melter when you melt down some ores, you can collect a second molten metal type." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:geo_separator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "thermalfoundation:storage", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:pump", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "43:10": { + "questID:3": 43, + "preRequisites:11": [ + 459 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Thermal Evaporation", + "desc:8": "Assemble a 4x4 base, then place 2 exterior layers, so you have a 2x2 open interior.\n\nYou have two options for heating: Advanced Solar Panels on each 4 corners (these need to be inset one block.)\n\nOr you can use Heaters placed adjacent to a valve. §c§rRemember to set the RF useage in the machine!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:basicblock2", + "Count:3": 37, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mekanism:basicblock", + "Count:3": 2, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock3", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 2, + "tag:10": { + "mekData:10": { + "security:3": 0, + "ownerUUID:8": "d1717768-0172-49ab-aec1-454f6a362e3f", + "energyStored:6": 200000.0, + "Items:9": {} + } + }, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "44:10": { + "questID:3": 44, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:boiler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "More Efficient Ember Useage", + "desc:8": "Simply by supplying this with a steady source of water, you can increase your ember burning efficiency by 1.5. If you place it on a block of metal, then heat it up by surounding it with lava or fire, you can double that.\n\n§bTry placing this on a block of Dawnstone!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:boiler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "45:10": { + "questID:3": 45, + "preRequisites:11": [ + 52 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:mech_actuator_single", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Making the Switch", + "desc:8": "Place the Mechanical Core on top of the Bore, then attach the Mechanical Actuator to it. Next connect it with axels to your Steam Engine. \n\nDont forget to add a gear!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:mech_actuator_single", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:mech_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "46:10": { + "questID:3": 46, + "preRequisites:11": [ + 428 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_experience_obelisk", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Storing XP", + "desc:8": "This handy device allows you to store xp.\n\n§bThe Rod is required to store XP on a server." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_experience_obelisk", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_xp_transfer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:block_travel_anchor", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "47:10": { + "questID:3": 47, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:shockwave_sword", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rare Mobs and Drops", + "desc:8": "Finding things is a challenge sometimes." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:leather", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "iceandfire:dragonbone", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:shockwave_sword", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:ender_pearl", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 2, + "tag:10": { + "EntityTag:10": { + "id:8": "minecraft:cow" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 2, + "tag:10": { + "EntityTag:10": { + "id:8": "minecraft:sheep" + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "48:10": { + "questID:3": 48, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "COMPLETED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ebwizardry:magic_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Magic Crystals", + "desc:8": "Picked as a flower in the overworld, or mined deep underground.\n\nMagic Crystals have many uses in Wizardry" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ebwizardry:magic_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:sapling_greatwood", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "49:10": { + "questID:3": 49, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:iron_ore", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ore Not", + "desc:8": "Who likes constantly going back underground?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:iron_ore", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:coal", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thermalfoundation:ore", + "Count:3": 32, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thermalfoundation:ore", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thermalfoundation:ore", + "Count:3": 32, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "50:10": { + "questID:3": 50, + "preRequisites:11": [ + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "arcanerose" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Xp Flower", + "desc:8": "Anyone standing next to the flower will find their xp being turned in mana." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "arcanerose" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:experience_bottle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "51:10": { + "questID:3": 51, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:steam_engine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mechanical Power", + "desc:8": "Mechanical Power can be used instead of ember to greatly increase efficiency from some of your ember machines. The Ember Bore and Pump are the most effected by switching to mechanical power.\n\nThe steam engine can either have coal and water piped into it, or steam. Piping in steam produces much more energy." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:steam_engine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "52:10": { + "questID:3": 52, + "preRequisites:11": [ + 51 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalmechanics:axle_iron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Transfering Mechanical Power", + "desc:8": "Axles go between the Steam engine output and the Gearbox, which has the input facing you when you place it. \n\nThe Gearbox needs a gear on any face with an Axle to complete the connection.\n\nWhenever you make a right turn with an Axle, you willl need a Gearbox there.\n\n§6Dawnstone Gears are the fastest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalmechanics:axle_iron", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 4, + "Damage:2": 24, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mysticalmechanics:gearbox_frame", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "53:10": { + "questID:3": 53, + "preRequisites:11": [ + 73 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Coke Oven", + "desc:8": "Make a 3x3x3 cube, then hammer the front with your hammer.\n\nCoal goes in, Coke Coal and Creosote Oil comes out.\n\nCan also be used to create Charcoal." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 27, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:coal", + "Count:3": 18, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "54:10": { + "questID:3": 54, + "preRequisites:11": [ + 426 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_painter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Painting Machine", + "desc:8": "This can be used to hide Conduits." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_painter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_conduit_facade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_conduit_facade", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "55:10": { + "questID:3": 55, + "preRequisites:11": [ + 468 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:matter_fabricator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Matter Fabricator", + "desc:8": "Place Scrap/boxes inside for UU Matter." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:matter_fabricator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:recycler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:cobblestone_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "56:10": { + "questID:3": 56, + "preRequisites:11": [ + 52 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:gear_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dawnstone Gears", + "desc:8": "These gears can handle the greatest speeds." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:gear_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "57:10": { + "questID:3": 57, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Dawnstone", + "desc:8": "Look up the recipe for molten Dawnstone to create." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "58:10": { + "questID:3": 58, + "preRequisites:11": [ + 102, + 108, + 145 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tcomplement:high_oven_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "High Oven (2x Ore)", + "desc:8": "Assemble a hollow 3x3x3 cube, then place the controller in the center of one of the layers. The drain can go anywere, but put it on the second row up, then attach the faucet to it. Place the table below the faucet.\n\n§6You can increase the capacity by adding extra middle layers.\n\n§rThe High Oven works by burning Coke Coal to produce heat. Once the heat is high enough, it well start the melting process. If it is hot enough, and you have the correct inputs, it can also create a few alloys." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tcomplement:high_oven_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tcomplement:high_oven_io", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tcomplement:scorched_block", + "Count:3": 24, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tcomplement:high_oven_io", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tcomplement:scorched_casting", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "59:10": { + "questID:3": 59, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "First Steel!", + "desc:8": "Picking up an ingot will complete the quest.\n\nPlace iron, sand (or Limestone Flux), and sulfur in the High Oven, then wait for the temperature to rise enough for the iron to melt.\n\n§cMake sure it is hot enough before trying to craft alloys!\n\n§rIf you use iron ore instead of iron ingots, you will get two steel per ore." + } + }, + "tasks:9": { + "0:10": { + "autoConsume:1": 0, + "groupDetect:1": 0, + "requiredFluids:9": { + "0:10": { + "FluidName:8": "steel", + "Amount:3": 144 + } + }, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "taskID:8": "bq_standard:fluid" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "ingotSteel" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/say VAR_NAME has completed Chapter 3!" + } + } + }, + "60:10": { + "questID:3": 60, + "preRequisites:11": [ + 751 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:fusion_control_computer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Fusion Reactor", + "desc:8": "You will need 3,172 Coils to get to the correct size." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:fusion_control_computer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:fusion_coil", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "61:10": { + "questID:3": 61, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Simple Steel Production", + "desc:8": "The Blast Furnace is simpler, so it might be worth investing in, but the High Oven is much more efficient.\n\n\nBuild a 3x3x3 cube, with the Hopper goes on top, then hammer the front. Pre-Heaters are placed on each side as an optional upgrade, and are powered from the top." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 27, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:hopper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "62:10": { + "questID:3": 62, + "preRequisites:11": [ + 107 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:swamp_talisman", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Making your way to the Betweenlands", + "desc:8": "Either find a swamp and kill lots of Dark Druids until you get all the Talisman pieces, or you can craft them.\n\n§cYou will need to craft the Talisman on a Dark Druid Altar!\n\n§rOnce you have the Swamp Talisman, use it on a sapling centered on a 17x17 flat area to create the portal." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:swamp_talisman", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:swamp_talisman", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:swamp_talisman", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:swamp_talisman", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "id:8": "thebetweenlands:druid_altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:weedwood_rowboat", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "63:10": { + "questID:3": 63, + "preRequisites:11": [ + 256 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Another Portable Tank", + "desc:8": "Right click with a wrench to toggle auto output, press M while holding to toggle bucket mode." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "64:10": { + "questID:3": 64, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:purpleprint", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Multiblocks!", + "desc:8": "This is used to visulize some multiblock structures in JEI. \n\nShouldn\u0027t have to say this, but don\u0027t actually do one of these crafts!" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:purpleprint", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "65:10": { + "questID:3": 65, + "preRequisites:11": [ + 40 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:stone_edge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Bigger Tank", + "desc:8": "You can place either rings or more valves on top to increase the amount of fluid it can hold by 40 buckets each." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:stone_edge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:coin", + "Count:3": 1, + "Damage:2": 64, + "OreDict:8": "" + } + } + } + } + }, + "66:10": { + "questID:3": 66, + "preRequisites:11": [ + 493, + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumicaugmentation:research_notes", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Researching Alchemy", + "desc:8": "Unlock Alchemy all the way to Advanced Essenta Transport.\n\nAlso unlocks Hedge Alchemy.\n\n§bUnneeded if skipping research, or if you plan on doing all of it by hand." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:metal_alchemical", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:scribing_tools", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:paper", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Unlock Advanced Alchemy", + "viaPlayer:1": 0, + "index:3": 0, + "title:8": "bq_standard.reward.command", + "command:8": "/tc research @s ESSENTIATRANSPORT" + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Unlock Advanced Essenta Smelting", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/tc research @s IMPROVEDSMELTING2" + }, + "2:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Unlock Hedge Alchmey", + "viaPlayer:1": 0, + "index:3": 2, + "title:8": "bq_standard.reward.command", + "command:8": "/tc research @s HEDGEALCHEMY" + } + } + }, + "67:10": { + "questID:3": 67, + "preRequisites:11": [ + 402 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "beneath:teleporterbeneath", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Beneath", + "desc:8": "Right click to enter THE BENEATH.\n\nOnce you enter, look for the giant cavern.\n\nThis is great place to run Pumpjacks and the Excavator!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "beneath:teleporterbeneath", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "quark:arrow_torch", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "68:10": { + "questID:3": 68, + "preRequisites:11": [ + 67 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "gold", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "Found as lakes in the huge cavern in The Beneath." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "gold", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:coin", + "Count:3": 1, + "Damage:2": 64, + "OreDict:8": "" + } + } + } + } + }, + "69:10": { + "questID:3": 69, + "preRequisites:11": [ + 300 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcustomsandore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Starlight + Lava \u003d ?", + "desc:8": "Where these two liquids touch, sand is created, with a §bvery§r small chance of Aquamarine." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:sand", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockcustomsandore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:quartz_sliver", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "70:10": { + "questID:3": 70, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dynamic Tank", + "desc:8": "This is enough to build the smallest size tank, a 3x3x3 cube. The frame must be made out of Dynamic Tanks, and Glass or Valves can go on the faces." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:basicblock", + "Count:3": 20, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mekanism:basicblock", + "Count:3": 5, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mekanism:basicblock", + "Count:3": 10, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "71:10": { + "questID:3": 71, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:iron_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Iron", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:iron_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:iron_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "72:10": { + "questID:3": 72, + "preRequisites:11": [ + 85 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "puredaisy" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Actual Magic Flowers", + "desc:8": "Drop the correct petals, then some seeds into a filled Petal Apothecary.\n\nPlacing the correct blocks around the Pure Daisy will slowly transform them.\n\n§bCheck out what other blocks can be transformed!\n§r\n\nThe §aMunchdew§r will eat leaves in an area around itself as long as possible, then take a break when it runs out or fills up. Each leaf eaten will generate some amount of §3§1§9Mana§r.\n\n§3" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "puredaisy" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "munchdew" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "puredaisy" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "munchdew" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "73:10": { + "questID:3": 73, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Another Hammer", + "desc:8": "This hammer is mainly used to complete the multiblock structures from Immersive Engineering.\n\n§bPlacing the tank into the Coke Oven will fill it with oil." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalexpansion:tank", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Level:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "74:10": { + "questID:3": 74, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tcomplement:high_oven_io", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "High Oven Automation", + "desc:8": "Place this anywhere on the structure." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tcomplement:high_oven_io", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 4, + "Damage:2": 352, + "OreDict:8": "" + } + } + } + } + }, + "75:10": { + "questID:3": 75, + "preRequisites:11": [ + 27, + 233 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Profiling Bench", + "desc:8": "§b§rLeft click to change modes, then right click to place whatever item you want processed. The Profiling Bench does not need power.\n\nItems can be piped in and out quite simply, so don\u0027t hesitate to set up a small automation for it!\n\nRockhounding can be an intimadating mod! However in this pack it is §r§6almost §6completely optional§r, with the exception of this, the Metal Alloyer in Chapter 5, and the Vapor Distilation Chamber in Chapter 7. It is highly recommended to do at least the next quest in the line, to familiarize yourself with some of the concepts.\n\nThe Rockhounding questbook chapter will explain in depth how to get the most out of it, and if you need further help, feel free to stop by our §9Discord§r!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "gbook:guidebook", + "Count:3": 1, + "tag:10": { + "Book:8": "rockhounding_chemistry:xml/chembook.xml" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + } + } + } + } + }, + "76:10": { + "questID:3": 76, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Intro to Rockhounding: The Mineral Sizer (2x Ore)", + "desc:8": "Simple ore doubling, as well as the start of 8x ore processing!\n\nAssemble these as shown in the guide book you got in the previous quest, under §6Structures and Machines \u003e Tier 2 Machines \u003e Mineral Sizer.§r\n\nEach Machine you assemble will need a §4Power Station§r, with Fuel and/or RF. Looking at which icons are blue on the top of the power station GUI will tell you which is needed. Fuel can be either §6Lava§r, §7Syngas§r, or any burnable item. §c(This one needs fuel)§r\n\n\nPlace 8 of any type §bCrushing Gears§r in the tanks, then crush your ore at the correct level in the Sizer Controller. You will need to remove the result from the Gangue Collecter before you can start the next batch. \n\nThe §f§eServer§r is optional in any multiblock that includes one, so we can ignore it for now.\n\n\n§cOne thing to note is that some of these machines do not perform well on a server, so it is recomended to use Compact Machines for your processing chain." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 2, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:coal_block", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "77:10": { + "questID:3": 77, + "preRequisites:11": [ + 76 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Making Coal Soup", + "desc:8": "Crush Coal or Charcol blocks in the Crushing Tank at level 2 to get Cracked Coal.\n\nPipe the Cracked Coal and water into the Slurry Pond. Having more then one of these would be a good idea." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "78:10": { + "questID:3": 78, + "preRequisites:11": [ + 77 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Gasification Plant", + "desc:8": "Pipe the Coal Slurry into the Cistern, and fill the top of the Burner with Water.\n\nYou will need a lot of lava to bring the heat up initially.\n\nA Gas Holder can be used in place of the Vessel in any of these multiblocks, and can hold 1,000 times the amount.\n\n§bMaking two extra of these machines might come in handy later." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:coal_block", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "79:10": { + "questID:3": 79, + "preRequisites:11": [ + 78 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Gas Purifier: Syngas!", + "desc:8": "You can use the same tank for input as the output for Raw Syngas. If you choose not to, you will need an additional gas tank.\n\nPipe the Syngas into any Power Station that requires fuel.\n\nActivate the Gas Pump by shift right clicking it with an empty hand.\n\n§bMaking an extra one of these Machines might come in handy." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 15, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "6:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:gasline_pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:gasline_duct", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "80:10": { + "questID:3": 80, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Better Chest Recipe", + "desc:8": "§1test§2test§3test§4test§5test§6test§7test§8test§a§9test§9§atest§btest§ctest§dtest§etest§ftest§ktest§l§8§l§rtest§a§ktest" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:coin", + "Count:3": 1, + "Damage:2": 66, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "allowSmelt:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "allowCraft:1": 1, + "allowAnvil:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:chest", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "chestWood" + } + }, + "taskID:8": "bq_standard:crafting" + } + }, + "rewards:9": { + "0:10": { + "recipes:8": "artisanworktables:worktable:2\nminecraft:brick_block", + "rewardID:8": "bq_standard:recipe", + "index:3": 0 + } + } + }, + "81:10": { + "questID:3": 81, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 1, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "HIDDEN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:obsidian", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Obsidian", + "desc:8": "Your first Obsidian." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:obsidian", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "82:10": { + "questID:3": 82, + "preRequisites:11": [ + 81 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:platepress", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Small Plate Presser", + "desc:8": "Place this one block above the Obsidian, place the block of choice between the two, then supply with redstone.\n\nThis is mostly used for crushing stone smaller and smaller." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:platepress", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "randomthings:advanceditemcollector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "randomthings:itemfilter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "83:10": { + "questID:3": 83, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:inert_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Inert", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:inert_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:inert_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "84:10": { + "questID:3": 84, + "preRequisites:11": [ + 76 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Acquire Salt", + "desc:8": "Place the pump over a water source block and supply redstone to the back. It has a chance to consume the source block over time.\n\nPipe water into the Evaporation Tank, wait, then pipe raw salt to the seasoning rack.\n\nThis is a slow process, and weather and biome will have an effect on how long it takes. It is advised to have multiple tanks evaporating at once." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 13, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:mod_wrench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "85:10": { + "questID:3": 85, + "preRequisites:11": [ + 214, + 107 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Petal Apothecary", + "desc:8": "Drop petals in here, along with some seeds, to craft your first magical flower, the Pure Daisy." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:everfull_urn", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "86:10": { + "questID:3": 86, + "preRequisites:11": [ + 85 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:doubleflower1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Farming Petals", + "desc:8": "Right click with a petal on the grass, use regular bonemeal on it, then shear it down." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:dye", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:shears", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:fertilizer", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "87:10": { + "questID:3": 87, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:livingrock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 3-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:livingrock", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:livingrock", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "88:10": { + "questID:3": 88, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 3-", + "desc:8": "Aim your Mana Spreader at the pool and watch it fill up! Very slowly." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:distributor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "89:10": { + "questID:3": 89, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:livingwood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 3-", + "desc:8": "Place Greatwood around the Pure Daisy, and watch the sparkles.\n\nPlace Mossy Cobble around the Pure Daisy, and watch the sparkles.\n\n§bDrop Grass and Cobble in water for Mossy." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:livingwood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:livingwood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "90:10": { + "questID:3": 90, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:spreader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 3-", + "desc:8": "Mana Spreaders are mainly used to transport the mana from collecting fVis/Fluxlowers to the Mana Pool." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:spreader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:lens", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "91:10": { + "questID:3": 91, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "hydroangeas" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Place diagonally to a 3x3 pool of water for best effect.\n\nNo need to automate, very low mana generation.\n\n§cWill decay over one Hour!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "hydroangeas" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 3, + "tag:10": { + "type:8": "hydroangeas" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "92:10": { + "questID:3": 92, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "endoflame" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Feed this one any fuel source.\n\n§bHint: Look into an auto dropper above a pressure plate for automating.\n\n§cWill decay over one Hour!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "endoflame" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "endoflame" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "93:10": { + "questID:3": 93, + "preRequisites:11": [ + 94 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "thermalily" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Eating Lava", + "desc:8": "Place lava diagonally to this flower, but dont let it touch!\n\nTricky to automate, high mana generation. Requires a cool down after consuming a lava source, during which any lava consumed will not produce mana." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "thermalily" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "thermalily" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "94:10": { + "questID:3": 94, + "preRequisites:11": [ + 143, + 72 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:twigwand", + "Count:3": 1, + "tag:10": { + "color1:3": 0, + "color2:3": 0, + "boundTileZ:3": 0, + "boundTileX:3": 0, + "boundTileY:3": -1 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mana and You", + "desc:8": "Shift-right click with the §2Wand of the Forest§r between generating flowers and the Mana Spreader, and the Mana Spreader and the Mana Pool.\nIf you place the Mana Spreader first, the flowers will be linked already.\n\nShift-right click air to change modes." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "botania:twigwand", + "Count:3": 1, + "tag:10": { + "color1:3": 0, + "color2:3": 0, + "boundTileZ:3": 0, + "boundTileX:3": 0, + "boundTileY:3": -1, + "bindMode:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:spreader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "botania:distributor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:lens", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:obediencestick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "95:10": { + "questID:3": 95, + "preRequisites:11": [ + 48 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:magic_wand", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Your First Wand", + "desc:8": "Place your Wand in the Arcane Workbench to add spells and recharge with Magic Crystals.\n\nExplore dungeons and talk to Wizards to get better gear.\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:magic_wand", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "ebwizardry:identification_scroll", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "96:10": { + "questID:3": 96, + "preRequisites:11": [ + 48 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ebwizardry:arcane_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Arcane Workbench", + "desc:8": "This is where you modify your Wands and add spells." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ebwizardry:arcane_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "ebwizardry:magic_crystal", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "97:10": { + "questID:3": 97, + "preRequisites:11": [ + 99 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Magic Salt", + "desc:8": "Throw this on various things to activate their true magical potential!\n\n§U§cYou will need to use the Thaumonomicon to guide your way through this mod! §f\n\nUse the quest chapter to get familiar with some of the concepts." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:bookshelf", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "98:10": { + "questID:3": 98, + "preRequisites:11": [ + 100 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumometer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Thaumometer", + "desc:8": "Use this on everything you can to learn more about the magical world around you.\n\nIt also comes with a handy Vis/Flux meter on the top left.\n\n§bShift right clicking on chests might be a good way to rack up some knowledge.\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumometer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 16, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "praecantatio" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "99:10": { + "questID:3": 99, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aer" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Vis Crystals", + "desc:8": "Collect a bunch of those glowing crystals you\u0027ve found growing around underground! \n\nThey will spread over time if you aren\u0027t crafting too many arcane things in the area." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aer" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "terra" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "ignis" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "3:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 3, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aqua" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "4:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 4, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "ordo" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "5:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 5, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 1, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "perditio" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:crystal_aer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "100:10": { + "questID:3": 100, + "preRequisites:11": [ + 492, + 493 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:arcane_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Arcane Workbench", + "desc:8": "Your first arcane crafts will be here.\n\nAfter learning how to make an Arcane Workbench in your Thaumonomicon, simply throw some more §dSalis Mundus§r on a plain old crafting table." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:arcane_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 8, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "ordo" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 8, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "perditio" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 8, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aer" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 8, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aqua" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 8, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "terra" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 8, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "ignis" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "101:10": { + "questID:3": 101, + "preRequisites:11": [ + 48 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ebwizardry:spell_book", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Your First Spell", + "desc:8": "Place your wand in the center of the table, then place a spell in one of the five slots around it. Press the check mark to save your changes." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ebwizardry:spell_book", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "ebwizardry:identification_scroll", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "102:10": { + "questID:3": 102, + "preRequisites:11": [ + 62 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:octine_ore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Hot Ore", + "desc:8": "Octine Ore is one of the base crafting materials for many items in the Betweenlands, its also hot enough to craft the High Oven with." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:octine_ore", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:octine_ore", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "103:10": { + "questID:3": 103, + "preRequisites:11": [ + 62 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Collecting Sulfur", + "desc:8": "Sulfur is the main fuel source in the Betweenlands, and if you crush it up, it is one of the main components in making your first steel." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 4, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 8, + "Damage:2": 18, + "OreDict:8": "" + } + } + } + } + }, + "104:10": { + "questID:3": 104, + "preRequisites:11": [ + 105 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:life_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Life Crystal!", + "desc:8": "Life Crystals are primarily used to power the Animator, but can also be used to automate the Mortar and Infuser.\n\nThey can be recharged with Wight\u0027s Hearts. " + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:life_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:wight_heart", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "105:10": { + "questID:3": 105, + "preRequisites:11": [ + 62 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:gem_singer", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Gem Singer", + "desc:8": "Use this deep underground, and follow the sound to find an underwater Life Crystal Stalactite or muddy Middle Gem." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:gem_singer", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + } + } + } + }, + "106:10": { + "questID:3": 106, + "preRequisites:11": [ + 104 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:animator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Mainly used to repair tools.\nCheck JEI for what you can craft with this." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:animator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 16, + "Damage:2": 18, + "OreDict:8": "" + } + } + } + } + }, + "107:10": { + "questID:3": 107, + "preRequisites:11": [ + 442, + 100 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:stone_arcane", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Arcane Stone", + "desc:8": "A basic magic building block." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:stone_arcane", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 16, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "auram" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "108:10": { + "questID:3": 108, + "preRequisites:11": [ + 103 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:mortar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mortar and Pestle", + "desc:8": "Place the Pestle in the Mortar, then some sulfur. Left click to crush it down into High Oven usable sulfur." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:mortar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:pestle", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 771, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:sulfur_furnace_dual", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thebetweenlands:limestone", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "109:10": { + "questID:3": 109, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "EntityTag:10": { + "id:8": "thebetweenlands:dark_druid" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Find a Swamp and kill some Dark Druids hanging out ominously." + } + }, + "tasks:9": { + "0:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "110:10": { + "questID:3": 110, + "preRequisites:11": [ + 114 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:sky_compass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Alien Technology", + "desc:8": "Use the Sky Compass to find fallen Meteorites. Hidden deep inside will be a chest, with a press in it.\nYou will need to collect all four." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:sky_compass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:certus_quartz_essence", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "111:10": { + "questID:3": 111, + "preRequisites:11": [ + 116 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Inscriber", + "desc:8": "Place the item shown in JEI inside the Inscriber, along with the approprate press. \n\nInscribers can be run with RF or AE power." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "3:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "4:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "112:10": { + "questID:3": 112, + "preRequisites:11": [ + 111 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Processers", + "desc:8": "These are used in a great many things in this mod." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 23, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 8, + "Damage:2": 22, + "OreDict:8": "" + } + } + } + } + }, + "113:10": { + "questID:3": 113, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "munchdew" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 3-", + "desc:8": "This one will eat leaves to make mana.\n\n§bTry the Forester!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "munchdew" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:sapling", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "114:10": { + "questID:3": 114, + "preRequisites:11": [ + 426 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:charger", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Starting True Digital Storage", + "desc:8": "Welcome to the start of Applied Energistics! You can build a storage system without the Controller and no Interfaces untill you unlock §bPlatinum§r.\n\nPlace some Certus Quartz inside a powered Charger, and wait till it sparkles. Also found rarly underground.\n\nThis can only be powered from the top and bottom, but items can be piped in and out from any side." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:charger", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "115:10": { + "questID:3": 115, + "preRequisites:11": [ + 116 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Doubling Your Quartz, Slowly", + "desc:8": "Crush up some Quartz or Fluix, mix it with sand, then drop in water for about 24 hours." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:crystal_seed", + "Count:3": 1, + "tag:10": { + "progress:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:crystal_seed", + "Count:3": 1, + "tag:10": { + "progress:3": 600 + }, + "Damage:2": 600, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:crystal_seed", + "Count:3": 1, + "tag:10": { + "progress:3": 1200 + }, + "Damage:2": 1200, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 10, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 12, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 11, + "OreDict:8": "" + } + } + } + } + }, + "116:10": { + "questID:3": 116, + "preRequisites:11": [ + 114 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Fluix!", + "desc:8": "Throw the Nether Quartz, Redstone, and Charged Certus Quartz into a pool of water." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:redstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 2, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "117:10": { + "questID:3": 117, + "preRequisites:11": [ + 115 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:quartz_growth_accelerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Slightly Faster Quartz Doubling", + "desc:8": "Place these around a water block, connect them to your network to give them power, then throw your seeds in." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:quartz_growth_accelerator", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "118:10": { + "questID:3": 118, + "preRequisites:11": [ + 117 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ae2stuff:grower", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Actually Fast Growing", + "desc:8": "Place your seeds inside here for the best growing speed. You can also create Fluix with this machine." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ae2stuff:grower", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "119:10": { + "questID:3": 119, + "preRequisites:11": [ + 123 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:storage_cell_1k", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "First Storage Cell", + "desc:8": "Feel free to upgrade to 4k or higher as soon as possible." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 39, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "120:10": { + "questID:3": 120, + "preRequisites:11": [ + 116 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:energy_acceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Powering Your Network", + "desc:8": "AE will only accept its own power, and one way to do that is by converting it through this." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:energy_acceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "121:10": { + "questID:3": 121, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:tinker_tank_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Tinkerer\u0027s Tank", + "desc:8": "Build a hollow cube, at least 3x3x3. The Controller goes bottom center, the middle layer can be glass, and the drain can go anywhere.\n\nPipe or bucket fluids in or out of the drain.\n\nThis is great for storing all your fluids." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:tinker_tank_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:smeltery_io", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tconstruct:seared", + "Count:3": 16, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:seared_glass", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "malisisdoors:big_door_dark_oak_3x3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "122:10": { + "questID:3": 122, + "preRequisites:11": [ + 119 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:drive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Much Better Storage", + "desc:8": "The ME Drive holds 10 Drives." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:drive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:storage_cell_16k", + "Count:3": 5, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "123:10": { + "questID:3": 123, + "preRequisites:11": [ + 112 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "1k Storage Component", + "desc:8": "These can be crafted into storage discs, or used in crafting CPU\u0027s." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + } + } + } + }, + "124:10": { + "questID:3": 124, + "preRequisites:11": [ + 132 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:crafting_storage_1k", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Intro to Autocrafting", + "desc:8": "Place your Crafting Storage connected to your network, then the Molecular Assembler next to a Interface, also connected to your network. \n\nNext place your incoded pattern into the Interface. \n\nIf you go back to your terminial, you should be able to request your item to be crafted." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:crafting_storage_1k", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:molecular_assembler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:crafting_storage_4k", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "125:10": { + "questID:3": 125, + "preRequisites:11": [ + 119 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 380, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Basic Terminal", + "desc:8": "The Basic Terminal is used to access all of your stored items. Hook it up with a cable to your network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 380, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 5, + "Damage:2": 180, + "OreDict:8": "" + } + } + } + } + }, + "126:10": { + "questID:3": 126, + "preRequisites:11": [ + 125 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 360, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Crafting Terminal", + "desc:8": "Craft items from your storage with the built in 3x3 crafting table." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 360, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "127:10": { + "questID:3": 127, + "preRequisites:11": [ + 125 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 520, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fluid Terminal", + "desc:8": "Access your stored fluid from here." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 520, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "128:10": { + "questID:3": 128, + "preRequisites:11": [ + 120 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:vibration_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Coal Power", + "desc:8": "You can also use the Energy Acceptor to make a coal generator instead." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:vibration_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "129:10": { + "questID:3": 129, + "preRequisites:11": [ + 125 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 340, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Autocrafting Terminals", + "desc:8": "The Pattern Terminal is where you create encoded Patterns, and the Interface Terminal allows you to access all of your ME Interfaces at once.\n\nPlace your Blank Pattern inside your Pattern Termnial, then open a recipe in jei. Press the plus icon to copy it to the terminal, then press the arrow to encode the pattern." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 340, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 480, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 52, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 8, + "Damage:2": 52, + "OreDict:8": "" + } + } + } + } + }, + "130:10": { + "questID:3": 130, + "preRequisites:11": [ + 111 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ae2stuff:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Advanced Inscribing", + "desc:8": "A much improved version of the Inscriber." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ae2stuff:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "131:10": { + "questID:3": 131, + "preRequisites:11": [ + 88 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania_tweaks:compressed_tiny_potato_8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Galactic Potato", + "desc:8": "This very happy potato will be more then happy to be your companion!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania_tweaks:compressed_tiny_potato_8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "132:10": { + "questID:3": 132, + "preRequisites:11": [ + 129 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:interface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Network Interface", + "desc:8": "How the Network interacts with other blocks.\n\nThe Interface has countless uses, but it is primarly used in autocrafting." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:interface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 440, + "OreDict:8": "" + } + } + } + } + }, + "133:10": { + "questID:3": 133, + "preRequisites:11": [ + 124, + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "chisel:futura", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The ME Controller", + "desc:8": "Running out of channels yet? \n\nThe ME Controller can handle up to 32 channels per face, as well as function as an Energy Acceptor." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "134:10": { + "questID:3": 134, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 2147483647, + "internalCurrentPower:6": 1600000.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Wireless Terminal!", + "desc:8": "This is one of the biggest quality of life upgrades since the ME Controller!\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:wireless_access_point", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:security_station", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2wtlib:wut", + "Count:3": 1, + "tag:10": { + "StoredTerminals:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wft:wft", + "Count:1": 1, + "Damage:2": 0 + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:1": 1, + "Damage:2": 0 + } + }, + "InfinityEnergy:3": 0, + "SelectedTerminal:3": 0, + "internalCurrentPower:6": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wft:wft", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "ae2wtlib:infinity_booster_card", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "135:10": { + "questID:3": 135, + "preRequisites:11": [ + 116 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "First Cables", + "desc:8": "These are the basic cables that can connect your network.\n\nYou can use Cable Anchors to separate adjacent cables." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 16, + "Damage:2": 120, + "OreDict:8": "" + } + } + } + } + }, + "136:10": { + "questID:3": 136, + "preRequisites:11": [ + 124 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:crafting_accelerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Better Autocrafting", + "desc:8": "Place any combination of either of these blocks, plus at least one Crafting Storage, in a rectangular shape to create a Crafting Processing Unit." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:crafting_accelerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:crafting_monitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "137:10": { + "questID:3": 137, + "preRequisites:11": [ + 135 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 56, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Smart Cables", + "desc:8": "Smart Cables have the same functionality as the fluix ones, but have the added use of displaying the amount of channels, or network blocks, connected to your network.\n\nDense Cables can carry 32 channels, instead of the 8 that the other two types can handle." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 56, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 76, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:wool", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "138:10": { + "questID:3": 138, + "preRequisites:11": [ + 134 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 42, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Range Upgrades", + "desc:8": "Place these inside the wireless access point." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 2, + "Damage:2": 42, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 2, + "Damage:2": 42, + "OreDict:8": "" + } + } + } + } + }, + "139:10": { + "questID:3": 139, + "preRequisites:11": [ + 134 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:biometric_card", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Other Players", + "desc:8": "Place this in the bottom slot of your security terminal, program it for access, then have them shift right click with it to lock it to them. \n\nNext just put it in the storage area of the Security Terminal." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:biometric_card", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "140:10": { + "questID:3": 140, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 460, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "P2P Tunnels", + "desc:8": "These have a bit of a learning curve, but stick with it and your network capacity will explode.\n\nP2P Tunnels come in pairs, normally. The output end will be toward your machines, and the input end is towards your controller. \n\nOnce you place a pair of P2P\u0027s, shift right click with the Memory Card on the input, then right click on your output end to link them.\n\nChannels go in and out the wide ends, and the smaller ends just need to be connected to your network like any other network block.\n\n\n\nShift right click to clear your Memory Card." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 2, + "Damage:2": 460, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:memory_card", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "141:10": { + "questID:3": 141, + "preRequisites:11": [ + 132 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 220, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Digital Access", + "desc:8": "Place the Storage Bus against any storage to have the network recognize it." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 220, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:block_giant_chest_large", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "142:10": { + "questID:3": 142, + "preRequisites:11": [ + 112 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:network_tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Network Information", + "desc:8": "Some useful items to have." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:network_tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2stuff:visualiser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "143:10": { + "questID:3": 143, + "preRequisites:11": [ + 107 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:crucible", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Alchemy!", + "desc:8": "Throw the §dSalis Mundus§r on the Caldron to turn it into a Crucible. Fill with water, then heat.\n\nThis can be a messy process, with wasted Essenta converting into §5Flux§r and polluting the atmosphere. This can cause §5Void Rifts§r, which can destroy blocks if left unattended. Look in the top left corner of the screen while holding the §6Thaumometer§r to check your Vis/Flux levels. The Dark Purple is how much §5Flux§r is in the chunk.\n\nUse §bQuartz Slivers§r to clean up after a craft, but make sure to unlock the research first!\n\nThis will be used to make Brass until you get access to Zinc." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crucible", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "thaumadditions:vis_seeds", + "Count:3": 1, + "tag:10": { + "Aspect:8": "instrumentum" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumadditions:vis_seeds", + "Count:3": 1, + "tag:10": { + "Aspect:8": "praecantatio" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "144:10": { + "questID:3": 144, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:nitor_yellow", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 3-", + "desc:8": "Right click on the top of the Crucible or drop items in.\n\nThis can be used as a light source, or to heat your Crucible.\n\n§cThe Thaumometer can not see what is inside, you need the goggles for that. Don\u0027t drop it in!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:nitor_yellow", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:nugget", + "Count:3": 32, + "Damage:2": 9, + "OreDict:8": "" + } + } + } + } + }, + "145:10": { + "questID:3": 145, + "preRequisites:11": [ + 273 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:alumentum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Magic Coal", + "desc:8": "The sand and coal are all you\u0027ll need to be able to craft this.\n\nAlumentum burns four times longer then regular coal, and can be thrown to cause a small explosion.\n\n§bCan also be used as High Oven and Blast Furnace fuel to great effect." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:sand", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:coal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:alumentum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:alumentum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "146:10": { + "questID:3": 146, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "salt_brine", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Brine", + "desc:8": "A key step in metal processing.\n\nRight click on the tank with the Mod Wrench until it shows purging Brine. Then all you need to do is pipe the Brine into a tank for storage." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "salt_brine", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "147:10": { + "questID:3": 147, + "preRequisites:11": [ + 143 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Alchemical Brass", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "148:10": { + "questID:3": 148, + "preRequisites:11": [ + 343, + 443, + 345, + 460 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:fiery_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Firey Ingots", + "desc:8": "Heating up already hot metal to create an infernally hot ingot." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:fiery_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "149:10": { + "questID:3": 149, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "naturescompass:naturescompass", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Finding Biomes", + "desc:8": "With Nature\u0027s Compass you can choose a biome, and it will point to the closest one." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "naturescompass:naturescompass", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:brewvial", + "Count:3": 1, + "tag:10": { + "brewKey:8": "speed" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "150:10": { + "questID:3": 150, + "preRequisites:11": [ + 67 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Steel Casing", + "desc:8": "Osmium is found in the Beneath" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "151:10": { + "questID:3": 151, + "preRequisites:11": [ + 67 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Blood Magic", + "desc:8": "§d§5Raw Voidstone§r is found in the Beneath.\n\nItems can be piped in and out for basic automation.\n\nRight click anywhere with the §4Inspectoris Scandalum§r to set the Tier, then shift-right click on your altar to show a holographic layout in order to upgrade to that tier.\n\nYou might need a head for the dagger, one option is to place a piece of obsidian along with an ender pearl on a tinkers sword to give it beheading.\n\nUsing the §bSacrificial Dagger§r next to the altar will damage you to fill your altar by a small amount, while hitting mobs next to an altar with the §bDagger of Sacrifice§r will insta-kill them for some blood." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sacrificial_dagger", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "animus:altardiviner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:dagger_of_sacrifice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "152:10": { + "questID:3": 152, + "preRequisites:11": [ + 53 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_giant_chest_medium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Storage Crates", + "desc:8": "Once you have some oil, you can make the Small Storage Crate, or if you have already gotten some void crystals you can create the medium variety." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_giant_chest_medium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_giant_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:item_chest_to_crate_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "153:10": { + "questID:3": 153, + "preRequisites:11": [ + 211, + 206 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Tier 2 Blood Altar / Blank Runes", + "desc:8": "Place §6§r8§r of any type of rune in a ring one level below your blood altar to upgrade it to level 2.\n\nThese are the basic runes, they can be upgraded to modify your Blood Altar in diferent ways.\n\nYou\u0027ll need a lot of §eSlate Dust§r coming up soon, so set up automation for it as soon as you can." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodmagic:slate", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "154:10": { + "questID:3": 154, + "preRequisites:11": [ + 419 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:infusion_matrix", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Runic Matrix", + "desc:8": "Now that you have some blank runes, you can go ahead and craft the Runic Matrix!\n\n§bClaiming this quest will unlock the research for Infusion." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:infusion_matrix", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:pedestal_arcane", + "Count:3": 9, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:stone_arcane", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:caster_basic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:candle_black", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:candle_red", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:skull", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "Unlock Infusion Crafting", + "command:8": "/tc research @s INFUSION" + } + } + }, + "155:10": { + "questID:3": 155, + "preRequisites:11": [ + 146 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Fluid Filtering", + "desc:8": "Inside the Fluidpedia, use the Ampoule on whichever fluid you want to be filtered, then you can use it to set the filters in the next quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:sampling_ampoule", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:sampling_ampoule", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "156:10": { + "questID:3": 156, + "preRequisites:11": [ + 155 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Electrochemical CSTR", + "desc:8": "Assemble this as shown in the guide book, then set the filters in the fluid input as shown in JEI to create Sodium Hydroxide.\n\nPipe the Saturated Brine and Water into the fluid input. Start the process in the Electrochemical CSTR.\n\nIf you\u0027ve done everything correctly, Sodium Hydroxide should start outputting on the bottom.\n\nThe Power Station needs RF and Fuel." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "157:10": { + "questID:3": 157, + "preRequisites:11": [ + 296, + 370, + 339 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 1028, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mana Dust", + "desc:8": "Magical Dust?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 1028, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 1028, + "OreDict:8": "" + } + } + } + } + }, + "158:10": { + "questID:3": 158, + "preRequisites:11": [ + 76 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Lab Blenders", + "desc:8": "Items go in the top, and the controls are on the bottom.\n\nEach of the items will need to be blended for the next step.\n\nThe Power Station needs RF.\n\nRock Crushing machines might be your best bet here." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 3, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 3, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "gemFluorite" + }, + "3:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 771, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "itemSalt" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:sulfur_ore", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "159:10": { + "questID:3": 159, + "preRequisites:11": [ + 158 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Lab Oven", + "desc:8": "Assemble the Lab Oven as shown in the guide book. It is highly recomended to set up a separate Lab Oven to process each of the upcoming products.\n\n\nTo set up automation with a Server, place the Server File in the center slot and scroll to the desired recipe with the arrows. Next chose if you want it repetable or not and how many times it should run. Then place it in the top row and active the server. The Lab Oven will then run the recipes defined by the Server Files in order once you activate it." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "160:10": { + "questID:3": 160, + "preRequisites:11": [ + 159 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sulfuric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Sulfuric Acid", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sulfuric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "161:10": { + "questID:3": 161, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Air Compresser", + "desc:8": "Assemble another Gas Purifier with an Air Compresser pumping air into the input.\n\nYou won\u0027t need the Particulate Collector for purifying air.\n\nThe Power Station and Air Compresser will both need to be powered with Syngas." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 10, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "162:10": { + "questID:3": 162, + "preRequisites:11": [ + 161 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Cooling Air", + "desc:8": "You will need input and output tanks as well.\n\nPower the Station with RF." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 14, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "163:10": { + "questID:3": 163, + "preRequisites:11": [ + 162 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Air Components", + "desc:8": "Use Cryogenic Distilation to seperate air into its various components.\n\nYou will need 2 gas tanks, one for each of the separated gases.\n\nThe Gas Bulb will be your output for rare gases, push the eject icon to allow piping them out.\n\n§I§cIf you are playing on a server, be sure to house this machine inside a compact machine." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 2, + "Damage:2": 7, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 13, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 3, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "6:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 5, + "Damage:2": 5, + "OreDict:8": "" + }, + "7:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 2, + "Damage:2": 6, + "OreDict:8": "" + }, + "8:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 2, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "164:10": { + "questID:3": 164, + "preRequisites:11": [ + 156 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sodium_hydroxide", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Sodium Hydroxide", + "desc:8": "Grab a bucket of Sodium Hydroxide to complete." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sodium_hydroxide", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "165:10": { + "questID:3": 165, + "preRequisites:11": [ + 160 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "hydrochloric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Hydrochloric Acid", + "desc:8": "Requires Sulfuric Acid, Water, and Chloride Bearing Compound." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "hydrochloric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "166:10": { + "questID:3": 166, + "preRequisites:11": [ + 160 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "hydrofluoric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hydrofloric Acid", + "desc:8": "Requires Sulfuric Acid and Fluorite Bearing Compound." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "hydrofluoric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "167:10": { + "questID:3": 167, + "preRequisites:11": [ + 171 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:pt_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nitric Acid Production Upgrade", + "desc:8": "Swapping your Gold Cataylsts out with Platinum ones will double your output of Nitric Acid." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:pt_catalyst", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 2, + "Damage:2": 134, + "OreDict:8": "" + } + } + } + } + }, + "168:10": { + "questID:3": 168, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ammonium Chloride", + "desc:8": "Pipe Fly Ash into your Precipitation Chamber, along with Hydrochloric Acid. Then pipe the result along with water into a Lab Oven." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 21, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "169:10": { + "questID:3": 169, + "preRequisites:11": [ + 163 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Reforming Reactor", + "desc:8": "Highly recomended to set up the Catalyst Regenerator under this machine.\n\nAlso requires 4 gas tanks.\n\nUse this to create Ammonia, then assemble a second one to process some of that into Nitric Acid.\n\nPower with RF." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 13, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 2, + "Damage:2": 8, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 14, + "OreDict:8": "" + }, + "6:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "7:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:au_catalyst", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:gr_catalyst", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "170:10": { + "questID:3": 170, + "preRequisites:11": [ + 172 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "liquid_ammonia", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Liquid Ammonia", + "desc:8": "You will need a LOT of Liquid Ammonia, so the next few quests will give you a few more options on how to get more." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "liquid_ammonia", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "autoConsume:1": 0, + "groupDetect:1": 0, + "requiredFluids:9": { + "0:10": { + "FluidName:8": "liquid_ammonia", + "Amount:3": 1 + } + }, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "taskID:8": "bq_standard:fluid" + } + }, + "rewards:9": {} + }, + "171:10": { + "questID:3": 171, + "preRequisites:11": [ + 169 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "nitric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Nitric Acid", + "desc:8": "It\u0027s recomended here to assemble another Reforming Reactor to process Nitric Acid.\n\nRequires Ammonia and Oxygen." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "nitric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "autoConsume:1": 0, + "groupDetect:1": 0, + "requiredFluids:9": { + "0:10": { + "FluidName:8": "nitric_acid", + "Amount:3": 1 + } + }, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "taskID:8": "bq_standard:fluid" + } + }, + "rewards:9": {} + }, + "172:10": { + "questID:3": 172, + "preRequisites:11": [ + 169 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Gas Condenser", + "desc:8": "Use this to convert Ammonia Gas to its liquid form.\n\nAlso requires a Vessel/Holder, and a fuel supplied Power Station." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "173:10": { + "questID:3": 173, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "toxic_waste", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED rockhounding-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "toxic_waste", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "174:10": { + "questID:3": 174, + "preRequisites:11": [ + 175 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Repairing Catalysts", + "desc:8": "Place this under any machine that works with catalysts, pipe Flue Gas into the tank and supply with water. \n\nOnce you turn it on it will pull catalysts out for repair and put them back." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + } + } + } + }, + "175:10": { + "questID:3": 175, + "preRequisites:11": [ + 159 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "flue_gas", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Flue Gas", + "desc:8": "This quest tangent will show you how to recycle Toxic Waste into Flue Gas, which will allow you to save on §6rare §rmaterials by repairing Catalysts.\n\nBurn and Purify toxic waste using the same method as Syngas.\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "176:10": { + "questID:3": 176, + "preRequisites:11": [ + 170 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sodium_cyanide", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Sodium Cyanide", + "desc:8": "The last liquid material needed for the processing Uninspected Minerals!\n\nYou could set up another Lab Oven, or add Sodium Cyanide to the server of one of your other Lab Ovens. It will take some tinkering to get everything just right.\n\nHighly recomended to use the recipe for Sodium Cyanide Plus, as it gives twice as much for the same amount of Liquid Ammonia." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:gr_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sodium_cyanide", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "177:10": { + "questID:3": 177, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:cosmetic", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Update Questbook", + "desc:8": "Use this after every update to insure you have the latest version of the Questbook.\n\n§l§lThis seems to cause a crash when used on a server, use the command §c§l/bq_admin default load §r§linstead!" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "hideBlockIcon:1": 0, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Update the Questbook", + "viaPlayer:1": 0, + "index:3": 0, + "title:8": "bq_standard.reward.command", + "command:8": "/bq_admin default load" + } + } + }, + "178:10": { + "questID:3": 178, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "water_vapour", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Water Vapor", + "desc:8": "Use a Gas Burner to create Water Vapor." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "179:10": { + "questID:3": 179, + "preRequisites:11": [ + 164, + 178, + 165, + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Leaching Vat (4x Ore)", + "desc:8": "4x ore processing, as well as a main component in the processing of Uninspected Minerals.\n\nThe Leaching Vat will also need two gas tanks supplied with Water Vapor, a Power Station supplied with Fuel, and a Server.\n\nEach process will consume 160mb of Hydrocloric Acid, and 240mb of Sodium Hydroxide." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 3, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:slurry_agitator", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "180:10": { + "questID:3": 180, + "preRequisites:11": [ + 166 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Retention Vat", + "desc:8": "The Retention Vat operates much the same as the Leaching Vat, with the main difference being you aren\u0027t able to chose the §a§eCatagory§f of shard.\n\nThis will be your main source of Rare Earth minerals.\n\nSupply with the Leachate byproduct from the Leaching Vat, or you can melt Gangues down in a Slurry Pond.\n\nAlso will need a Power Station with fuel and Server." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 2, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 14, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:slurry_agitator", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "181:10": { + "questID:3": 181, + "preRequisites:11": [ + 171, + 176 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Chemical Extractor (8x Ore)", + "desc:8": "Place the Test Tube and a Graduated Cylinder in the Glassware Holder, then the last two Cylinders in the Cabinets.\nKeep the Reaction Stabilizer supplied with Ferrous Catalysts, so your shards don\u0027t desolve.\n\nWhen Extracting dusts from a shard, you will always recover §a§220%§r of the available minerals, plus a precentage of the remaining, equal to the §2§r§aRecovery Efficiency %§r.§r This amount can be raised by increasing the Reaction Intensity, which will also increase the amount of acid required per operation.\n\n§6Dissolution Chance§r and §eStabilization§r determine the chance the shard will be lost, if you don\u0027t have Ferrous Catalyst\u0027s installed. Its recommended to attach a Catalyst Regenerator to the Reaction Stabilizer so you dont have to worry about that.\n\n§rExtracted dusts will need to be piped out of the Lab Balance to be usable.\n\nYou will also need a Power Station with RF and Fuel, and a Server." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 15, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 12, + "OreDict:8": "" + }, + "6:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "7:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "8:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "9:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:fe_catalyst", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + }, + "10:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:test_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "11:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:graduated_cylinder", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "12:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "thermalexpansion:tank", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Creative:1": 0, + "Fluid:10": { + "FluidName:8": "liquid_ammonia", + "Amount:3": 32000 + }, + "Level:1": 0, + "Lock:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "182:10": { + "questID:3": 182, + "preRequisites:11": [ + 231, + 800 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Metal Alloyer", + "desc:8": "Pipe metal dust into the top of the Element Cabinet, making sure it has a Graduated Cylinder.\n\nYour Power Station will need to be supplied with Fuel. \n\n§6Check the Mineral Sizer quest for an overview on how Rockhounding machines work.§e\n§r\n\n§eVanadium§r is used for §eVanasteel§r. (2x Mekanisim frames)\n\n\n§e§7Scandium§r is used for §e§7ScAl§r. (2x Thermal frames and Applied Energistics)\n\n\n§e§7§8Molybdenum§r is used for §e§7§8Nemonic§r. (2x Advanced Rocketry frames)\n\n\n§c§d§cChrome§r is much more common --the first three are only attainable through the entire RH chain-- but much more widely used." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_c", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:graduated_cylinder", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:ingot_pattern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 52, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + }, + "3:10": { + "id:8": "techreborn:dust", + "Count:3": 8, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "183:10": { + "questID:3": 183, + "preRequisites:11": [ + 78 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Heating Upgrade", + "desc:8": "Makes it heat 3x as fast, but will need to be replaced over time." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "184:10": { + "questID:3": 184, + "preRequisites:11": [ + 19, + 163 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Deposition Chamber", + "desc:8": "You will also need a Power Station supplied with RF, a server, and three gas tanks.\n\nUsed for the top tier speed upgrades." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 2, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 2, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "185:10": { + "questID:3": 185, + "preRequisites:11": [ + 163, + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Crystal Pulling Crucible", + "desc:8": "Also need a Power Station with RF, and a gas tank filled with Argon." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:misc_blocks_a", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_b", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "186:10": { + "questID:3": 186, + "preRequisites:11": [ + 184 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Upgrades", + "desc:8": "The Casing Upgrade makes heating and compressing go 10x faster, and the Insulation Upgrade makes less heat and pressure escape with each craft." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "187:10": { + "questID:3": 187, + "preRequisites:11": [ + 169 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:os_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ammonia Production Upgrade", + "desc:8": "Swapping your Gold Cataylsts out with Osmium ones will double your output of Ammonia." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:os_catalyst", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "188:10": { + "questID:3": 188, + "preRequisites:11": [ + 169 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:wg_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Efficiency Upgrade", + "desc:8": "Swapping your Graphite Cataylsts out with these will halve your needed input for any recipe." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:wg_catalyst", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 3, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "189:10": { + "questID:3": 189, + "preRequisites:11": [ + 170 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Precipitation Chamber", + "desc:8": "Needs Fuel and RF. Used as the second to last step for making YAG gems." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 2, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 12, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 14, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "190:10": { + "questID:3": 190, + "preRequisites:11": [ + 160 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:va_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Production Upgrade", + "desc:8": "Use this along with the Sulfur Plus recipe to double your output." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:va_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:metal_items", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "191:10": { + "questID:3": 191, + "preRequisites:11": [ + 182 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:heat_inductor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Power Station Upgrades", + "desc:8": "Placing this inside any Power Station that requires fuel (Syngas/Lava) will convert RF into fuel, allowing you to eventually run your entire chemical plant off of RF." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:heat_inductor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:heat_inductor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "192:10": { + "questID:3": 192, + "preRequisites:11": [ + 181 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:mineral_ores", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Finding The Right Gangue For You!", + "desc:8": "To effectively produce the materials you want, you will need to search for what it is in JEI.\n\nIn this case we are going to be producing Osmium, so go ahead and search for that. Narrow your search by adding \"shard\".\n\nYou should result in a selection of shards that have various §lPercentages §fof metals. Choose one that has what you want. Higher percentages of metals require more Acid to extract.\n\nNext search for the §eCatagory§f of the selected Shard, adding \"gangue\" to your search.\n\nCheck the §aComminution §flevel of the chosen Gangue, then set your Mineral Sizer to that and add Uninspected Minerals." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "193:10": { + "questID:3": 193, + "preRequisites:11": [ + 179, + 180 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:filter_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Leaching Upgrades", + "desc:8": "This and upgraded versions can be used in both machines that use gravity to select shards, and they narrow the range." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:filter_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 3, + "Damage:2": 68, + "OreDict:8": "" + } + } + } + } + }, + "194:10": { + "questID:3": 194, + "preRequisites:11": [ + 192 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:sulfide_shards", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Shards", + "desc:8": "When choosing your Shard, remember there are two types, produced in the Leaching Vat, or the Renention Vat.\n\nOnce you have your Gangue, its time to extract the Shards. In the Leaching Controller, set the §dGravity §fto approximately what it shows for your chosen shard, then add your Gangue. If you have set everything up properly, you should end up with about 4 shards from that §dGravity §frange. \n\nYou can complete this quest with either shard that contains Osmium." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:sulfide_shards", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:native_shards", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "195:10": { + "questID:3": 195, + "preRequisites:11": [ + 333 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 60, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Distilation Tower", + "desc:8": "Pipe Crude Oil inside as the first processing step." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 60, + "Damage:2": 9, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 25, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration1_slab", + "Count:3": 33, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 17, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "fluiddrawers:tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "196:10": { + "questID:3": 196, + "preRequisites:11": [ + 310 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:industrial_blast_furnace", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Blast Furnace", + "desc:8": "Assemble a hollow 3x3x4 (you can click the show hologram button after you place your Blast Furnace to show you how to build it.)\n\nBy filling the center with lava, you can increase the heat to just over 1500, enough for Aluminum!\n\n§bYou can place a Blast Furnace controller on each side of the structure." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:industrial_blast_furnace", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 34, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:lava_bucket", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "197:10": { + "questID:3": 197, + "preRequisites:11": [ + 338 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 34, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Reinforced Machine Casing", + "desc:8": "Replacing the casing with Reinforced will increase heat by 20 each, for a total of 680." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 34, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "198:10": { + "questID:3": 198, + "preRequisites:11": [ + 455 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:part", + "Count:3": 4, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Kanthal Coils", + "desc:8": "Right click the Blast Furnace with 4 Kanthal Coils to increase heat by 500.\n\n§bYou can make carbon plates by using a block of charcoal in a Metal Press." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:part", + "Count:3": 4, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "199:10": { + "questID:3": 199, + "preRequisites:11": [ + 332 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemcelestialcrystal", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 900, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Celestial Crystals", + "desc:8": "Drop Stardust and a Rock Crystal into liquid starlight to grow." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemcelestialcrystal", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 900, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "200:10": { + "questID:3": 200, + "preRequisites:11": [ + 260 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 34, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Advanced Machine Casing (3500 Heat)", + "desc:8": "The final upgrade, Advanced Machine Casings, each count for an additonal 20 heat.\n\nChrome is found by electrolizing Ruby dust." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 34, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "201:10": { + "questID:3": 201, + "preRequisites:11": [ + 459 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:part", + "Count:3": 4, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Nichrome Coils", + "desc:8": "Right clicking the Blast Furnace with 4 Nichrome Coils will increase heat by another 500." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:part", + "Count:3": 4, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "202:10": { + "questID:3": 202, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "steel" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mining Level: Reinforced", + "desc:8": "Cast yourself a Reinforced level Pickaxe head. (Steel, Manasteel, Thaumium)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "steel" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "thaumium" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "manasteel" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:sharpening_kit", + "Count:3": 1, + "tag:10": { + "Material:8": "steel" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "203:10": { + "questID:3": 203, + "preRequisites:11": [ + 513 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "cyclicmagic:glowing_chorus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Temp Flight", + "desc:8": "Each one gives 2 mins of flight." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "cyclicmagic:glowing_chorus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "cyclicmagic:glowing_chorus", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "204:10": { + "questID:3": 204, + "preRequisites:11": [ + 253 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodmagic:bound_sword", + "Count:3": 1, + "tag:10": { + "Unbreakable:1": 1, + "binding:10": { + "name:8": "Filostorm", + "id:10": { + "L:4": -5854321833218265537, + "M:4": -3354768958829737557 + } + }, + "activated:1": 1 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Bound Blade", + "desc:8": "Needed for the tier 4 Altar." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:bound_sword", + "Count:3": 1, + "tag:10": { + "Unbreakable:1": 1, + "activated:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:blood_shard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "205:10": { + "questID:3": 205, + "preRequisites:11": [ + 48 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_hat", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Wizard Robes", + "desc:8": "Collect a set of Wizard Robes.\n\nRecharge with mana in the Arcane Workbench." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_robe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_hat_fire", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_hat_ice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_hat_lightning", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ebwizardry:wizard_hat_earth", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "206:10": { + "questID:3": 206, + "preRequisites:11": [ + 235 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Crusher", + "desc:8": "§l§l§l§rFlip to Heavy Machinery \u003e Crusher in your Engineer\u0027s Manual, then craft it together with the Projector to configure it.§r\n\nMiddle Click with the Projector to rotate, then left click to anchor your hologram, then place the blocks as shown. Shift-right click on a block with the Projector to remove the Hologram if you want to move it.\n\nAfter you finish, right click one of the center fences with the Engineer\u0027s Hammer to complete the machine!\n\nThrow Coke Coal into the top to create some Coke Dust.\n\nThis can also be used to double ore, just feed it through the Crusher and you will get two dusts, along with a chance at a byproduct!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 10, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 10, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:hopper", + "Count:3": 9, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 1, + "tag:10": { + "conveyorType:8": "immersiveengineering:dropper" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 1, + "tag:10": { + "conveyorType:8": "immersiveengineering:extract" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 3, + "tag:10": { + "conveyorType:8": "immersiveengineering:vertical" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "207:10": { + "questID:3": 207, + "preRequisites:11": [ + 402 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:miniature_structure", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Travel to the Twilight Forest!", + "desc:8": "Craft a Sealing Sigil, then throw it into a 2x2 pool of water surrounded by flowers.\n\nYou can find Glowstone and Starmetal hanging on the inside of a Hollow Hill, along with lots of other ores, loot, and monsters.\n\n§bMight be a good idea to bring some Data Models along with you!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemperkseal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "visible:1": 0, + "invert:1": 0, + "range:3": -1, + "index:3": 1, + "structure:8": "", + "hideInfo:1": 1, + "posX:3": 0, + "posY:3": 0, + "posZ:3": 0, + "biome:8": "", + "name:8": "Twilight Forest", + "dimension:3": 7, + "taxiCabDist:1": 0, + "taskID:8": "bq_standard:location" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "twilightforest:magic_map_empty", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "208:10": { + "questID:3": 208, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:trial_keystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Learning Trials", + "desc:8": "Place this in the center of a 15x15 flat area, and insert a Attuned Trail Key." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:trial_keystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:trial_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:trial_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "209:10": { + "questID:3": 209, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:nether_brick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Travel to the Nether", + "desc:8": "Now that you can mine Obsidian, feel free to go to the Nether! \n\nIf you already found your own way there, this quest will complete automatically." + } + }, + "tasks:9": { + "0:10": { + "visible:1": 0, + "invert:1": 0, + "range:3": -1, + "index:3": 1, + "structure:8": "", + "hideInfo:1": 1, + "posX:3": 0, + "posY:3": 0, + "posZ:3": 0, + "biome:8": "", + "name:8": "The Nether", + "dimension:3": -1, + "taxiCabDist:1": 0, + "taskID:8": "bq_standard:location" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:sub_block_holder_0", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "210:10": { + "questID:3": 210, + "preRequisites:11": [ + 143 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Thaumium", + "desc:8": "A heavy arcane infused metal.\n\n§bHint: Greatwood is a good source of Magic Essence." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "211:10": { + "questID:3": 211, + "preRequisites:11": [ + 235, + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Squeezer", + "desc:8": "Reuse the Projector from the last quest.\n\nHammer the center barrel to complete the Industral Squeezer.\n\nYou can also create plant oil here, which is one of the ingreidents for Bio-Desiel." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 2, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:piston", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "212:10": { + "questID:3": 212, + "preRequisites:11": [ + 6 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Metal Press", + "desc:8": "You can use the hammer on the piston to rotate it, then again once it is in the proper position to complete the Metal Press.\n\nUse a Metal Press Mold on the Metal Press, then drop or pipe items on or into the back convayor block.\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 2, + "tag:10": { + "conveyorType:8": "immersiveengineering:conveyor" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:piston", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:mold", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:mold", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:mold", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:mold", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:mold", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "213:10": { + "questID:3": 213, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "bronze" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mining Level: Hardened", + "desc:8": "Cast yourself a Hardened level pickaxe head and go mining!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "bronze" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "invar" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:sharpening_kit", + "Count:3": 1, + "tag:10": { + "Material:8": "bronze" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "214:10": { + "questID:3": 214, + "preRequisites:11": [ + 53, + 233 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_atomic_reconstructor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Atomic Reconstructor", + "desc:8": "Right click with a redstone torch to toggle pulse mode, which will only fire the laser then it gets a redstone signal. \n\nDropping or placing things in the laser will convert them into various things, try it out!\n\n§bFor now you can power it with Embers." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_atomic_reconstructor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:redstone_torch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "215:10": { + "questID:3": 215, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Iron Speed Upgrade", + "desc:8": "Place this in the upgrade slot for 2x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "216:10": { + "questID:3": 216, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:basicdrawers", + "Count:3": 1, + "tag:10": { + "material:8": "oak" + }, + "Damage:2": 0, + "OreDict:8": "drawerBasic" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Drawers", + "desc:8": "These store one type of item, in very high quantitys.\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:basicdrawers", + "Count:3": 1, + "tag:10": { + "material:8": "oak" + }, + "Damage:2": 0, + "OreDict:8": "drawerBasic" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagedrawers:drawer_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "217:10": { + "questID:3": 217, + "preRequisites:11": [ + 216 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Drawer Controller", + "desc:8": "When the Drawer Controller is placed adjacent to any amount of connected drawers within a certain distance, it will serve as the access point for all of them.\n\nSlaves count as Controllers for input and output, but cannot be used on their own." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagedrawers:controllerslave", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "218:10": { + "questID:3": 218, + "preRequisites:11": [ + 216 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:compdrawers", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Compacting Drawers", + "desc:8": "Placing an item with a block and/or nugget form inside of a Compacting Drawer will allow each variety to be accesable." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:compdrawers", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagedrawers:compdrawers", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "219:10": { + "questID:3": 219, + "preRequisites:11": [ + 216 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:framingtable", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Custom Drawers", + "desc:8": "Placing down the Framing Table, then adding the Framed Drawer as well as a block or two, will allow for custom made drawers." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:framingtable", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "storagedrawers:customdrawers", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagedrawers:customdrawers", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "220:10": { + "questID:3": 220, + "preRequisites:11": [ + 216 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Upgrades!", + "desc:8": "Use these on a placed drawer to customize its storage capabilities. Shift-right clicking on a drawer with an empty hand will open its interface, allowing you to remove or modify the upgrades currently in use.\n\nUse the Key on a drawer with an item in it, and it will stay that item even if you have 0 inside. Locking an empty drawer will change it to only accept manual input until used. \n\nCheck out the other keys and upgrades for more useful things." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "storagedrawers:upgrade_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "storagedrawers:drawer_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "221:10": { + "questID:3": 221, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 162, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Invar", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 162, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 162, + "OreDict:8": "" + } + } + } + } + }, + "222:10": { + "questID:3": 222, + "preRequisites:11": [ + 215 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Bronze Speed Upgrade", + "desc:8": "3x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "223:10": { + "questID:3": 223, + "preRequisites:11": [ + 222 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "NiAl Speed Upgrade", + "desc:8": "4x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "224:10": { + "questID:3": 224, + "preRequisites:11": [ + 223 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "BAM Speed Upgrade", + "desc:8": "5x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "225:10": { + "questID:3": 225, + "preRequisites:11": [ + 224 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Vanasteel Speed Upgrade", + "desc:8": "6x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "226:10": { + "questID:3": 226, + "preRequisites:11": [ + 225 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Wilda Speed Upgrade", + "desc:8": "7x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "227:10": { + "questID:3": 227, + "preRequisites:11": [ + 226 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tinite Speed Upgrade", + "desc:8": "8x Speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:speed_items", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "228:10": { + "questID:3": 228, + "preRequisites:11": [ + 372, + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Arc Furnace", + "desc:8": "The left side is where you place your ores to be smelted, or your alloy bases. The right side is where you put your additives. Your Graphite Electrodes are placed in the top.\n\nSlag can be piped out the back, and your final product out the front." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 27, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:storage_alloy", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "blockSteel" + }, + "2:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 8, + "Damage:2": 8, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:sheetmetal_slab", + "Count:3": 14, + "Damage:2": 8, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 5, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "id:8": "minecraft:cauldron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 10, + "Damage:2": 4, + "OreDict:8": "" + }, + "7:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 5, + "Damage:2": 5, + "OreDict:8": "" + }, + "8:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "9:10": { + "id:8": "immersiveengineering:graphite_electrode", + "Count:3": 3, + "tag:10": { + "Unbreakable:1": 1 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "229:10": { + "questID:3": 229, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:weak" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:weak" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "230:10": { + "questID:3": 230, + "preRequisites:11": [ + 207 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Kill the Naga!", + "desc:8": "Look for the giant hedge maze, and slay the great Naga!" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 200.0, + "Name:8": "generic.maxHealth" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "5:10": { + "Base:6": 0.3, + "Name:8": "generic.movementSpeed" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "8:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "9:10": { + "Base:6": 80.0, + "Name:8": "generic.followRange" + }, + "10:10": { + "Base:6": 5.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 10000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": {}, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:naga", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -5116147082585019963, + "Health:5": 200.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 4.7634406, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 8638280686910721164, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:naga", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:naga_scale", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:speckled_melon", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "231:10": { + "questID:3": 231, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Refined Iron!", + "desc:8": "Craft up a batch of Refined Iron!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/say VAR_NAME has completed Chapter 4!" + } + } + }, + "232:10": { + "questID:3": 232, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Osmium Ingots", + "desc:8": "Now that you have 2500+ heat, you can smelt your Osmium into ingots." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/say VAR_NAME has completed Chapter 5!" + } + } + }, + "233:10": { + "questID:3": 233, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "artisanworktables:worktable", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Simple Plates and Rods", + "desc:8": "Pour some lava into the workbench, then place the correct tool inside." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "artisanworktables:worktable", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:lava_bucket", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "artisanworktables:artisans_hammer_stone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "artisansHammer" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "artisanworktables:toolbox", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "234:10": { + "questID:3": 234, + "preRequisites:11": [ + 159 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Transposer", + "desc:8": "Pipe a Rockhounding gas into this, then activate the proper module. If done correctly, you should see the output and input tanks filling up. Now simply pipe it out as a liquid.\n\nThis can also be done in reverse." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_d", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "235:10": { + "questID:3": 235, + "preRequisites:11": [ + 230, + 151 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Light Engineering Blocks", + "desc:8": "§d§5§fRight click to link the Blood Orb to you. It is used in crafting, and placing it in a filled altar will store LP (Blood) for rituials and the Alchemy Table.\n\nA basic block for building some multiblock machines." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 3, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-fermenter", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-fermenter" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 3, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-squeezer", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-squeezer" + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 5, + "structureName:8": "config/capsule/prefabs/immersiveengineering/ie-crusher", + "display:10": { + "color:3": 3949738 + }, + "label:8": "Ie-crusher" + }, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "236:10": { + "questID:3": 236, + "preRequisites:11": [ + 26, + 300 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:activatedaspectuscopper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Aspectus", + "desc:8": "Place a Ember Shard along with 4 ingots worth of the correct molten metal into the stamp base. Be sure that you have the Shard placed first, otherwise you will end up with 4 plates.\n\nNext place a bucket of Starlight down, and drop the Aspectus\u0027 inside to activate them.\n\n§bHint: By placing a non infused Aspectus inside of a Light Well, you can collect molten metal of that type. This will average to about 6 ingots (at night) worth per Aspectus." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:activatedaspectuscopper", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:activatedaspectussilver", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "astralsorcery.liquidstarlight", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "237:10": { + "questID:3": 237, + "preRequisites:11": [ + 300, + 26 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_liquid_conduit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Basic Fluid Transfer", + "desc:8": "You will need Clear glass to make these, which is just melted sand cast in a basin in the melter.\n\nThis is the first Ender IO Conduit you\u0027ll be using. Right click on the base of a connection, or shift left click with a wrench to edit it. Up to 4 different types of Conduits can be in the same space.\n\nIf you click on the gear icon in the tank\u0027s GUI you can set each side to push or pull fluids without needing a pipe." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_liquid_conduit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:block_tank", + "Count:3": 1, + "tag:10": { + "enderio:data:10": { + "tank:10": { + "Empty:8": "", + "Capacity:3": 16000 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_liquid_conduit", + "Count:3": 16, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_yeta_wrench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "238:10": { + "questID:3": 238, + "preRequisites:11": [ + 236 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:smeltery_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Smeltery! (1x Ore)", + "desc:8": "This will be enough resources to construct a 3x3x1 inside Smeltery. Place 9 blocks in a square for the base, then one row up place the rest on each side so there is a 3x3 area surounded by bricks. \n\nFuel goes in the tank, and ore in the controller. The Drain functions similarly to how the Melter did; simply attach a Faucet to one of the sides and right click or supply with redstone to pour molten metal into a Casting table or Basin.\n\nThe Smeltery can create alloys out of various types of metals, so be careful what you put in!\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:smeltery_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:smeltery_io", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tconstruct:casting", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:seared_tank", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "smelteryHeart" + }, + "4:10": { + "id:8": "tconstruct:faucet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "tconstruct:seared", + "Count:3": 18, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:materials", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "239:10": { + "questID:3": 239, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "conarm:armorforge", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "tconstruct:metal", + "Count:1": 1, + "Damage:2": 3 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Armor Forge", + "desc:8": "With this you can create custom armor.\n\nPurple slime can be found on floating islands, though you will need to be creative with your ascent. (Hint: try building with sand)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "conarm:armorforge", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "tconstruct:metal", + "Count:1": 1, + "Damage:2": 3 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "conarm:book", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "240:10": { + "questID:3": 240, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:toolforge", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "tconstruct:metal", + "Count:1": 1, + "Damage:2": 4 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tool Forge", + "desc:8": "With this you can create much more advanced tools and weapons." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:toolforge", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "tconstruct:metal", + "Count:1": 1, + "Damage:2": 4 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "241:10": { + "questID:3": 241, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:iron_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Optional: Skip Chapter 1", + "desc:8": "Turn in 64 Iron to complete the first chapter.\n\nBecause making a Tinkers tool is not technically required, this quest is to allow you to make it to this point without following the book." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:iron_ingot", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Complete chapter 1", + "viaPlayer:1": 0, + "index:3": 0, + "title:8": "bq_standard.reward.command", + "command:8": "/bq_admin complete 16 @s" + } + } + }, + "242:10": { + "questID:3": 242, + "preRequisites:11": [ + 244 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:activation_crystal", + "Count:3": 1, + "tag:10": { + "binding:10": { + "name:8": "Filostorm", + "id:10": { + "L:4": -5854321833218265537, + "M:4": -3354768958829737557 + } + } + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Farming Will", + "desc:8": "Grinding Will by killing mobs is old school. Cycle through the rituals until you get to the §4Gathering of the Forsaken Souls." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:ritual_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:ritual_stone", + "Count:3": 44, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:activation_crystal", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "243:10": { + "questID:3": 243, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED-", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 32, + "Damage:2": 160, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "244:10": { + "questID:3": 244, + "preRequisites:11": [ + 351, + 11 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:demon_crystallizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Aura Will", + "desc:8": "Quests coming Soon (TM)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:demon_crucible", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:demon_crystallizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:demon_will_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "245:10": { + "questID:3": 245, + "preRequisites:11": [ + 103 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:animator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Animator", + "desc:8": "This can be used to summon a §1§r§b§r§9Spirit§r to make Specter Ingots later." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:animator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thebetweenlands:gem_singer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + } + } + } + } + }, + "246:10": { + "questID:3": 246, + "preRequisites:11": [ + 367, + 485, + 490 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:condenser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mini Blackholes", + "desc:8": "Used to make Singularities and Matter Balls." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:condenser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "247:10": { + "questID:3": 247, + "preRequisites:11": [ + 369 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:shape_card", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Quarry", + "desc:8": "For use in the RF Tools Builder.\n\n§6Requires a Nuclear Reactor to create." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:shape_card", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "248:10": { + "questID:3": 248, + "preRequisites:11": [ + 170 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ammonia from Coal Tar", + "desc:8": "Pipe your Coal Tar byproduct from creating Syngas into a Heavy Drum, then pipe the liquid Coal Tar into a Lab Oven along with Water and Cracked Lime." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_e", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:chemical_items", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + }, + "4:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "249:10": { + "questID:3": 249, + "preRequisites:11": [ + 170 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 833, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ammonia by Tar", + "desc:8": "Assemble a Lab Oven and run the Ammonia by Tar recipe." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 833, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "250:10": { + "questID:3": 250, + "preRequisites:11": [ + 158 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:gas_turbine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gas Turbine", + "desc:8": "Installing a Gas Turbine in any Power Station requiring RF will allow it to use fuel instead." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:gas_turbine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_core:gas_turbine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "251:10": { + "questID:3": 251, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:dense_energy_cell", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dense Cells", + "desc:8": "Once your network gets big enough, you will need some Energy Cells to help it stay online." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:dense_energy_cell", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:energy_cell", + "Count:3": 4, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "252:10": { + "questID:3": 252, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:grindstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dust and Doubling", + "desc:8": "Place the crank on top, and hold right click on it to use." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:grindstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:crank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "xlfoodmod:dough", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "253:10": { + "questID:3": 253, + "preRequisites:11": [ + 327 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:component", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Binding Reagent", + "desc:8": "Used to make Bound Weapons and Blood Iron." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:component", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "254:10": { + "questID:3": 254, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_tank", + "Count:3": 1, + "tag:10": { + "enderio:data:10": { + "tank:10": { + "Empty:8": "", + "Capacity:3": 16000 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED RHT-", + "desc:8": "Fluid storage." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_tank", + "Count:3": 1, + "tag:10": { + "enderio:data:10": { + "tank:10": { + "Empty:8": "", + "Capacity:3": 16000 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:block_tank", + "Count:3": 1, + "tag:10": { + "enderio:data:10": { + "tank:10": { + "Empty:8": "", + "Capacity:3": 32000 + } + } + }, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "255:10": { + "questID:3": 255, + "preRequisites:11": [ + 256 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalexpansion:tank", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Level:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Yet Another Portable Tank", + "desc:8": "Upgrade by using Kits on these." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalexpansion:tank", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Level:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "256:10": { + "questID:3": 256, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 1, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "HIDDEN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:bucket", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Buckets", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:bucket", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "257:10": { + "questID:3": 257, + "preRequisites:11": [ + 431 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Nuclearcraft!", + "desc:8": "Unlocks the Nuclear Engineering Chapter!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "258:10": { + "questID:3": 258, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Pulsating Iron", + "desc:8": "Look up the molten recipes to create." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 18, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "259:10": { + "questID:3": 259, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:end_portal_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Don\u0027t Fall Off!", + "desc:8": "The End. Kinda." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "cyclicmagic:charm_void", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:pumpkin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:end_stone", + "Count:3": 128, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "betterquesting:placeholder", + "Count:3": 1, + "tag:10": { + "orig_meta:3": 0, + "orig_tag:10": { + "id:8": "prefab:item_basic_structure", + "Count:1": 1, + "Damage:2": 0 + }, + "orig_id:8": "prefab:item_basic_structure" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "260:10": { + "questID:3": 260, + "preRequisites:11": [ + 185, + 360, + 157, + 489 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "environmentaltech:litherite_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Litherite", + "desc:8": "Congratulations! You made it this far! I\u0027m super proud of you." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "environmentaltech:litherite_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "environmentaltech:tool_multiblock_assembler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "environmentaltech:litherite_crystal", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "261:10": { + "questID:3": 261, + "preRequisites:11": [ + 107 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:paving_stone_travel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Enhanced Arcane Stone", + "desc:8": "Depending on which Vis Crystals you use, you can give Arcane Stone the ability to block mobs or increase your movement speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:paving_stone_travel", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:paving_stone_barrier", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:stone_arcane", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "262:10": { + "questID:3": 262, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_gems", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Neodyium YAG Gem", + "desc:8": "Used for the Laser Core of the Void Miner.\n\nCan also be melted down into Molten Neodymium Doped YAG, which can be used to make §dNeodymium Doped YAG Rods§f." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_gems", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "263:10": { + "questID:3": 263, + "preRequisites:11": [ + 98 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:scribing_tools", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Researching", + "desc:8": "Place the Paper in your research station, then start your research. Selecting an icon will give some direction for what options show up.\n\nPlacing related blocks around your station might give you more starting options. The bookshelf is the guide for Fundamentals.\n\nRemember, be sure to unlock everything through the Thaumonomicon." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:table_wood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:scribing_tools", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:paper", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:bookshelf", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "264:10": { + "questID:3": 264, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:industrial_grinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Industrial Grinder", + "desc:8": "Can be used to process ore for byproducts." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:industrial_grinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 18, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:water_bucket", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "265:10": { + "questID:3": 265, + "preRequisites:11": [ + 311 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:grinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Grinder", + "desc:8": "Crushes things." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:grinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "266:10": { + "questID:3": 266, + "preRequisites:11": [ + 310 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:industrial_electrolyzer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Industrial Electrolyzer", + "desc:8": "Used in the production of Aluminum, among other things." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:industrial_electrolyzer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "267:10": { + "questID:3": 267, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:implosion_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Implosion Compresser", + "desc:8": "The recipe for Block of Biotite requires you to have at least 2 Transformer upgrades in the Compressor." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:implosion_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 26, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "techreborn:upgrades", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "268:10": { + "questID:3": 268, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:rolling_machine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 5-", + "desc:8": "Craft Heating Coils and easy Sheetmetal with this." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:rolling_machine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "269:10": { + "questID:3": 269, + "preRequisites:11": [ + 311 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:extractor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Extractor", + "desc:8": "Great way to process Rubber." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:extractor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "270:10": { + "questID:3": 270, + "preRequisites:11": [ + 311 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "techreborn:treetap", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rubber", + "desc:8": "Might want to look into starting a Bonsai farm for rubber." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "techreborn:treetap", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:part", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + }, + "2:10": { + "id:8": "techreborn:part", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "3:10": { + "id:8": "techreborn:rubber_sapling", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "techreborn:electrictreetap", + "Count:3": 1, + "tag:10": { + "energy:3": 10000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:ingot", + "Count:3": 4, + "Damage:2": 19, + "OreDict:8": "" + } + } + } + } + }, + "271:10": { + "questID:3": 271, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:assembling_machine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 5-", + "desc:8": "Can make some recipes cheaper.\n\nThis machine is suuuuuuuuuuuuper slow, so here is a few overclockers for now." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:assembling_machine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:upgrades", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "272:10": { + "questID:3": 272, + "preRequisites:11": [ + 143 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:goggles", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Goggles", + "desc:8": "Having these on your head or in a bauble slot will allow you to see aspects inside the Crucible." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:goggles", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumometer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:goggles", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "273:10": { + "questID:3": 273, + "preRequisites:11": [ + 94 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mana Infused Items", + "desc:8": "Dropping things into Mana is a good idea." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 23, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:manaring", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "274:10": { + "questID:3": 274, + "preRequisites:11": [ + 238 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tinker_io:smart_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Smart Tinkers", + "desc:8": "Use this like a Casting Table until you can craft the Basin Upgrade." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tinker_io:smart_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tinker_io:upg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "275:10": { + "questID:3": 275, + "preRequisites:11": [ + 53 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Farming with Agricraft", + "desc:8": "Getting into Agricraft about now eh? By creating a line of double sticks, with a seed planted at one end, will allow you to improve the stats as it spreads." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:seed", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "agricraft:crop_sticks", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "agricraft:seed_analyzer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "agricraft:crop_sticks", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "276:10": { + "questID:3": 276, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:wooden_device1", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Wind Power", + "desc:8": "You can use a tank with oil in place of the bucket for Treated Planks." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_device1", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_decoration", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "277:10": { + "questID:3": 277, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:wooden_device1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Water Power", + "desc:8": "You will need a steel ingot to build this, but it is a faster alternative to the Windmill.\n\nUp to 3 Water Wheels can be attached together on a single Dynamo." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_device1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:water_bucket", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "278:10": { + "questID:3": 278, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "LV Power Transfer and Storage", + "desc:8": "By hammering each side of the Capacitor with the Engineers Hammer, you can switch betwean input and output for that side. \n\nAfter you have placed a Wire Connector on your power input, and another one on the machine you want to be powered, right click both with a Wire.\n\nYou can also connect multiple wires to one Wire Relay." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 8, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_endergy_conduit", + "Count:3": 16, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "279:10": { + "questID:3": 279, + "preRequisites:11": [ + 276 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:material", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Upgrading the Windmill", + "desc:8": "Right click each blade of the Windmill with a Sail to increase the speed.\n\nThese can be crafted one at a time." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "allowSmelt:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "allowCraft:1": 1, + "allowAnvil:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:crafting" + } + }, + "rewards:9": {} + }, + "280:10": { + "questID:3": 280, + "preRequisites:11": [ + 235, + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fermenter", + "desc:8": "Turn fruit or sugarcane into Ethanol." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 2, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 4, + "Damage:2": 9, + "OreDict:8": "" + }, + "5:10": { + "id:8": "minecraft:cauldron", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:melon_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "281:10": { + "questID:3": 281, + "preRequisites:11": [ + 6, + 280, + 211 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Refinery", + "desc:8": "Combine Ethanol and Plant Oil into Biodiesel." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 5, + "Damage:2": 6, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 16, + "Damage:2": 9, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + } + } + } + } + }, + "282:10": { + "questID:3": 282, + "preRequisites:11": [ + 281, + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Diesel Generator", + "desc:8": "Supply with fuel, start with Biodiesel. Outputs 4096 RF a tick." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 13, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 9, + "Damage:2": 7, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 5, + "Damage:2": 6, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "283:10": { + "questID:3": 283, + "preRequisites:11": [ + 333 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Excavator", + "desc:8": "This machine requires over 4k power to run, but will never run out of ores." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 5, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 9, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 3, + "Damage:2": 7, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:storage", + "Count:3": 9, + "Damage:2": 8, + "OreDict:8": "blockSteel" + }, + "5:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 15, + "Damage:2": 8, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 26, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "tag:10": { + "energyStorage:3": 1000000, + "sideConfig_0:3": 0, + "sideConfig_1:3": 1, + "sideConfig_2:3": 2, + "sideConfig_3:3": 2, + "sideConfig_4:3": 2, + "sideConfig_5:3": 2 + }, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "284:10": { + "questID:3": 284, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:alchemy_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Ember Alchemy", + "desc:8": "Place the Beam Cannon facing the Exchange Tablet, with the Pedestals nearby.\n\nThe relevant Aspectus go in the Pedestals, then place the minimum amount of ash in each one.\n\nPower the Beam Cannon with Embers, then supply a redstone signal to fire at the Exchange Table.\n\nThe recipe will fail, and you\u0027ll be left with some waste that will inform you of the exact amount of ash needed to correctly perform the recipe." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:alchemy_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:alchemy_pedestal", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:beam_cannon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "285:10": { + "questID:3": 285, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 133, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nickel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 133, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 133, + "OreDict:8": "" + } + } + } + } + }, + "286:10": { + "questID:3": 286, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ember_pulser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Better Embers Parts", + "desc:8": "The Funnel and Injector act the same as their smaller counterparts.\n\nThe Splitter accepts Embers on the small side, with the big sides actting as Emmiters.\n\n\nPlace a Machanical Core or Machine Accessor underneath the Crystal Cell to allow access. The Accessor wont connect if shift-right clicked onto the bottom.\n\nPiping Ember Crystals in will increase the Ember storage." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_funnel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:ember_pulser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:crystal_cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:beam_splitter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "287:10": { + "questID:3": 287, + "preRequisites:11": [ + 214 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_placer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Utility Blocks", + "desc:8": "Pretty handy for automation." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_placer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "actuallyadditions:block_dropper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "randomthings:itemcollector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:item_misc", + "Count:3": 2, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "288:10": { + "questID:3": 288, + "preRequisites:11": [ + 358 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_alloy_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Alloy Smelter", + "desc:8": "One of the best Alloy Smelters in the game." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_alloy_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "289:10": { + "questID:3": 289, + "preRequisites:11": [ + 214 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_furnace_double", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Powered Furnace", + "desc:8": "Smelt things with RF. What more can you ask for. Wait, two things?!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_furnace_double", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "290:10": { + "questID:3": 290, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "MV Power", + "desc:8": "Power transfer and storage up to 1024 RF/tick." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 2, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 8, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_power_conduit", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "291:10": { + "questID:3": 291, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:stone_torch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Stone Torches", + "desc:8": "Useful for caving." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:stone_torch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:block_tiny_torch", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "292:10": { + "questID:3": 292, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "buildinggadgets:copypastetool", + "Count:3": 1, + "tag:10": { + "mode:8": "Copy", + "Energy:3": 500000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Copy-Paste Gadget", + "desc:8": "Shift-Right click a corner, then right click the opposite corner to copy a structure. \n\nAfter you have it set up how you want, hold G to swap to Paste mode.\n\n\nYou can also place it along with a piece of paper into the Template Manager to save your pattern for later usage." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "buildinggadgets:copypastetool", + "Count:3": 1, + "tag:10": { + "mode:8": "Copy", + "Energy:3": 500000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "buildinggadgets:templatemanager", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:paper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "293:10": { + "questID:3": 293, + "preRequisites:11": [ + 295 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersivetech:metal_multiblock", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Boiler", + "desc:8": "Use Fuel to boil water for your Steam Turbine." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 20, + "Damage:2": 9, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 9, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 10, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "capsule:capsule", + "Count:3": 1, + "tag:10": { + "sourceInventory:10": {}, + "size:3": 5, + "structureName:8": "config/capsule/prefabs/immersivetech/it-boiler", + "display:10": { + "color:3": 3949738 + }, + "label:8": "It-boiler" + }, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "294:10": { + "questID:3": 294, + "preRequisites:11": [ + 293, + 315 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersivetech:metal_multiblock1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Steam Turbine + Alternator", + "desc:8": "This Multiblock will require you to make the Arc Furnace first, for Aluminum and Electrical Steel.\n\nUse these two multiblocks to turn steam into high amounts of energy, up to 4096 RF/tick each connection." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:storage", + "Count:3": 12, + "Damage:2": 8, + "OreDict:8": "blockSteel" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 28, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 8, + "Damage:2": 6, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 5, + "tag:10": { + "sideConfig_0:3": 0, + "sideConfig_1:3": 1, + "sideConfig_2:3": 0, + "sideConfig_3:3": 0, + "sideConfig_4:3": 0, + "sideConfig_5:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 6, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 7, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "7:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 35, + "Damage:2": 8, + "OreDict:8": "" + }, + "8:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 6, + "Damage:2": 6, + "OreDict:8": "" + }, + "9:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 3, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "295:10": { + "questID:3": 295, + "preRequisites:11": [ + 59, + 235 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersivetech:metal_multiblock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Distilled Water", + "desc:8": "§cThis path requires you to get to the Arc Furnace before actually making any power.\n\n§rAn alternate method of generating power through steam. This method is more expensive, but will save you automation." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 7, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 3, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 10, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "296:10": { + "questID:3": 296, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 132, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Aluminum Ingots", + "desc:8": "One of the main metals to create your AE Network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 132, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 132, + "OreDict:8": "" + } + } + } + } + }, + "297:10": { + "questID:3": 297, + "preRequisites:11": [ + 298 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Astral Sorcery", + "desc:8": "To craft anything with this table, you need enough starlight, then to hit the table with the Resonating Wand.\n\n§6Claiming this quest will unlock the required research for crafting!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "Unlock Exploration", + "command:8": "/as research @s BASIC_CRAFT" + } + } + }, + "298:10": { + "questID:3": 298, + "preRequisites:11": [ + 411 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemwand", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Resonating Wand", + "desc:8": "The Resonating Wand is used to start Starlight crafting by using it on the table after the icon of the craft shows up.\n\nThe Morphing Tool is used similar to the Akashic Tome, but it will automagicly switch to the correct tool." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemwand", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "morphtool:tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "299:10": { + "questID:3": 299, + "preRequisites:11": [ + 297 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemrockcrystalsimple", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 400, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Rock Crystals", + "desc:8": "Holding the Resonating Wand at night will highlight nearby underground Rock Crystal Ore.\n\nEach Rock Crystal Ore can drop more then one Rock Crystal, each of which has unique properties. By holding shift when hovering over a crystal, you can see its properties." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemrockcrystalsimple", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 400, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "300:10": { + "questID:3": 300, + "preRequisites:11": [ + 299 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockwell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Lightwell", + "desc:8": "Aquamarine, Rock Crystals, and Celestial Crystals will create liquid starlight over time when placed in the Lightwell, eventually being destroyed.\n\nLightwells only hold 2 buckets at a time, and are only able to pipe fluids out the bottom. They are also about 3 times more effective at night.\n\nUsing an Aspectus will create approximately twice the amount of molten metal required to create them." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockwell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:marble_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "301:10": { + "questID:3": 301, + "preRequisites:11": [ + 297 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockattunementrelay", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Starlight Condensing", + "desc:8": "Assembling one of these structures, as shown in your Astral Tome, by your Altar will increase the amount of avalible Starlight. Not as needed at first, but as you progress there will be some crafts that will require more." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockattunementrelay", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockblackmarble", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "302:10": { + "questID:3": 302, + "preRequisites:11": [ + 297 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:itemusabledust", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Infused Powders", + "desc:8": "Illumanation Powder is used to light up an area, and Nocturnal Powder can summmon aggressive mobs to fight." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemusabledust", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:itemusabledust", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:radiant_dust", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "303:10": { + "questID:3": 303, + "preRequisites:11": [ + 297 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemhandtelescope", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tools of the Trade", + "desc:8": "Using the §bLooking Glass§r during the night will allow you to see Constellations you have discovered. By tracing then as shown by your Constellation Pages, you can memorize them!\n\nThe §6Sextant§r will also show a hologram of the required structure when used on a upgraded Starlight Crafting Table.\n\nHolding the §1§9Fosic Resonator§r at night will show you areas of concentrated Starlight. Placing your Astral crafting station there will increase the total amount of starlight avalible to use." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemhandtelescope", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemsextant", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemskyresonator", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "304:10": { + "questID:3": 304, + "preRequisites:11": [ + 298 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "comforts:hammock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Sleeping The Day Away", + "desc:8": "Place the Rope and Nails 4 blocks apart, then right click them with the Hammock." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "comforts:hammock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "comforts:rope", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:moresmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "305:10": { + "questID:3": 305, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "gourmaryllis" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Food One", + "desc:8": "Dropping a variety of foods will create mana." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "gourmaryllis" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "fossil:quagga_cooked", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "306:10": { + "questID:3": 306, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Thermoelectric Generator", + "desc:8": "Hot on one side, cold on the other." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "moreplates:ardite_gear", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "307:10": { + "questID:3": 307, + "preRequisites:11": [ + 311 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:wire_mill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Wire Mill", + "desc:8": "Only way to make gold wires." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:wire_mill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "308:10": { + "questID:3": 308, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:vacuum_freezer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 6-", + "desc:8": "Freezer goes on top of 3x3 casings." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:vacuum_freezer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 9, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "309:10": { + "questID:3": 309, + "preRequisites:11": [ + 5 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_worm", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Worms", + "desc:8": "Tilling grass has a chance to drop Worms, which can be used to keep a 3x3 area of ground watered and fertilized." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_worm", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:item_rice_seed", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "310:10": { + "questID:3": 310, + "preRequisites:11": [ + 337 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Advanced Machine Frame", + "desc:8": "You can make carbon plates by using a block of charcoal in a Metal Press.\n\n§bCommon loot from Nether Fortresses!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "311:10": { + "questID:3": 311, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Basic Machine Frame", + "desc:8": "This is the core craft for Tech Reborn, so batch crafting these would be in your favor. Also, look into the automated workbench!\n\nUse Transformer upgrades to increase the max power input for machines." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:upgrades", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "312:10": { + "questID:3": 312, + "preRequisites:11": [ + 6 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Automated Workbench", + "desc:8": "Placing a Blueprint inside will allow you to select one of the designs for autocrafting.\n\nHighly recommended to create a few of these to automate circuits." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 5, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 4, + "tag:10": { + "conveyorType:8": "immersiveengineering:conveyor" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:treated_wood_slab", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:blueprint", + "Count:3": 1, + "tag:10": { + "blueprint:8": "components" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "313:10": { + "questID:3": 313, + "preRequisites:11": [ + 53 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Engineer\u0027s Workbench", + "desc:8": "Place a Blueprint in to access unique or cheaper recipes.\n\nAlso used to apply shaders and modify tools and weapons from Immersive Engineering.\n\n§bCraft the Drill together with the filled Jerrycan to fill it. You can refill the can by placing it into your Refinery full of Biodeisel once you get that far." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:blueprint", + "Count:3": 1, + "tag:10": { + "blueprint:8": "components" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": { + "Size:3": 5, + "Items:9": {} + }, + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:drill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "immersiveengineering:drillhead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:jerrycan", + "Count:3": 1, + "tag:10": { + "Fluid:10": { + "FluidName:8": "biodiesel", + "Amount:3": 10000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "314:10": { + "questID:3": 314, + "preRequisites:11": [ + 75, + 214 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagenetwork:master", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Simple Network Controller", + "desc:8": "Starting your storage network! Connect a chest with the §dStorage Link Cable§r or a §bSimple Cable§r to access it through your Storage Request Table." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagenetwork:master", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "storagenetwork:request", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagenetwork:storage_kabel", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "315:10": { + "questID:3": 315, + "preRequisites:11": [ + 295 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersivetech:metal_multiblock", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Solar Steam", + "desc:8": "Use the power of the sun to create steam.\n\nAssemble the Solar Tower as shown, with up to four Solar Reflectors around it." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 14, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 5, + "Damage:2": 5, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 16, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_decoration", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:storage", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "316:10": { + "questID:3": 316, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagenetwork:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Can set an input and output with the Processing Cable, and access all Processing Cables in the Controller.\n\nFor example, if you connect a Cable to a furnace, and set one piece of wood as the input and one piece of Charcoal as the output, you could request Charcoal in your Controller and it would do it for you." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "storagenetwork:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "storagenetwork:process_kabel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "storagenetwork:process_kabel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "317:10": { + "questID:3": 317, + "preRequisites:11": [ + 314 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "storagenetwork:remote", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Wireless Access", + "desc:8": "The first wireless terminal. Check what you can make with this for the next tier remote." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "storagenetwork:remote", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "storagenetwork:remote", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:rabbit_stew", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "318:10": { + "questID:3": 318, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 130, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Silver", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 130, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 130, + "OreDict:8": "" + } + } + } + } + }, + "319:10": { + "questID:3": 319, + "preRequisites:11": [ + 299 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Crystal Refining", + "desc:8": "By placing a Rock Crystal on this and turning it, you will trade some Size for Cutting.\n\nDropping a Rock Crystal into placed Liquid Starlight, it will absorb it over time to increase its Size.\n\nOnce it reaches the max Size, it will split into two, which have the chance to be higher Purity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemrockcrystalsimple", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 400, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "320:10": { + "questID:3": 320, + "preRequisites:11": [ + 124 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "threng:big_assembler", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Multiblock Autocrafting", + "desc:8": "This setup is much more expensive, but will save on channels.\n\nThe multiblock is made by placing Frames on the edges of a 4x4x4 cube, then the Vents on the 6 empty sides, along with the Controller and I/O Port. Fill the inside with the Crafting Coprocessors and Pattern Providers. When finished, right click on the Controller to activate the multiblock.\n\n\nYou can make this as big as you want, with any combination of Coprocessors and Pattern Providers." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "threng:big_assembler", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "threng:big_assembler", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "threng:big_assembler", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "threng:big_assembler", + "Count:3": 22, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "threng:big_assembler", + "Count:3": 4, + "Damage:2": 3, + "OreDict:8": "" + }, + "5:10": { + "id:8": "threng:big_assembler", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 9, + "Damage:2": 52, + "OreDict:8": "" + } + } + } + } + }, + "321:10": { + "questID:3": 321, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:sky_stone_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Inscribers", + "desc:8": "Who\u0027s got time to look all over finding fallen rocks?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "3:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "4:10": { + "id:8": "appliedenergistics2:sky_stone_block", + "Count:3": 128, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 2, + "tag:10": { + "EntityTag:10": { + "id:8": "thaumcraft:cultistportallesser" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "techreborn:rubber_sapling", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "322:10": { + "questID:3": 322, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:ore", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ore Not 2", + "desc:8": "Even more ores!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:ore", + "Count:3": 64, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:ore", + "Count:3": 64, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:redstone", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:dye", + "Count:3": 32, + "Damage:2": 4, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:quartz", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "323:10": { + "questID:3": 323, + "preRequisites:11": [ + 395 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:energy_acceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED-", + "desc:8": "There should be a better way..." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "betterquesting:placeholder", + "Count:3": 3, + "tag:10": { + "orig_meta:3": 0, + "orig_id:8": "contenttweaker:token" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:energy_acceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 360, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 32, + "Damage:2": 56, + "OreDict:8": "" + }, + "3:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 10, + "Damage:2": 36, + "OreDict:8": "" + }, + "4:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 6, + "Damage:2": 220, + "OreDict:8": "" + }, + "5:10": { + "id:8": "appliedenergistics2:drive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "324:10": { + "questID:3": 324, + "preRequisites:11": [ + 334 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemlinkingtool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Linking", + "desc:8": "This is used to transform blocks by linking a Collector Crystal to them. They are found in the large astral temples, and will need a view on the sky to function." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemlinkingtool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumadditions:vis_seeds", + "Count:3": 1, + "tag:10": { + "Aspect:8": "permutatio" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "325:10": { + "questID:3": 325, + "preRequisites:11": [ + 330 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockritualpedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rituals", + "desc:8": "Rock Crystals placed on the pedestal cause various effects depending on the attunment." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockritualpedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 20, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 24, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "326:10": { + "questID:3": 326, + "preRequisites:11": [ + 334 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Telescope", + "desc:8": "Acts similar to the Looking Glass, but can be placed and snaps to the constellations." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "327:10": { + "questID:3": 327, + "preRequisites:11": [ + 357 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:soul_forge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Hellfire Forge", + "desc:8": "Place will into the forge to start a craft." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:soul_forge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "328:10": { + "questID:3": 328, + "preRequisites:11": [ + 402 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcelestialgateway", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gateways", + "desc:8": "Allows travel between any Gateways. You could make a star gate network for every dimension you need to travel to.\n\nName the Gateway in the anvil before placing it to see where you are going." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockcelestialgateway", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockblackmarble", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 20, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:blockcelestialgateway", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockblackmarble", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 20, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "329:10": { + "questID:3": 329, + "preRequisites:11": [ + 401 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:alchemy_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Alchemy Table", + "desc:8": "Place a filled Blood Orb to craft. Some crafts require higher tiers of orbs." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:alchemy_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "330:10": { + "questID:3": 330, + "preRequisites:11": [ + 402 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockattunementaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Choosing your Attunement", + "desc:8": "By holding a Consellation Paper in your off hand you will see where to place the Relays on the field. If the matching Constellation is in the sky, it will light up and you will be able to attune yourself or Rock Crystals by being on top of the Attunement Altar.\n\n§bYou can get to level 100 in this pack, so go crazy!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockattunementaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockblackmarble", + "Count:3": 225, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 80, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + }, + "5:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 12, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:blockattunementrelay", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "331:10": { + "questID:3": 331, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:smelter_thaumium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Essentia Smelting!", + "desc:8": "Place the §eAlembic§r on top with the §6Filling Transfuser§r attached to it, and after placing some jars nearby you\u0027ll start to see Essentia filling them!\n\nThis version is 90% efficient, with the rest turned into §dFlux§r. The waste can be lowered by attaching one or more §9Auxiliary Venting Ports§r to the sides.\n\nAttaching a §9Auxiliary Slurry Pump§r to the side, with another §eAlembic§r on top, will allow it to process Aspects twice as fast." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:smelter_thaumium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:alembic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:essentia_input", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "332:10": { + "questID:3": 332, + "preRequisites:11": [ + 284 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Celestial Altar", + "desc:8": "This advanced crafting altar is used for many things. Check in the Tome or use the Sextant to see how to assemble the structure." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockblackmarble", + "Count:3": 49, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 40, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "6:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/as research @s CONSTELLATION" + } + } + }, + "333:10": { + "questID:3": 333, + "preRequisites:11": [ + 6 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "oil", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Pumpjack / Core Drilling", + "desc:8": "Use the Core Sample Drill in various chunks to find a good location to build your Pumpjack. \n\nAfter placing the drill and supplying power, right click it to start. Right click it again to extract the sample. Use your Engineers Manual to see what each ore vein will give if you build an Excavator on it.\n\nEach chunk has a different type of vein, and you can turn on chunk borders by pressing F9.\n\nShift right click to place the Samples.\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thermalfoundation:storage_alloy", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 4, + "Damage:2": 8, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 11, + "Damage:2": 1, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "7:10": { + "id:8": "immersiveengineering:wooden_decoration", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "334:10": { + "questID:3": 334, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Starlight Crafting Altar", + "desc:8": "Use the Sextant on the altar after upgrading to show a hologram of the required temple." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockblackmarble", + "Count:3": 21, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 24, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 28, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 8, + "Damage:2": 4, + "OreDict:8": "" + }, + "5:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/as research @s ATTUNEMENT" + } + } + }, + "335:10": { + "questID:3": 335, + "preRequisites:11": [ + 153 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:runealtar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Runic Altar", + "desc:8": "Drop items on top, then fill with Mana. Once full, drop a Livingrock and right click with your Wand of the Forest.\n\n§bHint: if you place a spreader next to a filled pool, and point it at the altar, it will start to fill up the altar as soon as it needs mana." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:runealtar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:dye_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "336:10": { + "questID:3": 336, + "preRequisites:11": [ + 260 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:pylon", + "Count:3": 2, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gaia Gaurdian", + "desc:8": "Assemble the arena as shown in the Lexica Botania." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:pylon", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:beacon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "337:10": { + "questID:3": 337, + "preRequisites:11": [ + 231, + 311, + 307 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_empowerer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Empowerer", + "desc:8": "Place the Empowerer, with the Display Stands three blocks away on each side.\n\nEach Display Stand needs power to craft." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_empowerer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "actuallyadditions:block_display_stand", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "338:10": { + "questID:3": 338, + "preRequisites:11": [ + 397, + 398, + 402, + 19, + 253 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:terraplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Terrasteel!", + "desc:8": "Place a Spark over the Plate, and the other over a Mana Pool at least half full. Then drop or right click the correct items on and watch the light show!\n\nMore then one linked Mana Pool will allow you to perform the craft faster." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:terraplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodarsenal:blood_infused_iron_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 4, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "botania:spark", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "339:10": { + "questID:3": 339, + "preRequisites:11": [ + 381 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:pylon", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Elven Portal", + "desc:8": "Place the Pylons over two Mana Pools at least half full each. Use the Lexa Botania to display the hologram to assemble the portal, then right click on the core to activate!\n\nThrow items in to exchange for the Elven equivalant." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:alfheimportal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:pylon", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:livingwood", + "Count:3": 3, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:livingwood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "340:10": { + "questID:3": 340, + "preRequisites:11": [ + 230 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Twilight Lich", + "desc:8": "Accend the Lich\u0027s tower and battle the Lich." + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.800000011920929, + "4:6": 2.5, + "5:6": 0.800000011920929 + }, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 100.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.45000001788139343, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 6.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 5000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:lich", + "ShadowClone:1": 0, + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6733846088013682862, + "Health:5": 100.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "MinionsToSummon:1": 9, + "Rotation:9": { + "0:5": 3.0752842, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -4067275680105610253, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "ShieldStrength:1": 5, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:lich", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:lifedrain_scepter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "341:10": { + "questID:3": 341, + "preRequisites:11": [ + 214, + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_leaf_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Leaf Power", + "desc:8": "An early game power option." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_leaf_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:sapling", + "Count:3": 8, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "342:10": { + "questID:3": 342, + "preRequisites:11": [ + 340 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Minoshroom", + "desc:8": "Explore the deadly Labyrinth in search of the Minoshroom." + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 1.1899999976158142, + "4:6": 2.9000000953674316, + "5:6": 1.1899999976158142 + }, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 120.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.25, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 2.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 6000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 1.1, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:minoshroom", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6264871989554269406, + "Health:5": 120.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 5.495534, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 6439179149136054938, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:minoshroom", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:meef_stroganoff", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "343:10": { + "questID:3": 343, + "preRequisites:11": [ + 342 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hydra", + "desc:8": "Travel to a Fire Swamp and slay the Hydra!" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092896, + "4:6": 1.7999999523162842, + "5:6": 0.30000001192092896 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "9:10": { + "Base:6": 1000.0, + "Name:8": "generic.maxHealth" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "11:10": { + "Base:6": 0.699999988079071, + "Name:8": "generic.movementSpeed" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "13:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "14:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "15:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "PartName:8": "", + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 50000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:hydra_head", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6304193438696984089, + "Health:5": 1000.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 5.981546, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 8517289029988140639, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:hydra_head", + "subtypes:1": 1 + }, + "1:10": { + "ignoreNBT:1": 1, + "index:3": 1, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 15.699999988079071, + "4:6": 12.0, + "5:6": 15.699999988079071 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "9:10": { + "Base:6": 360.0, + "Name:8": "generic.maxHealth" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "11:10": { + "Base:6": 0.28, + "Name:8": "generic.movementSpeed" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "13:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "14:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "15:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "SpawnHeads:1": 1, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 18000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:hydra", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -7565495717362640255, + "Health:5": 360.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 2.2406816, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -8380889646164590486, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "NumHeads:1": 3, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:hydra", + "subtypes:1": 1 + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:fiery_blood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "3:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 3, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "344:10": { + "questID:3": 344, + "preRequisites:11": [ + 340 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Knight Phantom", + "desc:8": "Be sure to bring a trophy!" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 1.199999988079071, + "4:6": 3.0, + "5:6": 1.199999988079071 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "9:10": { + "Base:6": 35.0, + "Name:8": "generic.maxHealth" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "11:10": { + "Base:6": 0.699999988079071, + "Name:8": "generic.movementSpeed" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "13:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "14:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "15:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "generic.attackDamage" + } + }, + "TicksProgress:3": 0, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 1750.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:knight_phantom", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -8671151965389808143, + "Health:5": 35.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 3.6786602, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -7460239577562724666, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0, + "Formation:3": 0, + "MyNumber:3": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:knight_phantom", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "345:10": { + "questID:3": 345, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ur-Ghast", + "desc:8": "Climb the tricky tower and slay all those who oppose you." + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 13.699999988079071, + "4:6": 18.0, + "5:6": 13.699999988079071 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "9:10": { + "Base:6": 250.0, + "Name:8": "generic.maxHealth" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "11:10": { + "Base:6": 0.699999988079071, + "Name:8": "generic.movementSpeed" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "13:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "14:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "15:10": { + "Base:6": 128.0, + "Name:8": "generic.followRange" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 12500.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:ur_ghast", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6519333936993480980, + "Health:5": 250.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "ExplosionPower:3": 1, + "Rotation:9": { + "0:5": 3.7920697, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -4707278087540027425, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "inTantrum:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:ur_ghast", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "346:10": { + "questID:3": 346, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "COMPLETED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:yeti_helmet", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Alpha Yeti", + "desc:8": "Look out for Judy!" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "HasHome:1": 0, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 3.4999999403953552, + "4:6": 5.0, + "5:6": 3.4999999403953552 + }, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 200.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.38, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 40.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 1.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 10000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:yeti_alpha", + "Home:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -7341244758003176890, + "Health:5": 200.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 1.8846172, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -130181286903002883, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:yeti_alpha", + "subtypes:1": 1 + } + }, + "rewards:9": {} + }, + "347:10": { + "questID:3": 347, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "COMPLETED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Snow Queen", + "desc:8": "Otherwise known as the Ice Queen." + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.3999999761581421, + "4:6": 2.200000047683716, + "5:6": 0.3999999761581421 + }, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 200.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.23000000417232513, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 40.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 7.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 10000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:snow_queen", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6626558663899057629, + "Health:5": 200.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 4.537574, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 4041605999375306521, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:snow_queen", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "348:10": { + "questID:3": 348, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "COMPLETED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:giant_pickaxe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Cloud Cottage", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 2.1000000834465027, + "4:6": 7.199999809265137, + "5:6": 2.1000000834465027 + }, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 80.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.23, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 40.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 2.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 4000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.0, + "1:5": 0.0 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:giant_miner", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -8040112062168738160, + "Health:5": 80.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 2.0284746, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.0, + "1:5": 0.0, + "2:5": 0.0, + "3:5": 0.0 + }, + "UUIDMost:4": 7739496214805693237, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:giant_miner", + "subtypes:1": 1 + } + }, + "rewards:9": {} + }, + "349:10": { + "questID:3": 349, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "COMPLETED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:magic_beans", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Cave Troll", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 1.0999999642372131, + "4:6": 2.4000000953674316, + "5:6": 1.0999999642372131 + }, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 30.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.28, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 7.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 1500.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "twilightforest:troll", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -5730709940093104630, + "Health:5": 30.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 2.057766, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -8840320163752948978, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0, + "HasRock:1": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "twilightforest:troll", + "subtypes:1": 1 + } + }, + "rewards:9": {} + }, + "350:10": { + "questID:3": 350, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "COMPLETED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:lamp_of_cinders", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Lamp of Cinders", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:lamp_of_cinders", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "351:10": { + "questID:3": 351, + "preRequisites:11": [ + 599 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Iridesent Altar", + "desc:8": "Place the Relays on the Sooty Marble." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 28, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockattunementrelay", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:angler_meat_cooked", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/as research @s RADIANCE" + } + } + }, + "352:10": { + "questID:3": 352, + "preRequisites:11": [ + 332 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockstarlightinfuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Starlight Infusing", + "desc:8": "You will also need 12 buckets worth of liquid starlight to complete the structure. \n\nThere is a chance for starlight to be consumed when a craft is finished, so keep a close eye on that!\n\n§bRight click with the Resonating Wand to start the craft, or use 2 Automated Users, one to place the item and one to start the craft with the wand." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockstarlightinfuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:lapis_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 40, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 12, + "Damage:2": 6, + "OreDict:8": "" + }, + "5:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "" + }, + "6:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "cyclicmagic:block_user", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "353:10": { + "questID:3": 353, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 5-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "354:10": { + "questID:3": 354, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mekanism", + "desc:8": "Welcome to Mekanism!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:basicblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "mekanism:speedupgrade", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:energyupgrade", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:configurator", + "Count:3": 1, + "tag:10": { + "mekData:10": { + "energyStored:6": 60000.0 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "355:10": { + "questID:3": 355, + "preRequisites:11": [ + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Thermal", + "desc:8": "Welcome to Thermal!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + } + } + } + }, + "356:10": { + "questID:3": 356, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:monster_soul", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Blood Magic and More", + "desc:8": "More means Botania in this case." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": { + "souls:6": 256.0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:slate", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:fertilizer", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:livingrock", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "botania:livingwood", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "357:10": { + "questID:3": 357, + "preRequisites:11": [ + 231, + 148 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sentient_sword", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 3, + "id:2": 21 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Sentient Sword", + "desc:8": "§9§bNether Brick blocks are a good source of Nether essence.\n\n§rKilling mobs using the Sentient Sword will cause them to drop Demon Will, which then increases its damage while in your inventory" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sentient_sword", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 3, + "id:2": 21 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "358:10": { + "questID:3": 358, + "preRequisites:11": [ + 369 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Ender IO", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 53, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "359:10": { + "questID:3": 359, + "preRequisites:11": [ + 154 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "thaumcraft:baubles", + "Count:3": 1, + "tag:10": { + "TC.RUNIC:1": 10 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Runic Shielding +10", + "desc:8": "§bCrafted with +1 Amber and 1 Salis Mundus per level in the Infusion Matrix, along with Vitreus, Praemunio, and Potentia essence.\n\nYikes, thats a lot of essence." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "thaumcraft:baubles", + "Count:3": 1, + "tag:10": { + "TC.RUNIC:1": 10 + }, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "360:10": { + "questID:3": 360, + "preRequisites:11": [ + 363, + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Empowered Emeradic", + "desc:8": "Any Empowered item can be done in block form. Either item will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "361:10": { + "questID:3": 361, + "preRequisites:11": [ + 487, + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:blacklotus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Blacker Lotus", + "desc:8": "Drop into a mana pool, requires some mana to be in it already." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:blacklotus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "362:10": { + "questID:3": 362, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "tconstruct:slimesling", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Traveling in Style", + "desc:8": "This combination will make you the talk of the town!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "tconstruct:slimesling", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "Eww" + }, + "1:10": { + "id:8": "openblocks:hang_glider", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 1, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tconstruct:slime_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:leather", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "363:10": { + "questID:3": 363, + "preRequisites:11": [ + 486 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:fertilizer", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Phyto-Gro", + "desc:8": "The highest tier." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:fertilizer", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 8, + "Damage:2": 865, + "OreDict:8": "" + } + } + } + } + }, + "364:10": { + "questID:3": 364, + "preRequisites:11": [ + 246, + 506 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:glowplasticblock", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Plastic", + "desc:8": "Use up some of that HDPE!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:glowplasticblock", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "365:10": { + "questID:3": 365, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "randomthings:ingredient", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Specter Ingot", + "desc:8": "Kill a Specter with something that deals magic damage, such as a Wizardry or Thaumcraft spell." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "randomthings:ingredient", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "randomthings:ingredient", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "366:10": { + "questID:3": 366, + "preRequisites:11": [ + 338, + 199 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:master_infusion_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Master Infusion Crystal", + "desc:8": "Unlimited uses!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:master_infusion_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:tier5_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "367:10": { + "questID:3": 367, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Induction Smelter", + "desc:8": "An advanced alloy smelter, can also be used to process ores" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "368:10": { + "questID:3": 368, + "preRequisites:11": [ + 459 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Osmium Alloying", + "desc:8": "Used for making Refined alloys." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "369:10": { + "questID:3": 369, + "preRequisites:11": [ + 201 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "3000 Heat - Tungsten and Titanium", + "desc:8": "Important metals." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "370:10": { + "questID:3": 370, + "preRequisites:11": [ + 288 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 136, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Mana Infused Metal", + "desc:8": "Crafted in a normal crarfting table." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 136, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "371:10": { + "questID:3": 371, + "preRequisites:11": [ + 266 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:smalldust", + "Count:3": 2, + "Damage:2": 54, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Titanium", + "desc:8": "Processing Bauxite is one of the main ways to get Titanium. Can\u0027t quite smelt it yet though." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:dust", + "Count:3": 12, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "techreborn:smalldust", + "Count:3": 2, + "Damage:2": 54, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "372:10": { + "questID:3": 372, + "preRequisites:11": [ + 329, + 154 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "chisel:energizedvoidstone", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Tier 3 Blood Altar", + "desc:8": "Configure your Blood Magic book to show you the tier three layout, then place the §620 runes §rand Voidstone as shown. The Pillars can be made of any material." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "chisel:energizedvoidstone", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:slate", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "373:10": { + "questID:3": 373, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:travelbelt", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Belt of Going Fast", + "desc:8": "Wear this along with some portable mana for speed and auto step." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "botania:travelbelt", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "374:10": { + "questID:3": 374, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemconstellationpaper", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Exploration is a Chore", + "desc:8": "These make it slightly less urgent to explore." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "thermalexpansion:reservoir", + "Count:3": 1, + "tag:10": { + "Mode:3": 0, + "Fluid:10": { + "FluidName:8": "lava", + "Amount:3": 10000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemconstellationpaper", + "Count:3": 4, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 16, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aer" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 16, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "ignis" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thaumcraft:crystal_essence", + "Count:3": 16, + "tag:10": { + "Aspects:9": { + "0:10": { + "amount:3": 1, + "key:8": "aqua" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "375:10": { + "questID:3": 375, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:wood_iron_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Iron Chest", + "desc:8": "Right click on a normal chest to upgrade." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:wood_iron_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:wood_iron_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "morefurnaces:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "376:10": { + "questID:3": 376, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Bronze", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + } + } + } + } + }, + "377:10": { + "questID:3": 377, + "preRequisites:11": [ + 375 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:iron_gold_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gold Chest", + "desc:8": "Even bigger then an Iron Chest!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:iron_gold_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:iron_gold_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "morefurnaces:upgrade", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "378:10": { + "questID:3": 378, + "preRequisites:11": [ + 377 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:gold_diamond_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Diamond Chest", + "desc:8": "Tons of space, great for connecting to a storage network!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:gold_diamond_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ironchest:gold_diamond_chest_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "morefurnaces:upgrade", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "379:10": { + "questID:3": 379, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 161, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Electrum", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 161, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 161, + "OreDict:8": "" + } + } + } + } + }, + "380:10": { + "questID:3": 380, + "preRequisites:11": [ + 204 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:slate", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Tier 4 Blood Altar", + "desc:8": "Using the same method as before, upgrade your Altar to tier 4.\n\nThis will allow you to start creating the more powerful rituals." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 28, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:decorative_brick", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "bloodmagic:slate", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "381:10": { + "questID:3": 381, + "preRequisites:11": [ + 351 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:slate", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Tier 5 Blood Altar", + "desc:8": "Same as before, but takes §e52§e Runes§r of any type" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:beacon", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:slate", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "382:10": { + "questID:3": 382, + "preRequisites:11": [ + 579 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:decorative_brick", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tier 6 Blood Altar", + "desc:8": "Needs 76 Runes as well." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:decorative_brick", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "383:10": { + "questID:3": 383, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:dust", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Osmium Dust", + "desc:8": "Rare elements are within your grasp!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:dust", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "dustOsmium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "384:10": { + "questID:3": 384, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:fiery_blood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hydras are Scary!", + "desc:8": "No need to go hunting giant beasties!\n\n§6If you plan on playing on peaceful, you will need to claim this quest!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "twilightforest:fiery_blood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:lifedrain_scepter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:meef_stroganoff", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "385:10": { + "questID:3": 385, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:naga_scale", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Twilight Forest Bosses are Hard!", + "desc:8": "Watch out for that Naga!\n\n§6If you plan on playing on peaceful, you will need to claim this quest!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "twilightforest:naga_scale", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "twilightforest:raven_feather", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "twilightforest:ironwood_raw", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "twilightforest:steeleaf_ingot", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "twilightforest:armor_shard_cluster", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "386:10": { + "questID:3": 386, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "randomthings:peacecandle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "A Few Things", + "desc:8": "This should help protect you from those big bad monsters!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "randomthings:peacecandle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tombstone:dust_of_vanishing", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mysticalagriculture:chunk", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:syringe", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "cyclicmagic:water_candle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "387:10": { + "questID:3": 387, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:curio", + "Count:3": 16, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Research? More like Lamesearch", + "desc:8": "§5Note: The Cheaters Thaumioncon is available to you at the beginning of chapter 3, so keep that in mind.§r\n\nThaumcraft can be annoying, but once you get past the research its pretty cool. §bEat these to gain research.\n\n§rPlace the Workbench Charger on top of your Arcane Workbench." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:curio", + "Count:3": 16, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:curio", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:curio", + "Count:3": 16, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thaumcraft:curio", + "Count:3": 16, + "Damage:2": 4, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thaumcraft:curio", + "Count:3": 16, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "thaumcraft:arcane_workbench_charger", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "388:10": { + "questID:3": 388, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:netherrack", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "I\u0027ll Nether Go Back!", + "desc:8": "Basically the worst place." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:netherrack", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:soul_sand", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mysticalagriculture:soulstone", + "Count:3": 32, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:ore", + "Count:3": 32, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "tconstruct:ore", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "minecraft:glowstone_dust", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "389:10": { + "questID:3": 389, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_misc", + "Count:3": 16, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ore Not 3", + "desc:8": "Mores ores." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:block_misc", + "Count:3": 32, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:emerald", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "fossil:fossil", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "390:10": { + "questID:3": 390, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:sub_block_holder_0", + "Count:3": 16, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ore Not 4", + "desc:8": "Even more ores!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:sub_block_holder_0", + "Count:3": 32, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:sub_block_holder_0", + "Count:3": 32, + "Damage:2": 7, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:ore", + "Count:3": 32, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "nuclearcraft:ore", + "Count:3": 32, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "391:10": { + "questID:3": 391, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tech Parts", + "desc:8": "Micro Crafting can be fun, but so is avoiding it!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:item_misc", + "Count:3": 8, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "actuallyadditions:block_giant_chest_medium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "actuallyadditions:item_chest_to_crate_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 2, + "Damage:2": 9, + "OreDict:8": "" + } + } + } + } + }, + "392:10": { + "questID:3": 392, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Engineering Blocks", + "desc:8": "Here\u0027s a few things to help you out." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 7, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:piston", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "393:10": { + "questID:3": 393, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:causality_collapser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Magical Things", + "desc:8": "These are kind of annoying to make.\n\n§cWarning! Using the Causality Collapser before the Void Rift has eaten enough flux will simply create another rift nearby." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:causality_collapser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemcelestialcrystal", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 900, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:rune", + "Count:3": 4, + "Damage:2": 3, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:rune", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + }, + "4:10": { + "id:8": "botania:rune", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "id:8": "botania:rune", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "394:10": { + "questID:3": 394, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Techy Things", + "desc:8": "Entering the age of single block machines now. Dark times indeed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:machine_frame", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:part", + "Count:3": 2, + "Damage:2": 29, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 2, + "Damage:2": 10, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:material", + "Count:3": 2, + "Damage:2": 27, + "OreDict:8": "" + } + } + } + } + }, + "395:10": { + "questID:3": 395, + "preRequisites:11": [ + 517 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "enderutilities:handybag", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Large Handy Bag", + "desc:8": "Nice." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "enderutilities:handybag", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "enderutilities:enderpart", + "Count:3": 1, + "Damage:2": 54, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderutilities:enderpart", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "396:10": { + "questID:3": 396, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Bonsai!", + "desc:8": "Place a Piece of dirt or grass in one of these, then a sapling. Items will get deposited in a chest below." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:sapling_silverwood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "397:10": { + "questID:3": 397, + "preRequisites:11": [ + 401, + 352 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Empowered Palis", + "desc:8": "Any Empowered item can be done in block form. Either item will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "398:10": { + "questID:3": 398, + "preRequisites:11": [ + 404 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Empowered Void", + "desc:8": "Any Empowered item can be done in block form. Either item will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "399:10": { + "questID:3": 399, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 6-", + "desc:8": "Any Empowered item can be done in block form. Either item will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "400:10": { + "questID:3": 400, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 6-", + "desc:8": "Any Empowered item can be done in block form. Either item will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "401:10": { + "questID:3": 401, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:apprentice" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Tier 2 Blood Orb", + "desc:8": "Shift right click to bind to you. Higher tiers of orbs hold more LP and can be used for more advanced crafts." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:apprentice" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "402:10": { + "questID:3": 402, + "preRequisites:11": [ + 324, + 209 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Starmetal", + "desc:8": "Use the Linking Tool by linking a Collector Crystal to blocks to be transformed, Lightwells, or astral altars. Collector Crystals are found in the large astral temples.\n\nStarmetal can also be mined in the Twilight Forest.\n\n§bThe Crystal used for linking must have sky access!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "403:10": { + "questID:3": 403, + "preRequisites:11": [ + 488 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "clayconia" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Clay Automation with Flowers", + "desc:8": "The Clayconia will convert nearby sand into clay balls, while the Hopperhock willl deposit dropped items into adjacent inventories.\n\nThis might come in handy when you need Aluminum!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "clayconia" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:floatingspecialflower", + "Count:3": 1, + "tag:10": { + "type:8": "hopperhock" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "404:10": { + "questID:3": 404, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:causality_collapser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Closing Void Rifts", + "desc:8": "Throw this (right click) into the Void Rift that spawns after too much Flux has entered the atmosphere, causing it to close and drop some void seeds. Try not to stand too close!\n\nIf you have been super careful to avoid excess Flux, you can dump tons of cobble or other leftovers into your cauldron, then shift-right click to empty it. This is not a recommended activity for near your base.\n\n§cWarning! Using the Causality Collapser before the Void Rift has eaten enough flux will simply create another rift nearby." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:causality_collapser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:sanity_soap", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "405:10": { + "questID:3": 405, + "preRequisites:11": [ + 284 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:magician" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tier 3 Blood Orb", + "desc:8": "Right click to bind it to you, and place in the altar to fill." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:magician" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "406:10": { + "questID:3": 406, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "kekimurus" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Kekimurus", + "desc:8": "Eats Cake to produce Mana.\n\n§bHint: Using a Collector Crystal on a pumpkin will transform it into a cake!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "kekimurus" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "407:10": { + "questID:3": 407, + "preRequisites:11": [ + 420 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:space_chamber_card", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Automating 3D Crafting", + "desc:8": "Using this setup can save you time." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:builder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:space_chamber_card", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rftools:space_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rftools:space_chamber", + "Count:3": 7, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "408:10": { + "questID:3": 408, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Prudentium", + "desc:8": "Picking up an ingot will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "autoConsume:1": 0, + "groupDetect:1": 0, + "requiredFluids:9": { + "0:10": { + "FluidName:8": "prudentium", + "Amount:3": 144 + } + }, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "taskID:8": "bq_standard:fluid" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "409:10": { + "questID:3": 409, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Conductive Iron", + "desc:8": "Look up the recipe for molten Conductive Iron to create." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_power_conduit", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "410:10": { + "questID:3": 410, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:radiant_resonator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Growing Crystals", + "desc:8": "Crystals will grow over time. \n\n§b§cOnly 3 Resonators will be active per player.\n\n§bMaybe look into an Auto Breaker?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "arcanearchives:radiant_resonator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:raw_quartz", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "411:10": { + "questID:3": 411, + "preRequisites:11": [ + 410 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:gemcutters_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Gem Cutter\u0027s Table", + "desc:8": "Main workbench for the mod." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "arcanearchives:gemcutters_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:gold_ingot", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "arcanearchives:shaped_quartz", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "412:10": { + "questID:3": 412, + "preRequisites:11": [ + 411 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:lectern_manifest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Accessing Your Network", + "desc:8": "Opening the Manifest and selecting an item will highlight its inworld location.\n\nCan be crafted into a Lectern, for a standing Manifest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "arcanearchives:manifest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "arcanearchives:brazier_of_hoarding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "413:10": { + "questID:3": 413, + "preRequisites:11": [ + 411 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:radiant_trove", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Single Type Storage", + "desc:8": "A magical drawer and tank." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "arcanearchives:radiant_trove", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "arcanearchives:radiant_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:scintillating_inlay", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "414:10": { + "questID:3": 414, + "preRequisites:11": [ + 412 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:letter_invitation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Allow Access", + "desc:8": "Have the other player use one of these after you craft it to give them access to your network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "arcanearchives:letter_invitation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "index:3": 2, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "minecraft:dye", + "Count:3": 4, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "id:8": "arcanearchives:raw_quartz", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "415:10": { + "questID:3": 415, + "preRequisites:11": [ + 410 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:radiant_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Radiant Chest", + "desc:8": "Can also be created by shift-right clicking on a chest. \n\nHolds up to 256 items in a single slot, and is connected to your magical storage network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "arcanearchives:radiant_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:raw_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "416:10": { + "questID:3": 416, + "preRequisites:11": [ + 410 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:radiant_crafting_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Radiant Crafting Table", + "desc:8": "Can also be created by shift-right clicking on a crafting table. \n\nCan save the last recipe crafted by clicking one of the slots to the right." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "arcanearchives:radiant_crafting_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:raw_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "417:10": { + "questID:3": 417, + "preRequisites:11": [ + 413 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "arcanearchives:scepter_manipulation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Upgrading Troves", + "desc:8": "Right click on a Trove with the Scepter to access the upgrade menu.\n\n§bTry holding an item in your off hand and right clicking on a Radiant Chest with the Scepter!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "arcanearchives:scepter_manipulation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "arcanearchives:matrix_brace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "arcanearchives:material_interface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:shaped_quartz", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "418:10": { + "questID:3": 418, + "preRequisites:11": [ + 411 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "arcanearchives:monitoring_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Magical Storage Bus", + "desc:8": "Place on a chest to allow the manifest to see inside." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "arcanearchives:monitoring_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "arcanearchives:monitoring_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "419:10": { + "questID:3": 419, + "preRequisites:11": [ + 331 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:thaumatorium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Automated Alchemy!", + "desc:8": "Place both §6§2Alchemical Constructs§r on top of the §7Crucible§r, then splash with your §dSalis Mundus§r. Heat by placing the Nitor below. Remember to unlock the needed research in the §5Thaumonomicon§r.\n\nAttach the §6Emptying Transfuser§r to any side of the top block eccept the front. Place an item inside, such as an Inert Ingot, then select the target item. It will start pulling Aspects from nearby filled jars in the direction the §6Emptying Transfuser§r is pointing to craft the item!\n\nAttaching a label on a filled jar will only allow that type of Essentia inside from then on.\n\n§8Void Jars§r can be crafted by placing a Jar in the Arcane Workbench, with a Perditio Vis Crystal. They will void excess Essentia, which can be very useful when dealing with byproducts." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:crucible", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:metal_alchemical", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thaumcraft:jar_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "thaumcraft:label", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:essentia_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "420:10": { + "questID:3": 420, + "preRequisites:11": [ + 210, + 62 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "RF Tools", + "desc:8": "RF Tools can be used for many things." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rftools:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "421:10": { + "questID:3": 421, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:essentia_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "The name of the item refers to the jar." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:essentia_input", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:essentia_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumcraft:jar_normal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "thaumcraft:essentia_input", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:essentia_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "422:10": { + "questID:3": 422, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_farmer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Farmer", + "desc:8": "Automatic 9x9 farming, pairs well with crop sticks." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_farmer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:elemental_hoe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "423:10": { + "questID:3": 423, + "preRequisites:11": [ + 10 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "compactmachines3:psd", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Personal Shrinker", + "desc:8": "This can be used to enter Compact Machines." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "compactmachines3:psd", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "compactmachines3:wallbreakable", + "Count:3": 26, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "compactmachines3:tunneltool", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "424:10": { + "questID:3": 424, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": { + "effectiveMaxDamage:3": 10 + }, + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "treasure2:thiefs_lock_pick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Unlocking Chests", + "desc:8": "These have a chance to unlock stone locks by shift right clicking." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": { + "effectiveMaxDamage:3": 10 + }, + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "treasure2:thiefs_lock_pick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": { + "state:10": { + "isOpen:1": 0, + "usedOnChest:1": 0 + }, + "inventory:10": { + "Size:3": 14, + "Items:9": {} + } + }, + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "treasure2:key_ring", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "425:10": { + "questID:3": 425, + "preRequisites:11": [ + 428 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "translocators:translocator_part", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Translocators", + "desc:8": "These can transfer very fast across a single block." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "translocators:translocator_part", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "translocators:translocator_part", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "translocators:translocator_part", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "426:10": { + "questID:3": 426, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Modified Steel", + "desc:8": "Dark Steel is one of the main metals to create your AE Network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 8, + "Damage:2": 160, + "OreDict:8": "" + } + } + } + } + }, + "427:10": { + "questID:3": 427, + "preRequisites:11": [ + 5 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Universal Binder", + "desc:8": "To collect Grains of Infinity, head down to Bedrock and light it on fire. " + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:flint_and_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + }, + "2:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 32, + "Damage:2": 22, + "OreDict:8": "" + } + } + } + } + }, + "428:10": { + "questID:3": 428, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Energetic Alloys", + "desc:8": "Can be used to make Translocators." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:compound", + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "429:10": { + "questID:3": 429, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED-HV Power", + "desc:8": "HV can transfer 4096 rf/tick, which is exactly the same amount as the Excavator requires, and the Diesel Generator produces.\n\nThe Faraday suit will protect you from being electrucuted, as HV Wires do not have an insulated variety." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:faraday_suit_head", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "immersiveengineering:faraday_suit_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:faraday_suit_legs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:faraday_suit_feet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "430:10": { + "questID:3": 430, + "preRequisites:11": [ + 365 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:powercell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Wireless Power", + "desc:8": "By placing a card inside of a cell, then another one, you will link the second one to the first. Then when you place the second card into another Powercell, both cells will share power across any distance.\n\n\nRight click a side with the wrench to change in/output." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:powercell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rftools:powercell_card", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:smartwrench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rftools:powercell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rftools:powercell_card", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "431:10": { + "questID:3": 431, + "preRequisites:11": [ + 182 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "BAM Ingots", + "desc:8": "Pipe all these types of dust into the top of the Minerial Cabinet, then create your first BAM ingot!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 68, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:dust", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mekanism:otherdust", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 21, + "OreDict:8": "" + }, + "4:10": { + "id:8": "libvulpes:productdust", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "5:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 8, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "432:10": { + "questID:3": 432, + "preRequisites:11": [ + 401 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodarsenal:sacrifice_amulet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Amulet of Self/Sacrifice", + "desc:8": "When worn, the amulets will collect blood from either damaging or being damaged.\n\nCraft either one for this quest. " + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodarsenal:sacrifice_amulet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodarsenal:self_sacrifice_amulet", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "433:10": { + "questID:3": 433, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:dagger_of_sacrifice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "Hitting mobs next to an altar will insta-kill them for some LP." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:dagger_of_sacrifice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "lifeessence", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "434:10": { + "questID:3": 434, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodmagic:sigil_divination", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodmagic:sigil_divination", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "435:10": { + "questID:3": 435, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodarsenal:glass_sacrificial_dagger", + "Count:3": 1, + "tag:10": { + "sacrifice:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "Adding glass to your daggers will increase the LP gained." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodarsenal:glass_sacrificial_dagger", + "Count:3": 1, + "tag:10": { + "sacrifice:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodarsenal:glass_dagger_of_sacrifice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "436:10": { + "questID:3": 436, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "This can be used to create potions, among other things.\n\nOne use of this is to turn Potion of Harming into Life Essence for Blood Magic." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 5, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 4, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 3, + "Damage:2": 6, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "437:10": { + "questID:3": 437, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_multiblock", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "Simple to use, pipe in liquid potions and glass bottles." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 3, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 2, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:glass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 3, + "tag:10": { + "conveyorType:8": "immersiveengineering:conveyor" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:metal_device0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:glass_bottle", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "438:10": { + "questID:3": 438, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersivetech:stone_decoration", + "Count:3": 18, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Advanced Coke Oven", + "desc:8": "The back side needs to be made up of steel sheetmetal, and the hopper goes on top. Preheaters go on the sides and require power." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersivetech:stone_decoration", + "Count:3": 18, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 9, + "Damage:2": 8, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:hopper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "immersivetech:metal_device", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "439:10": { + "questID:3": 439, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Needs dirt inside, and water piped in the bottom." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:dye", + "Count:3": 8, + "Damage:2": 15, + "OreDict:8": "" + } + } + } + } + }, + "440:10": { + "questID:3": 440, + "preRequisites:11": [ + 372 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodmagic:ritual_diviner", + "Count:3": 1, + "tag:10": { + "current_ritual:8": "lava" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rituals!", + "desc:8": "Shift right/left click the air with the Ritual Diviner to cycle through the diferent rituals avalable at this tier.\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:ritual_diviner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:ritual_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "bloodmagic:ritual_stone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodmagic:ritual_stone", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "441:10": { + "questID:3": 441, + "preRequisites:11": [ + 267, + 380 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:ritual_diviner", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Advanced Rituals", + "desc:8": "Shift right/left click the air with the Ritual Diviner to cycle through the diferent rituals avalable at this tier." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:ritual_diviner", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "442:10": { + "questID:3": 442, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:cinder_plinth", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Cinder Plinth", + "desc:8": "Placing items in here and powering with Embers will burn them into ash, which is used in the process for making Arcane Stone." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:cinder_plinth", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "443:10": { + "questID:3": 443, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "iceandfire:dragon_skull", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Slay a Fire Dragon!", + "desc:8": "Using a glass bottle on a freshly slain dragon will give you some blood.\n\nThis is one of the four paths to take for Fiery Metal." + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "Attributes:9": { + "0:10": { + "Base:6": -2.0, + "Name:8": "tc.mobmod" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "tc.mobmodtaint" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.experienceRate" + }, + "5:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "7:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "8:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "10:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "11:10": { + "Base:6": 40.0, + "Name:8": "generic.maxHealth" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "13:10": { + "Base:6": 0.15000000596046448, + "Name:8": "generic.movementSpeed" + }, + "14:10": { + "Base:6": 2.0, + "Name:8": "generic.armor" + }, + "15:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "16:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "17:10": { + "Base:6": 128.0, + "Name:8": "generic.followRange" + }, + "18:10": { + "Base:6": 1.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "Gender:1": 0, + "AbsorptionAmount:5": 0.0, + "AttackDecision:1": 1, + "Hovering:1": 0, + "FallDistance:5": 0.0, + "InLove:3": 0, + "FireBreathing:1": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 2000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "thebetweenlands:entity_gems:10": { + "gems:9": {} + }, + "thebetweenlands:custom_step_sound:10": {}, + "llibrary:extendedentitydatacapability:10": { + "Ice And Fire - Chicken Property Tracker:10": { + "TimeUntilNextEgg:3": 1 + }, + "Ice And Fire - Siren Property Tracker:10": { + "CharmedBySiren:1": 0, + "SirenID:3": 0 + }, + "Fossils - Mammal Tracker:10": { + "EmbryoProgress:3": 0, + "Embryo:3": -1 + }, + "Ice And Fire - Frozen Property Tracker:10": { + "TicksUntilUnfrozen:3": 0, + "IsFrozen:1": 0 + }, + "Ice and Fire - Player Property Tracker:10": { + "DismountedDragon:1": 0, + "GauntletDamage:3": 0, + "DreadPortalZ:3": 0, + "DreadPortalY:3": 0, + "DreadPortalX:3": 0 + }, + "Ice And Fire - Chain Property Tracker:10": { + "ConnectedEntities:9": {} + }, + "Ice And Fire - Stone Property Tracker:10": { + "StoneBreakLvl:3": 0, + "TurnedToStone:1": 0 + } + }, + "thebetweenlands:puppet:10": { + "ticks:3": 0, + "guard:1": 0, + "recruitmentCost:3": 0, + "stay:1": 0 + }, + "enderutilities:entity_portal_cooldown:10": { + "LastInPortal:4": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "thebetweenlands:equipment:10": { + "amuletSlots:3": 1 + }, + "thaumicaugmentation:portal_state:10": { + "inPortal:1": 0 + }, + "lycanitesmobs:iextendedentity:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "Items:9": {}, + "id:8": "iceandfire:firedragon", + "ModelDead:1": 0, + "Leashed:1": 0, + "Air:2": 300, + "DeadProg:5": 0.0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "AgeTicks:3": 0, + "HasHomePosition:1": 0, + "Variant:3": 0, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "OwnerUUID:8": "", + "Flying:1": 0, + "Tackle:1": 0, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "CrystalBound:1": 0, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.47999995946884155, + "4:6": 1.2000000476837158, + "5:6": 0.47999995946884155 + }, + "Sitting:1": 0, + "FallFlying:1": 0, + "ForcedAge:3": 0, + "PortalCooldown:3": 0, + "Hunger:3": 0, + "DeathTime:2": 0, + "TamedDragon:1": 0, + "AgingDisabled:1": 0, + "Age:3": 1, + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "UUIDLeast:4": -7407419473794093450, + "Health:5": 20.0, + "LeftHanded:1": 0, + "OnGround:1": 0, + "Dimension:3": 0, + "DeathStage:3": 0, + "Rotation:9": { + "0:5": 4.568556, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "UUIDMost:4": -6606483910460554971, + "Sleeping:1": 0, + "Command:3": 0, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + } + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "iceandfire:firedragon", + "subtypes:1": 1 + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "iceandfire:fire_dragon_blood", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "444:10": { + "questID:3": 444, + "preRequisites:11": [ + 401 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Runes of Self/Sacrifice", + "desc:8": "Replacing any of the blank runes around the Blood Altar will modify it.\n\nSelf Sacrifice Runes add extra LP to your Altar with every stab.\n\nSacrifice Runes add extra LP every time a mob would give some." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "445:10": { + "questID:3": 445, + "preRequisites:11": [ + 67 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockworldilluminator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Cave Illuminator", + "desc:8": "Placing this will light up all open areas nearby." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockworldilluminator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemilluminationwand", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "446:10": { + "questID:3": 446, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:scanner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Scanner", + "desc:8": "Can be used to search for ores, blocks, and more.\n\nShift-right clicking a block with the block scanner module will link it to that block. Then after you insert it into the scanner (by shift right clicking on air with it), you can hold right click to scan." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:scanner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:module_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:module_range", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:module_fluid", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:module_entity", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "scannable:scanner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "447:10": { + "questID:3": 447, + "preRequisites:11": [ + 372 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "More Runes", + "desc:8": "§9Displacement Runes§r allow you to transfer blood to and from external sources faster, while §6Runes of Capacity §rallow you to store more blood in the altar." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "448:10": { + "questID:3": 448, + "preRequisites:11": [ + 493, + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumicaugmentation:research_notes", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Void Ingot Research", + "desc:8": "This will complete all required research for closing Void Rifts and making Void Metal.\n\nWill also unlock the Void Smeltery research." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "liquid_death", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "randomthings:stableenderpearl", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Research the Void", + "viaPlayer:1": 0, + "index:3": 0, + "title:8": "bq_standard.reward.command", + "command:8": "/tc research @s ESSENTIASMELTERVOID" + } + } + }, + "449:10": { + "questID:3": 449, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ore", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The End of Ores", + "desc:8": "Dank." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ore", + "Count:3": 32, + "Damage:2": 8, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:ore", + "Count:3": 32, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "contenttweaker:sub_block_holder_0", + "Count:3": 16, + "Damage:2": 8, + "OreDict:8": "" + }, + "3:10": { + "id:8": "libvulpes:ore0", + "Count:3": 32, + "Damage:2": 8, + "OreDict:8": "" + } + } + } + } + }, + "450:10": { + "questID:3": 450, + "preRequisites:11": [ + 264 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 70, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Making Some Rare Metals", + "desc:8": "By crushing Specter ingots with Alchemical Slurry, you can create Platinum, Osmium, and a tiny bit of Iridium." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 70, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:dust", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "jaopca:item_dusttinyiridium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "451:10": { + "questID:3": 451, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "cyclicmagic:laser_cannon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Some Handy Items", + "desc:8": "These could come in useful..." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "deepmoblearning:machine_casing", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "cyclicmagic:laser_cannon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "xlfoodmod:taco", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:data_model_dragon", + "Count:3": 1, + "tag:10": { + "tier:3": 1, + "killCount:3": 1, + "totalKillCount:3": 1 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "452:10": { + "questID:3": 452, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:dust", + "Count:3": 16, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rare Materials", + "desc:8": "Hopefully you never run out!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:dust", + "Count:3": 32, + "Damage:2": 10, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 4, + "Damage:2": 11, + "OreDict:8": "" + }, + "2:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 4, + "Damage:2": 52, + "OreDict:8": "" + }, + "3:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 4, + "Damage:2": 35, + "OreDict:8": "" + } + } + } + } + }, + "453:10": { + "questID:3": 453, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:blacklotus", + "Count:3": 16, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Very Magical Things", + "desc:8": "Oo Shiny! Dropping the Blacker Loutus into a Mana Pool with a bit of Mana in it will convert the Loutus into more Mana." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:blacklotus", + "Count:3": 10, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemcelestialcrystal", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 900, + "fract:3": 0, + "purity:3": 100, + "sizeOverride:3": -1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "ebwizardry:crystal_silver_plating", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "thaumadditions:mithrillium_ingot", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "454:10": { + "questID:3": 454, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "HIDDEN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:itemmodularium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Modularium -Unused atm-", + "desc:8": "Used for Modular Machines." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:itemmodularium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "455:10": { + "questID:3": 455, + "preRequisites:11": [ + 196, + 456 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Manganese", + "desc:8": "Cook the Crushed Rhodochrosite, put it in the Arc Furnace, then put it in the Blast Furnace. After you smelt this ingot, crush it up and add it to the Metal Alloyer from Rockhounding." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "456:10": { + "questID:3": 456, + "preRequisites:11": [ + 257 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:rock_crusher", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Rock Crusher", + "desc:8": "This Machine is used for collecting many materials from rocks, but you\u0027ll be needing it to eventually process into Manganeese in the following quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:rock_crusher", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 15, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:gem_dust", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "457:10": { + "questID:3": 457, + "preRequisites:11": [ + 369, + 368 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "libvulpes:structuremachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Advanced Rocketry", + "desc:8": "Destination Moon!\n\n§bUse the Holo-Projector to help assemble the multiblocks." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "libvulpes:structuremachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "libvulpes:holoprojector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "libvulpes:structuremachine", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "458:10": { + "questID:3": 458, + "preRequisites:11": [ + 339 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 7-", + "desc:8": "Any Empowered item can be done in block form. Either item will complete the quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_crystal_empowered", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "459:10": { + "questID:3": 459, + "preRequisites:11": [ + 354 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Infuser", + "desc:8": "This can be used to make many advanced alloys." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:compressed_chrome", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "460:10": { + "questID:3": 460, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Fluid Transposer", + "desc:8": "Can fill or empty fluid containers. Also used for some advanced crafting." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "461:10": { + "questID:3": 461, + "preRequisites:11": [ + 260 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "environmentaltech:void_ore_miner_cont_1", + "Count:3": 1, + "tag:10": { + "valk_td:10": { + "owner:10": { + "own_un:8": "Filostorm", + "own_mst:4": -3354768958829737557, + "own_lst:4": -5854321833218265537 + }, + "outputs:10": { + "Size:3": 2, + "Items:9": {} + }, + "Energy:3": 0 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tier 1 Void Ore Miner", + "desc:8": "Requires 1m power per ore mined.\n\nUse the Assembler on the Controller to place the blocks.\n\n§bBy Shift-right clicking on the placed Void Miner, you can cycle through the different types.\n\n§6Each tier of Crystal is craftable." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "environmentaltech:void_ore_miner_cont_1", + "Count:3": 1, + "tag:10": { + "valk_td:10": { + "owner:10": { + "own_un:8": "Filostorm", + "own_mst:4": -3354768958829737557, + "own_lst:4": -5854321833218265537 + }, + "outputs:10": { + "Size:3": 2, + "Items:9": {} + }, + "Energy:3": 0 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "environmentaltech:structure_frame_1", + "Count:3": 24, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "environmentaltech:structure_panel", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "environmentaltech:laser_core", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "environmentaltech:laser_lens", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "etLaserLens" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "462:10": { + "questID:3": 462, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderutilities:ender_elevator", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Ender Elevator", + "desc:8": "These are much more useful then the Elevators you\u0027re used to!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderutilities:ender_elevator", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:block_travel_anchor", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "463:10": { + "questID:3": 463, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dusts", + "desc:8": "Crushes things." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "464:10": { + "questID:3": 464, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Compactor", + "desc:8": "Makes plates and gears." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "465:10": { + "questID:3": 465, + "preRequisites:11": [ + 266 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 1, + "tag:10": { + "Fluid:10": { + "FluidName:8": "fluidmercury", + "Amount:3": 1000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mercury", + "desc:8": "Can be used to triple ore with the Industral Grinder." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 1, + "tag:10": { + "Fluid:10": { + "FluidName:8": "fluidmercury", + "Amount:3": 1000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "466:10": { + "questID:3": 466, + "preRequisites:11": [ + 398, + 460 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:minifield-crafter" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "3D Crafter", + "desc:8": "All modular machines require the blueprint to be placed inside to run. You can use it to display a hologram while assembling the machine.\n\nThe in/outputs can go under any of the Projectors, and can be any size.\n\n\n§bUpgrading the casing will increase speed by a small amount for each one replaced!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:minifield-crafter" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "itemInputHatch" + }, + "3:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "itemOutputHatch" + }, + "4:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "energyInputHatch" + }, + "5:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 16, + "Damage:2": 1, + "OreDict:8": "" + }, + "6:10": { + "id:8": "compactmachines3:fieldprojector", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "actuallyadditions:block_misc", + "Count:3": 20, + "Damage:2": 7, + "OreDict:8": "" + }, + "8:10": { + "id:8": "thermalfoundation:glass_alloy", + "Count:3": 40, + "Damage:2": 7, + "OreDict:8": "" + }, + "9:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + }, + "10:10": { + "id:8": "actuallyadditions:block_misc", + "Count:3": 9, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "467:10": { + "questID:3": 467, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "HIDDEN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED RH-", + "desc:8": "Used to make Arc Furnace Electrodes much cheaper." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:misc_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "468:10": { + "questID:3": 468, + "preRequisites:11": [ + 200 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 135, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Iridium", + "desc:8": "Found rarely in the Beneath." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 135, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "469:10": { + "questID:3": 469, + "preRequisites:11": [ + 485, + 246, + 288 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Digital Miner", + "desc:8": "Set an ore filter to mine that type of ore, or use the filter §6ore*§r to mine all ores in the range!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "fluxnetworks:fluxcore", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "470:10": { + "questID:3": 470, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:machine_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 6-", + "desc:8": "The Core of Deep Mob Learning." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:machine_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "deepmoblearning:machine_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "471:10": { + "questID:3": 471, + "preRequisites:11": [ + 344, + 153 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:extraction_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Loot Fabricator", + "desc:8": "Makes loot from matter. At this point all your Pristine Matter will come from trials, but later on you will have access to Simulation Chambers which will aquire matter for you." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:extraction_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "deepmoblearning:machine_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "472:10": { + "questID:3": 472, + "preRequisites:11": [ + 368 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:simulation_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Simulation Chamber", + "desc:8": "Kills virtual mobs." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:simulation_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalexpansion:morb", + "Count:3": 1, + "tag:10": { + "Generic:1": 1, + "id:8": "thermalfoundation:blizz" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "473:10": { + "questID:3": 473, + "preRequisites:11": [ + 212 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearningbm:digital_agonizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mob Agonizer: Automated Blood", + "desc:8": "Insert a leveled up Data Model, and link it to your Blood Altar.\n\n§cHighly recommended for an easy source of blood!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearningbm:digital_agonizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearningbm:altar_linker", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sigil_divination", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "474:10": { + "questID:3": 474, + "preRequisites:11": [ + 470 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:trial_keystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Trials", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:trial_keystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:trial_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "475:10": { + "questID:3": 475, + "preRequisites:11": [ + 16 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:deep_learner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Deep Learner", + "desc:8": "The first way to use §dDeep Mob Learning§r will be to fight in Trials, which are unlocked when you get access to basic alloys. When killing one of the mobs listed on the Trail Key, while there is a matching §bData Model§r inside a §bLearner§r, the §bKey §rwill become attuned at whatever level the §bData Model§r is.\n\nKill mobs of the model types inside your §bDeep Learner §rto level them up." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:deep_learner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:data_model_zombie", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "deepmoblearning:trial_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "476:10": { + "questID:3": 476, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "minecraft:iron_ingot", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Melter", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chapter 1 Trophy!", + "desc:8": "When you can\u0027t be tempted!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "token_tier1" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "minecraft:iron_ingot", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Melter", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "477:10": { + "questID:3": 477, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "thermalfoundation:material", + "Count:1": 1, + "Damage:2": 163 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Smeltery", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chapter 2 Trophy!", + "desc:8": "The hardest choices require the strongest wills." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "token_tier2" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "thermalfoundation:material", + "Count:1": 1, + "Damage:2": 163 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Smeltery", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "478:10": { + "questID:3": 478, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "thermalfoundation:material", + "Count:1": 1, + "Damage:2": 160 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The High Oven", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chapter 3 Trophy!", + "desc:8": "You\u0027re getting there!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "token_tier3" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "thermalfoundation:material", + "Count:1": 1, + "Damage:2": 160 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The High Oven", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "479:10": { + "questID:3": 479, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "techreborn:ingot", + "Count:1": 1, + "Damage:2": 19 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Arc Furnace", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chapter 4 Trophy!", + "desc:8": "You just made the right choice." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "token_tier4" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "techreborn:ingot", + "Count:1": 1, + "Damage:2": 19 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Arc Furnace", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "480:10": { + "questID:3": 480, + "preRequisites:11": [ + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "mekanism:ingot", + "Count:1": 1, + "Damage:2": 1 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Blast Furnace", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chapter 5 Trophy!", + "desc:8": "SO much more useful!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:token_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "token_tier5" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyShowsTooltip:1": 1, + "TrophyItem:10": { + "id:8": "mekanism:ingot", + "Count:1": 1, + "Damage:2": 1 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "The Blast Furnace", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "481:10": { + "questID:3": 481, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED chap 6-", + "desc:8": "Can also be made with the Fluid Transposer." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "482:10": { + "questID:3": 482, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Redstone Alloy", + "desc:8": "Used for many things." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "483:10": { + "questID:3": 483, + "preRequisites:11": [ + 231 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advgenerators:turbine_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Advanced Generators", + "desc:8": "Place blocks together to form the multiblock.\n\nHas many blocks that can be used to upgrade the machine, refer to the controller for possible blocks." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "advgenerators:turbine_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "advgenerators:forge_output", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "advgenerators:fluid_input", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "advgenerators:turbine_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "484:10": { + "questID:3": 484, + "preRequisites:11": [ + 457 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:warpcore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Warp Core", + "desc:8": "Quests coming soon." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:warpcore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "485:10": { + "questID:3": 485, + "preRequisites:11": [ + 457 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:precisionassemblingmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Assembler", + "desc:8": "Higher tiers of Motors and Coils impact cost and speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:precisionassemblingmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "libvulpes:structuremachine", + "Count:3": 24, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:glass", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "libvulpes:enhancedmotor", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "libvulpes:coil0", + "Count:3": 2, + "Damage:2": 7, + "OreDict:8": "blockCoil" + }, + "5:10": { + "id:8": "libvulpes:forgepowerinput", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "libvulpes:hatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "7:10": { + "id:8": "libvulpes:hatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "486:10": { + "questID:3": 486, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Energetic Infuser", + "desc:8": "Can be augmented to repare tools." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "487:10": { + "questID:3": 487, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Plant Farm", + "desc:8": "Grows things with water, what more do you want?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "488:10": { + "questID:3": 488, + "preRequisites:11": [ + 266 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 68, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Aluminum Dust", + "desc:8": "Don\u0027t forget to have enough Cells in the machine!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:dust", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 2, + "Damage:2": 68, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:clay", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "489:10": { + "questID:3": 489, + "preRequisites:11": [ + 457 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:crystallizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Crystallizer", + "desc:8": "make-a the SILICON" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:crystallizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "libvulpes:hatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "libvulpes:hatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "libvulpes:forgepowerinput", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "libvulpes:coil0", + "Count:3": 2, + "Damage:2": 7, + "OreDict:8": "blockCoil" + }, + "5:10": { + "id:8": "advancedrocketry:iquartzcrucible", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "490:10": { + "questID:3": 490, + "preRequisites:11": [ + 457 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:cuttingmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Cutting Machine", + "desc:8": "Used for Circuit Boards and cutting planks." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:cuttingmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "libvulpes:hatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "libvulpes:hatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "libvulpes:forgepowerinput", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "advancedrocketry:sawblade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "libvulpes:enhancedmotor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "blockMotor" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "491:10": { + "questID:3": 491, + "preRequisites:11": [ + 339 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "entropinnyum" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Explosive Mana", + "desc:8": "This flower will turn explosions into mana!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "entropinnyum" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:tiny_tnt", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "492:10": { + "questID:3": 492, + "preRequisites:11": [ + 97 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumonomicon", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Research is Annoying", + "desc:8": "§d§dIf this is your first time playing Thaumcraft, I would highly recommend not using this quest!\n\n§dThere are many Addons, so keep that in mind before deciding.\n§r\nThere are a few quests that unlock just some research, so if you want a more authentic Thaumcraft experience, you can do those instead of this.\n\nUsing this Thaumioncon will unlock all research for you.\n\n§6After using this, you will have a large amount of Warp. This can be cleared by completing the quest below this one." + } + }, + "tasks:9": { + "0:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumonomicon", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "493:10": { + "questID:3": 493, + "preRequisites:11": [ + 97 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumonomicon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Thaumonomicon", + "desc:8": "Splash some of that magic salt on the bookshelf." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:thaumonomicon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:salis_mundus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "494:10": { + "questID:3": 494, + "preRequisites:11": [ + 53 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_fermenting_barrel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fermenting Canola", + "desc:8": "Placing these next to each other will move the fluid between the two.\n\n§bRecommended to upgrade the canola seeds to 10/10/10 for greater harvesting.\n\n§rCanola Oil can be used as a fuel for many turbines, and can be transformed into one of the best fuel types in the game." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_canola_press", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "actuallyadditions:block_fermenting_barrel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "actuallyadditions:item_misc", + "Count:3": 32, + "Damage:2": 13, + "OreDict:8": "" + } + } + } + } + }, + "495:10": { + "questID:3": 495, + "preRequisites:11": [ + 492 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:sanity_checker", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Clear all Warp", + "desc:8": "§cMake sure you read the Cheaters Thaumioncon first!§r\n\nThis quest will clear you of any warp." + } + }, + "tasks:9": { + "0:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Remove Warp", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/tc warp @s set 0 TEMP" + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 2, + "title:8": "bq_standard.reward.command", + "command:8": "/tc warp @s set 0" + }, + "2:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 3, + "title:8": "bq_standard.reward.command", + "command:8": "/tc warp @s set 0 PERM" + } + } + }, + "496:10": { + "questID:3": 496, + "preRequisites:11": [ + 329 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:sparkupgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Spark Augments", + "desc:8": "Place these on sparks to change their behavior." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:sparkupgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:sparkupgrade", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:spark", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "497:10": { + "questID:3": 497, + "preRequisites:11": [ + 257 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:infuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fluid Infuser", + "desc:8": "One way to automate clay, as well as treated wood." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:infuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "498:10": { + "questID:3": 498, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Manyullyn", + "desc:8": "Requires 1500 heat to alloy.\n\n§bMight want to look into upgrading your Advanced Generator!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "499:10": { + "questID:3": 499, + "preRequisites:11": [ + 460 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:upgrades", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Overclockers", + "desc:8": "Place these into a Tech Reborn machine to increase the speed." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:upgrades", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:upgrades", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "500:10": { + "questID:3": 500, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "cyclicmagic:auto_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Auto Crafter", + "desc:8": "Set craft, pipe items, profit?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "cyclicmagic:auto_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "501:10": { + "questID:3": 501, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalworld:silkworm_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Silkworms", + "desc:8": "Hatch a Silkworm from an egg, then after it grows for a while it will drop some silk.\n\n§cWarning: They are VERY territorial!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalworld:silkworm_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalworld:spindle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "mysticalworld:gall_apple", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tconstruct:rack", + "Count:3": 4, + "tag:10": { + "textureBlock:10": { + "id:8": "minecraft:wooden_slab", + "Count:1": 1, + "Damage:2": 0 + } + }, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "502:10": { + "questID:3": 502, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:frame", + "Count:3": 1, + "Damage:2": 64, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Device Frame", + "desc:8": "This can be used for a few simple machines." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:frame", + "Count:3": 1, + "Damage:2": 64, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:clear_glass", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "503:10": { + "questID:3": 503, + "preRequisites:11": [ + 459 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Separating Water", + "desc:8": "Water goes in the front, and outputs gasses on the sides." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "504:10": { + "questID:3": 504, + "preRequisites:11": [ + 354 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Bio Fuel", + "desc:8": "Most plant based items can be crushed into Bio Fuel." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:biofuel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:pumpkin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "505:10": { + "questID:3": 505, + "preRequisites:11": [ + 504, + 503 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Presurized Reaction Chamber (PRC)", + "desc:8": "Combine Hydrogen, Water, and Bio Fuel to create Ethylene." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "enderio:item_gas_conduit", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:transmitter", + "Count:3": 8, + "tag:10": { + "tier:3": 0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "506:10": { + "questID:3": 506, + "preRequisites:11": [ + 505 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Condensating into a Liquid", + "desc:8": "Set the machine to convert to a liquid. \n\nEthylene is one of the best Advanced Genorators fuels." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 1, + "tag:10": { + "Fluid:10": { + "FluidName:8": "liquidethene", + "Amount:3": 1000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "507:10": { + "questID:3": 507, + "preRequisites:11": [ + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "threng:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fluix Platinum", + "desc:8": "Used for high tech AE systems." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "threng:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "threng:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "508:10": { + "questID:3": 508, + "preRequisites:11": [ + 238 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "moltenembers", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Smeltery Fuel", + "desc:8": "Thats hot." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "moltenembers", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:crystal_ember", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "509:10": { + "questID:3": 509, + "preRequisites:11": [ + 209 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "randomthings:igniter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Igniter", + "desc:8": "Might help with your need for Infinity Dust." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "randomthings:igniter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderstorage:ender_storage", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "510:10": { + "questID:3": 510, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 131, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Lead", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 131, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 131, + "OreDict:8": "" + } + } + } + } + }, + "511:10": { + "questID:3": 511, + "preRequisites:11": [ + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "platinum_plustic" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mining Level: Enhanced", + "desc:8": "Cast yourself an Enhanced level Pickaxe head. (Platinum, Osmium, Titanium)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "platinum_plustic" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "osmium" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pick_head", + "Count:3": 1, + "tag:10": { + "Material:8": "titanium" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:sharpening_kit", + "Count:3": 1, + "tag:10": { + "Material:8": "platinum_plustic" + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "512:10": { + "questID:3": 512, + "preRequisites:11": [ + 513 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "cyclicmagic:corrupted_chorus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Phasing", + "desc:8": "Use this to walk through walls." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "cyclicmagic:corrupted_chorus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "cyclicmagic:corrupted_chorus", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "513:10": { + "questID:3": 513, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 1, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "HIDDEN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:chorus_fruit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chorus Fruit", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:chorus_fruit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "514:10": { + "questID:3": 514, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:crystal_cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "Place a Machanical Core or Machine Accessor underneath this to allow access. The Accessor wont connect if shift-right clicked onto the bottom.\n\nPiping Ember Crystals in will increase the Ember storage." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "embers:crystal_cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:crystal_ember", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "515:10": { + "questID:3": 515, + "preRequisites:11": [ + 516 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:timeinabottle", + "Count:3": 1, + "tag:10": { + "timeData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Time in a Bottle", + "desc:8": "Holding this in your inventory will save time for you to use later to speed up machines.\n\n§bThe extra Time in a Bottle is for a teammate." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:timeinabottle", + "Count:3": 1, + "tag:10": { + "timeData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:timeinabottle", + "Count:3": 1, + "tag:10": { + "timeData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "516:10": { + "questID:3": 516, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 1, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "HIDDEN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:diamond", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Diamonds!", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:diamond", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "517:10": { + "questID:3": 517, + "preRequisites:11": [ + 228 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:handybag", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Handy Bag", + "desc:8": "This in an amazing backpack." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:handybag", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderutilities:enderpart", + "Count:3": 1, + "Damage:2": 52, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:handybag", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderutilities:storage_0", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + }, + "1:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "enderutilities:enderpart", + "Count:3": 1, + "Damage:2": 54, + "OreDict:8": "" + } + } + } + } + }, + "518:10": { + "questID:3": 518, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:rfgenerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mana Flux Field", + "desc:8": "This converts one burst of Mana into 2048 RF." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:rfgenerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "519:10": { + "questID:3": 519, + "preRequisites:11": [ + 151 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermaldynamics:retriever", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Automating the Blood Altar", + "desc:8": "Using these Retrievers to pull a single item to the altar, then you can set the filter to extract exactly what you want from the altar.\n\n§cMake sure you either disable redstone sensitivity or supply a redstone signal." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermaldynamics:retriever", + "Count:3": 2, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermaldynamics:duct_32", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "520:10": { + "questID:3": 520, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:gold_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gold", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:gold_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:gold_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "521:10": { + "questID:3": 521, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 128, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Copper", + "desc:8": "Now listen here, Copper..." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 128, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 128, + "OreDict:8": "" + } + } + } + } + }, + "522:10": { + "questID:3": 522, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 129, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tin", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 129, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 129, + "OreDict:8": "" + } + } + } + } + }, + "523:10": { + "questID:3": 523, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 164, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Constantan", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 164, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 164, + "OreDict:8": "" + } + } + } + } + }, + "524:10": { + "questID:3": 524, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "525:10": { + "questID:3": 525, + "preRequisites:11": [ + 209 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "engineersdecor:small_mineral_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Lava Gen", + "desc:8": "Makes lava over time." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "engineersdecor:small_mineral_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "526:10": { + "questID:3": 526, + "preRequisites:11": [ + 125 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumicenergistics:arcane_terminal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Thaumic Energistics!", + "desc:8": "This terminal counts as an Arcane Workbench." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumicenergistics:arcane_terminal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumicenergistics:upgrade_arcane", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumicaugmentation:vis_regenerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "527:10": { + "questID:3": 527, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + } + } + } + }, + "528:10": { + "questID:3": 528, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "" + } + } + } + } + }, + "529:10": { + "questID:3": 529, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Electrical Steel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "530:10": { + "questID:3": 530, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Energetic Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "531:10": { + "questID:3": 531, + "preRequisites:11": [ + 800 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "cyclicmagic:block_miner_smart", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Smart Breaker", + "desc:8": "This is able to break blocks from a filter." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "cyclicmagic:block_miner_smart", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "532:10": { + "questID:3": 532, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dark Steel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "533:10": { + "questID:3": 533, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Soularium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "534:10": { + "questID:3": 534, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Energetic Silver", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "535:10": { + "questID:3": 535, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Intermedium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + } + } + } + }, + "536:10": { + "questID:3": 536, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "randomthings:ingredient", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "randomthings:ingredient", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "randomthings:ingredient", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "537:10": { + "questID:3": 537, + "preRequisites:11": [ + 238 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_reservoir", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Infinite Water", + "desc:8": "Fused Quartz can be made in the Smeltery.\n\nPlace at least two buckets of water into a connected set of these for infinite water." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_reservoir", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:block_fused_quartz", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "538:10": { + "questID:3": 538, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "jecalculation:item_calculator", + "Count:3": 1, + "tag:10": { + "jecalculation:10": { + "craft:10": { + "amount:8": "", + "recents:9": { + "0:10": { + "type:8": "itemStack", + "content:10": { + "amount:4": 1, + "item:8": "techreborn:quantum_chest" + } + } + }, + "inventory:1": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Crafting Calculator", + "desc:8": "This can be used to determine the cost of a crafting recipe.\n\n§cDon\u0027t add an Arc Furnace recipe, it will cause a crash!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "jecalculation:item_calculator", + "Count:3": 1, + "tag:10": { + "jecalculation:10": { + "craft:10": { + "amount:8": "", + "recents:9": { + "0:10": { + "type:8": "itemStack", + "content:10": { + "amount:4": 1, + "item:8": "techreborn:quantum_chest" + } + } + }, + "inventory:1": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "539:10": { + "questID:3": 539, + "preRequisites:11": [ + 288 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:ender_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Ender Crafting", + "desc:8": "Place the Alternators around the Ender Crafter to speed it up slightly." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:ender_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "extendedcrafting:ender_alternator", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:ender_alternator", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "540:10": { + "questID:3": 540, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Insanium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "541:10": { + "questID:3": 541, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Superium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + } + } + } + } + }, + "542:10": { + "questID:3": 542, + "preRequisites:11": [ + 28 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:iron_ore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mining Levels and Ore Veins", + "desc:8": "Mining levels and example materials:\n§dYou can explore to get access to up to §rReinforced§d level, or progress through the chapters for the rest!\n\n§80 - Primitive (Wood)\n§71 - Basic (Stone)\n§f2 - Standard (Iron, Copper, Tin)\n§63 - Hardened (Bronze, Invar)\n§f4 - Reinforced (Steel, Manasteel, Thaumium)\n§b5 - Enhanced (Platinum, Osmium, Titanium)\n\n§rOre spawns in veins of several types of metal or gems:\n\n§5§7§5100% Coal \n§rY levels: 80-20\n\n§589% Coal \n10% Diamond\n1% Rock Crystal\n§rY levels: 20-0\n\n§765% Iron \n20% Nickel\n15% Gold\n§6§rY levels: 64-10\n\n§670% Copper\n25% Palladium\n5% Blaze\n§rY levels: §r60-20\n\n§785% Tin\n10% Iron\n5% Lead\n§rY levels: 80-40\n\n§845% Lead\n45% Silver\n10% Galena\n§rY levels: 35-5\n\n§c65% Redstone\n15% Ruby\n10% Cinnabar\n10% Destabilized Redstone\n§rY levels: 20-5\n\n§f40% Quartz\n40% Certus Quartz\n10% Black Quartz\n5% Charged Certus Quartz\n5% Magic Crystal Ore\n§7Y levels: 20-70\n\n§975% Lapis\n15% Sapphire\n10% Prismarine Ore\n§rY levels: 20-5\n\n§790% Bauxite\n5% Aluminum\n5% Rutile\n§rY levels: 20-0\n\n§240% Ender Ore \n30% Emerald\n20% Slime Ore\n10% Fossil\n§rY levels: 3 0-5\n\nAll Veins have a 1% chance to spawn Uninspected Materials.\n\n§rHold the Divining Rod in your off hand while you are mining to have the ore of that type to light up." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 21, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "6:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "7:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "8:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "randomthings:diviningrod", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "543:10": { + "questID:3": 543, + "preRequisites:11": [ + 468 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "chisel:energizedvoidstone", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "The Shadow Condenser", + "desc:8": "§cThis Multiblock will only function in the Beneath!\n\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:darkness-collector" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 4, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "6:10": { + "id:8": "chisel:energizedvoidstone", + "Count:3": 44, + "Damage:2": 2, + "OreDict:8": "" + }, + "7:10": { + "id:8": "libvulpes:advstructuremachine", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "enderio:block_alloy_endergy", + "Count:3": 5, + "Damage:2": 2, + "OreDict:8": "" + }, + "9:10": { + "id:8": "chisel:energizedvoidstone", + "Count:3": 4, + "Damage:2": 4, + "OreDict:8": "" + }, + "10:10": { + "id:8": "environmentaltech:structure_frame_5", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "" + }, + "11:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 5, + "tag:10": { + "FluidName:8": "ender_distillation", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "12:10": { + "id:8": "fossil:obsidian_spikes", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 4, + "Damage:2": 1028, + "OreDict:8": "" + } + } + } + } + }, + "544:10": { + "questID:3": 544, + "preRequisites:11": [ + 543 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:infused_ingot_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "20% Input Chance", + "desc:8": "Place above the Circuitry to the right." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:infused_ingot_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "545:10": { + "questID:3": 545, + "preRequisites:11": [ + 543 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "iceandfire:dragonsteel_ice_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fluid Upgrade", + "desc:8": "Place above the Circuitry to the left." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "iceandfire:dragonsteel_ice_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "546:10": { + "questID:3": 546, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:productingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Titanium Aluminide", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:productingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "advancedrocketry:productingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "547:10": { + "questID:3": 547, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "advancedrocketry:productingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Titanium Iridium Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "advancedrocketry:productingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "advancedrocketry:productingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "548:10": { + "questID:3": 548, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Vibrant Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "549:10": { + "questID:3": 549, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "End Steel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + } + } + } + }, + "550:10": { + "questID:3": 550, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Vivid Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "551:10": { + "questID:3": 551, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "plustic:osgloglasingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Osgloglas", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "plustic:osgloglasingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "plustic:osgloglasingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "552:10": { + "questID:3": 552, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "plustic:osmiridiumingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Osmiridium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "plustic:osmiridiumingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "plustic:osmiridiumingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "553:10": { + "questID:3": 553, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "plustic:mirioningot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mirion", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "plustic:mirioningot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "plustic:mirioningot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "554:10": { + "questID:3": 554, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 165, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Signalum", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 165, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 165, + "OreDict:8": "" + } + } + } + } + }, + "555:10": { + "questID:3": 555, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 166, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Lumium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 166, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 166, + "OreDict:8": "" + } + } + } + } + }, + "556:10": { + "questID:3": 556, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 167, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Enderium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 167, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 167, + "OreDict:8": "" + } + } + } + } + }, + "557:10": { + "questID:3": 557, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Starmetal", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "558:10": { + "questID:3": 558, + "preRequisites:11": [ + 60, + 609, + 560 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Ingot of Infinity", + "desc:8": "Like Wow." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "559:10": { + "questID:3": 559, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED NC-", + "desc:8": "Welcome to §eNuclearcraft: Overhaul§r! This edition of everyone\u0027s favorite nuclear physics mod is probably different from what you\u0027re expecting, since most packs run the §7Underhaul§r edition. We\u0027re cooler than that! However, it does mean that you may have difficulties finding some information. Just stay patient; these quests are designed to hopefully provide all you need to have fun doing §cincredibly dangerous nuclear work§r! §o(Editor\u0027s note: it is not actually \"incredibly dangerous.\" It is, however, moderately expensive. Please plan accordingly.)§r\n\nYou\u0027ll need some new ores to get started. §aUranium§a§r is an important ore, as it is the first step for (nearly) all fission fuels.\n\nWe have also recently invested in §6Technicolor§r technology. Could you tell?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ore", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:ore", + "Count:3": 16, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "560:10": { + "questID:3": 560, + "preRequisites:11": [ + 12, + 745, + 746, + 457 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Neutronium", + "desc:8": "Neutronium can be collected in two different ways, either by using an Orbital Miner on a space station, or going through Rockhounding and QMD. The second way is much harder, and is only good for bragging rights.\n" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "561:10": { + "questID:3": 561, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Blood Infused Iron", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "562:10": { + "questID:3": 562, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Inert Blood-Iron", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "563:10": { + "questID:3": 563, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Elementium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "564:10": { + "questID:3": 564, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Manasteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "565:10": { + "questID:3": 565, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Terrasteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "566:10": { + "questID:3": 566, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gaia Spirit", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + } + } + } + }, + "567:10": { + "questID:3": 567, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Kanthal", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "568:10": { + "questID:3": 568, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Orichalcum", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + } + } + } + }, + "569:10": { + "questID:3": 569, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Palladium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + } + } + } + } + }, + "570:10": { + "questID:3": 570, + "preRequisites:11": [ + 257 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:separator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Separator", + "desc:8": "Running §2Uranium§r through the Separator, then combining the results, will get you your first fuel." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:separator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:uranium", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:uranium", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "571:10": { + "questID:3": 571, + "preRequisites:11": [ + 543 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:metal_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "2x Output Upgrade", + "desc:8": "Place above the Circuitry in the front." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:metal_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "572:10": { + "questID:3": 572, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Adamantine", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "573:10": { + "questID:3": 573, + "preRequisites:11": [ + 571 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumadditions:mithrillium_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "3x Output Upgrade", + "desc:8": "Place above the Circuitry in the front." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumadditions:mithrillium_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "574:10": { + "questID:3": 574, + "preRequisites:11": [ + 573 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumadditions:adaminite_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "4x Output Upgrade", + "desc:8": "Place above the Circuitry in the front." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumadditions:adaminite_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "575:10": { + "questID:3": 575, + "preRequisites:11": [ + 574 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumadditions:mithminite_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "5x Output Upgrade", + "desc:8": "Place above the Circuitry in the front." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumadditions:mithminite_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "576:10": { + "questID:3": 576, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 72, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nethercotta", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 72, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 72, + "OreDict:8": "" + } + } + } + } + }, + "577:10": { + "questID:3": 577, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Crystalline Pink Slime", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "578:10": { + "questID:3": 578, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Stellar Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "579:10": { + "questID:3": 579, + "preRequisites:11": [ + 468, + 597 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Crystaltine", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + } + } + } + } + }, + "580:10": { + "questID:3": 580, + "preRequisites:11": [ + 468, + 543 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Midnight Ingot", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "581:10": { + "questID:3": 581, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_item_conduit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Conduits", + "desc:8": "Right click the base of the conduit to open the menu. Be sure to toggle always extract!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_item_conduit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_power_conduit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "enderio:item_item_conduit", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "enderio:item_power_conduit", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "enderio:item_liquid_conduit", + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "582:10": { + "questID:3": 582, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Duskstone", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + } + } + } + } + }, + "583:10": { + "questID:3": 583, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "iceandfire:dragonsteel_fire_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fire Dragonsteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "iceandfire:dragonsteel_fire_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "iceandfire:dragonsteel_fire_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "584:10": { + "questID:3": 584, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "iceandfire:dragonsteel_ice_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ice Dragonsteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "iceandfire:dragonsteel_ice_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "iceandfire:dragonsteel_ice_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "585:10": { + "questID:3": 585, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Palladium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + } + } + } + } + }, + "586:10": { + "questID:3": 586, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Adaptive", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "587:10": { + "questID:3": 587, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "HOP Graphite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + } + } + } + }, + "588:10": { + "questID:3": 588, + "preRequisites:11": [ + 543 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "environmentaltech:aethium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Speed Upgrade", + "desc:8": "Place above the Circuitry in the back." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "environmentaltech:aethium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "589:10": { + "questID:3": 589, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Melodic Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "590:10": { + "questID:3": 590, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Crystalline Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "591:10": { + "questID:3": 591, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Kanthal", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "592:10": { + "questID:3": 592, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Orichalcum", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + } + } + } + }, + "593:10": { + "questID:3": 593, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Palladium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:material_part", + "Count:3": 1, + "Damage:2": 30, + "OreDict:8": "" + } + } + } + } + }, + "594:10": { + "questID:3": 594, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Adaptive", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "595:10": { + "questID:3": 595, + "preRequisites:11": [ + 693 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanismgenerators:reactor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Reactor", + "desc:8": "This much less complicated Reactor can be used to generate large quantities of steam for burning in your turbine. Check the Wiki for how to assemble and run it." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanismgenerators:reactor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanismgenerators:reactor", + "Count:3": 3, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mekanismgenerators:reactorglass", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "mekanismgenerators:reactorglass", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "mekanismgenerators:reactor", + "Count:3": 57, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "6:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 4, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:hohlraum", + "Count:3": 1, + "tag:10": { + "mekData:10": { + "stored:10": { + "amount:3": 10, + "gasName:8": "fusionfuel" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "596:10": { + "questID:3": 596, + "preRequisites:11": [ + 468, + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 48, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Twilight", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 48, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 48, + "OreDict:8": "" + } + } + } + } + }, + "597:10": { + "questID:3": 597, + "preRequisites:11": [ + 580, + 794 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:table_basic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Bigger Tables", + "desc:8": "Shift-Right click on a Tinkers crafting Station with a Basic Catalyst to start the chain." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "1:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "2:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "3:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "598:10": { + "questID:3": 598, + "preRequisites:11": [ + 17 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Crystal Matrix Ingot", + "desc:8": "Have fun!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "599:10": { + "questID:3": 599, + "preRequisites:11": [ + 603 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Chemical Injection Chamber", + "desc:8": "Used for 4x ore." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "600:10": { + "questID:3": 600, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Adaptive", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:adaptive_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "601:10": { + "questID:3": 601, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Uranium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:metal", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "602:10": { + "questID:3": 602, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "HOP Graphite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + } + } + } + }, + "603:10": { + "questID:3": 603, + "preRequisites:11": [ + 604, + 503 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Chemical Infuser", + "desc:8": "Combine Chlorine and Hydrogen to produce the required Hydrogen Chloride." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "604:10": { + "questID:3": 604, + "preRequisites:11": [ + 43 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Electrolyzing Brine", + "desc:8": "This machine has a few uses." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "605:10": { + "questID:3": 605, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Glowstone", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "606:10": { + "questID:3": 606, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Refined Obsidian", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "607:10": { + "questID:3": 607, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 33, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Inferium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 33, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 33, + "OreDict:8": "" + } + } + } + } + }, + "608:10": { + "questID:3": 608, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Base Essence", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + } + } + } + } + }, + "609:10": { + "questID:3": 609, + "preRequisites:11": [ + 727, + 763, + 762, + 764, + 767, + 768, + 769, + 770, + 771, + 772 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Infinity Catalyst!", + "desc:8": "Forged in the heat of a laptop running Minecraft.\n\nYou\u0027ll need 22 of these to beat the pack!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "610:10": { + "questID:3": 610, + "preRequisites:11": [ + 55, + 12 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tier 6 Seed!", + "desc:8": "Finally!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "611:10": { + "questID:3": 611, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Soulium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + } + } + } + } + }, + "612:10": { + "questID:3": 612, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Supremium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + } + } + } + } + }, + "613:10": { + "questID:3": 613, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Lithium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "614:10": { + "questID:3": 614, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Boron", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "615:10": { + "questID:3": 615, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Magnesium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "616:10": { + "questID:3": 616, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Graphite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + } + } + } + }, + "617:10": { + "questID:3": 617, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Zirconium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:metal_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:metal_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "618:10": { + "questID:3": 618, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Beryllium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + } + } + } + }, + "619:10": { + "questID:3": 619, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 4-", + "desc:8": "This can accept any power, and is accessed through the top." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:storage_cell_16k", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "620:10": { + "questID:3": 620, + "preRequisites:11": [ + 558 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Guilty Mana Pool", + "desc:8": "Infinite mana!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "621:10": { + "questID:3": 621, + "preRequisites:11": [ + 558 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2wtlib:wut_creative", + "Count:3": 1, + "tag:10": { + "StoredTerminals:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wft:wft_creative", + "Count:1": 1, + "Damage:2": 0 + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct_creative", + "Count:1": 1, + "Damage:2": 0 + } + }, + "IsInRange:1": 0, + "SelectedTerminal:3": 0, + "internalCurrentPower:6": 1600000.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Creative Wireless Terminal", + "desc:8": "Infinite range!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2wtlib:wut_creative", + "Count:3": 1, + "tag:10": { + "StoredTerminals:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wft:wft_creative", + "Count:1": 1, + "Damage:2": 0 + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct_creative", + "Count:1": 1, + "Damage:2": 0 + } + }, + "IsInRange:1": 0, + "SelectedTerminal:3": 0, + "internalCurrentPower:6": 1600000.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "622:10": { + "questID:3": 622, + "preRequisites:11": [ + 12 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_creative", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Infinite Storage", + "desc:8": "Store any amount of items in a drawer with this upgrade." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_creative", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "623:10": { + "questID:3": 623, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hard Carbon", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "624:10": { + "questID:3": 624, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tough Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "625:10": { + "questID:3": 625, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Magnesium Diboride", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "626:10": { + "questID:3": 626, + "preRequisites:11": [ + 558 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "randomthings:spectrecoil_genesis", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Genesis Coil", + "desc:8": "Infinite power!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "randomthings:spectrecoil_genesis", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "627:10": { + "questID:3": 627, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ferroboron Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "628:10": { + "questID:3": 628, + "preRequisites:11": [ + 558 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "libvulpes:creativepowerbattery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Creative Plug", + "desc:8": "Infinite Power! For Advanced Rocketry multiblocks." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "libvulpes:creativepowerbattery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "629:10": { + "questID:3": 629, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Extreme Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "630:10": { + "questID:3": 630, + "preRequisites:11": [ + 621, + 634, + 620, + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:creative_storage_cell", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Creative Cell", + "desc:8": "§r§1C§bo§cn§1§dg§2§5r§3a§dt§au§9l§ea§ct§2i§1§3§4o§6n§8s§k§r§7§r§9! §r\n\nShare base screnshots with the world!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:creative_storage_cell", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "appliedenergistics2:cell_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "631:10": { + "questID:3": 631, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Zircaloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "632:10": { + "questID:3": 632, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Thermoconducting Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + } + } + } + }, + "633:10": { + "questID:3": 633, + "preRequisites:11": [ + 558 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumicenergistics:essentia_cell_creative", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Creative Essentia Cell", + "desc:8": "Infinite Essentia!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumicenergistics:essentia_cell_creative", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "634:10": { + "questID:3": 634, + "preRequisites:11": [ + 558 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 4 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Creative Tank", + "desc:8": "Infinite fluids!\n\n§bMight want to look at which items are metable..." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 4 + }, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "635:10": { + "questID:3": 635, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Silicon Carbide", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + } + } + } + }, + "636:10": { + "questID:3": 636, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:foursmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "FourS\u0027more QuadS\u0027mingot", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:foursmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:foursmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "637:10": { + "questID:3": 637, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "ScAl", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "638:10": { + "questID:3": 638, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "CuBe", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "639:10": { + "questID:3": 639, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "BAM", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "640:10": { + "questID:3": 640, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Stellite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "641:10": { + "questID:3": 641, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hastelloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + } + } + } + }, + "642:10": { + "questID:3": 642, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nimonic", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + } + } + } + }, + "643:10": { + "questID:3": 643, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "CuNiFe", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "644:10": { + "questID:3": 644, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nichrome", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + } + } + } + }, + "645:10": { + "questID:3": 645, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tinite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + } + } + } + }, + "646:10": { + "questID:3": 646, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hydronalium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + } + } + } + } + }, + "647:10": { + "questID:3": 647, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 43, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Widia", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 43, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 43, + "OreDict:8": "" + } + } + } + } + }, + "648:10": { + "questID:3": 648, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Vanasteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + } + } + } + }, + "649:10": { + "questID:3": 649, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 46, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tantaloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 46, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 46, + "OreDict:8": "" + } + } + } + } + }, + "650:10": { + "questID:3": 650, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "NiAl", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "651:10": { + "questID:3": 651, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mischmetal", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "652:10": { + "questID:3": 652, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Green Gold", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "653:10": { + "questID:3": 653, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rose Gold", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "654:10": { + "questID:3": 654, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Shibuichi", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + } + } + } + }, + "655:10": { + "questID:3": 655, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "White Gold", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "656:10": { + "questID:3": 656, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Inconel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech_b", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "657:10": { + "questID:3": 657, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Pewter", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + } + } + } + }, + "658:10": { + "questID:3": 658, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tombak", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + } + } + } + }, + "659:10": { + "questID:3": 659, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Shakudo", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "660:10": { + "questID:3": 660, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "NIB", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 31, + "OreDict:8": "" + } + } + } + } + }, + "661:10": { + "questID:3": 661, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 28, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Purple Gold", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 28, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 28, + "OreDict:8": "" + } + } + } + } + }, + "662:10": { + "questID:3": 662, + "preRequisites:11": [ + 570 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:pellet_uranium", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Uranium Fuels", + "desc:8": "With your §e§risotopes§r, you can now make either §a§2LEU-235§r or §2HEU-235§r. Both fuels have differences in the amount of heat they produce, the time they last, and more. These differences will matter when designing your reactor.\n\nBefore using them to fuel your reactor, however, they need to go through one last step of processing. There are three different fuel types you can make from either §2§rbase fuel§r: an §9Oxide§r, a §aNitride§r, or a §eZirconium Alloy§r. There is no \"best\" out of these three fuel types; each one has its own benefits over each other. You can check the differences in their stats in the tooltips each fuel has. When building your reactor, make sure to choose the best fuel for your purposes.\n\n§9Oxygen§r and §aNitrogen§r can be obtained through processing compressed air, which is detailed in the questlines above. These can also come from running Rockhounding gases through a transposer.\n\nThis Quest needs one of the three LEU-235 Fuels to complete." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fuel_uranium", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fuel_uranium", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "2:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 2, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fuel_uranium", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "663:10": { + "questID:3": 663, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "CoSm", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + } + } + } + }, + "664:10": { + "questID:3": 664, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Corten Steel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_deco", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + } + } + } + }, + "665:10": { + "questID:3": 665, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Silicon Carbide", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + } + } + } + }, + "666:10": { + "questID:3": 666, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:foursmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "FourS\u0027more QuadS\u0027mingot", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:foursmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:foursmore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "667:10": { + "questID:3": 667, + "preRequisites:11": [ + 662, + 797, + 232 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:solid_fission_cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Reactor Building 101: Fuel Cells", + "desc:8": "Collect these blocks to get started. (This will all take place inside of a reactor, so placing a floor of Reactor casing before you get started might be helpful.)\n\nTake a look at your chosen fuel. We are going to use §a§2L(ow) E(nriched) U(ranium)-235 Zirconium Alloy Fuel§r for this walkthrough.\n\nPay close attention to the §eBase heat gen: 150 H/t, §rand §cCriticality factor: 87 N/t§r.\n\nThis quest will teach you how to assemble §bModerator Lines§r, reach the §c§cCriticality Factor§r, and how §eHeat§r is caculated.\n\nFirst place a §6Fuel Cell§r, with a line of §bModerators§r (max length of 4) containing a sum §aFlux Factor§r equal to or higher than the §cCriticality Factor§r of your fuel, extending away from it. Then place a second §6Fuel Cell §rat the other end of the §bModerator Line§r. \n\nEach §6Fuel Cell§r will be able to keep the other activated, because of the §aFlux Factor§r meeting or excceding the §cCriticality Factor§r of the fuel in the opposite §6Cell§r.\n\nA §6Fuel Cell§r can also reach §cCriticality Factor§r by reflecting §aFlux Factor§r back onto itself by using a §9Reflector§r at the end of a §bModerator Line§r.\n\nEach §bModerator Line§r extending off of a §6Fuel Cell§r causes one instance of §eHeat§r. For example, in the above build we have two connections, one coming from each §6Fuel Cell§r, so we have a total of §e300 H/t§r." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fission_casing", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:solid_fission_cell", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:fission_reflector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "nuclearcraft:ingot_block", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "4:10": { + "id:8": "nuclearcraft:ingot_block", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "5:10": { + "id:8": "nuclearcraft:heavy_water_moderator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "betterbuilderswands:wanddiamond", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "668:10": { + "questID:3": 668, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "deepmoblearning:glitch_infused_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Glitch Infused", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "deepmoblearning:glitch_infused_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "deepmoblearning:glitch_infused_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "669:10": { + "questID:3": 669, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "ScAl", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "670:10": { + "questID:3": 670, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "CuBe", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "671:10": { + "questID:3": 671, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "BAM", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "672:10": { + "questID:3": 672, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Stellite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "673:10": { + "questID:3": 673, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hastelloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + } + } + } + }, + "674:10": { + "questID:3": 674, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nimonic", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + } + } + } + }, + "675:10": { + "questID:3": 675, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "CuNiFe", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "676:10": { + "questID:3": 676, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nichrome", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + } + } + } + }, + "677:10": { + "questID:3": 677, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tinite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + } + } + } + }, + "678:10": { + "questID:3": 678, + "preRequisites:11": [ + 17, + 598 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:block_resource", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fluid Upgrade", + "desc:8": "Replace the Crystaltine Block with a block of Crystal Matrix to halve the fluid input." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:block_resource", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "openblocks:tank", + "Count:3": 1, + "tag:10": { + "tank:10": { + "FluidName:8": "empoweredoil", + "Amount:3": 16000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "679:10": { + "questID:3": 679, + "preRequisites:11": [ + 570 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:fission_dust", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Material Decay", + "desc:8": "Nuclear materials are inherently unstable, and decay over time. Sometimes, the products you get from that decay are necessary for further engineering. The Decay Hastener allows you to decay §aUranium-238§r into §9Radium Dust§r, which is necessary to create §5Neutron Sources§r for your reactor." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:decay_hastener", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:fission_dust", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "680:10": { + "questID:3": 680, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Vanasteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + } + } + } + }, + "681:10": { + "questID:3": 681, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Chrome", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "682:10": { + "questID:3": 682, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Brass", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "683:10": { + "questID:3": 683, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Titanium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + } + } + } + }, + "684:10": { + "questID:3": 684, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tungsten", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + } + } + } + } + }, + "685:10": { + "questID:3": 685, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tungstensteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + } + } + } + } + }, + "686:10": { + "questID:3": 686, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Hot Tungstensteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + } + } + } + }, + "687:10": { + "questID:3": 687, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Advanced Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + } + } + } + }, + "688:10": { + "questID:3": 688, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Zinc", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + } + } + } + } + }, + "689:10": { + "questID:3": 689, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Iridium Alloy", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + } + } + } + }, + "690:10": { + "questID:3": 690, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 23, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Thorium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 23, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 23, + "OreDict:8": "" + } + } + } + } + }, + "691:10": { + "questID:3": 691, + "preRequisites:11": [ + 761 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Plutonium", + "desc:8": "Once you burn a few fuel cells in your Reactor, you will be able to reprocess the depleted fuel into some other materials, including§d Plutonium. §r\n\nThis gets ground down in a Manufactory, and can be smelted into an ingot." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "692:10": { + "questID:3": 692, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Vanasteel", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:alloy_items_tech", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + } + } + } + } + }, + "693:10": { + "questID:3": 693, + "preRequisites:11": [ + 468 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock3", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Creating the Fuel", + "desc:8": "These are used in the process of collecting Deuterium and Tritium to power your Reactor." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:filterupgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock3", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "694:10": { + "questID:3": 694, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Void Metal", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "695:10": { + "questID:3": 695, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED chap 3-", + "desc:8": "No Description" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "696:10": { + "questID:3": 696, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED CHAP 3-", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumcraft:ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "697:10": { + "questID:3": 697, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumadditions:mithrillium_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mithrillium", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumadditions:mithrillium_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumadditions:mithrillium_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "698:10": { + "questID:3": 698, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumadditions:mithminite_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mithminite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumadditions:mithminite_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumadditions:mithminite_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "699:10": { + "questID:3": 699, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumadditions:adaminite_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Adaminite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumadditions:adaminite_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumadditions:adaminite_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "700:10": { + "questID:3": 700, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:octine_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Octine", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:octine_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:octine_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "701:10": { + "questID:3": 701, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Syrmorite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thebetweenlands:items_misc", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + } + } + } + }, + "702:10": { + "questID:3": 702, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:fiery_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Fiery", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:fiery_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "twilightforest:fiery_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "703:10": { + "questID:3": 703, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:knightmetal_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Knightmetal", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:knightmetal_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "twilightforest:knightmetal_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "704:10": { + "questID:3": 704, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:ironwood_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ironwood", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:ironwood_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "twilightforest:ironwood_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "705:10": { + "questID:3": 705, + "preRequisites:11": [ + 761 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:fission_irradiator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Possible Reactor Design", + "desc:8": "This is the design shown when looking at the Fission Controller Multiblock Visualizer.\n\nRecommended to understand the basic concepts before attempting to build this or your own reactor.\n\nUse §2LEU 235 Nitride or Oxide§r in this Reactor." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:solid_fission_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:solid_fission_cell", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:fission_irradiator", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "nuclearcraft:fission_source", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "nuclearcraft:heavy_water_moderator", + "Count:3": 24, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "nuclearcraft:solid_fission_sink", + "Count:3": 4, + "Damage:2": 7, + "OreDict:8": "" + }, + "6:10": { + "id:8": "nuclearcraft:solid_fission_sink2", + "Count:3": 8, + "Damage:2": 4, + "OreDict:8": "" + }, + "7:10": { + "id:8": "nuclearcraft:fission_vent", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "nuclearcraft:fission_irradiator_port", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "9:10": { + "id:8": "nuclearcraft:fission_cell_port", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "10:10": { + "id:8": "nuclearcraft:fission_casing", + "Count:3": 96, + "Damage:2": 0, + "OreDict:8": "" + }, + "11:10": { + "id:8": "nuclearcraft:fission_glass", + "Count:3": 111, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 4, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "706:10": { + "questID:3": 706, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 136, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Mana Infused", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 136, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 136, + "OreDict:8": "" + } + } + } + } + }, + "707:10": { + "questID:3": 707, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodtinker:blood_bronze_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Blood Bronze", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodtinker:blood_bronze_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodtinker:blood_bronze_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "708:10": { + "questID:3": 708, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "packagedauto:encoder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Packaged Auto", + "desc:8": "Have you ever needed to automate a craft but it had more then 9 items? Thats where Packaged Auto comes in!\n\nPlace 2 of your new patterns into the §6§r§dRecipe Encoder§r, then copy a recipe in from JEI after switching modes to the correct one. Press save after adding up to §620 recipes§r to the pattern, but make sure they share a crafting mode.\n\nInsert one of the patterns into a §dPackager §ranywhere on your network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "packagedauto:encoder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "packagedauto:recipe_holder", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "packagedauto:packager", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "packagedauto:recipe_holder", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "709:10": { + "questID:3": 709, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Aluminum Brass", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "710:10": { + "questID:3": 710, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Pigiron", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "711:10": { + "questID:3": 711, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Cobalt", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "712:10": { + "questID:3": 712, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Knightslime", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + } + } + } + }, + "713:10": { + "questID:3": 713, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Ardite", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 1, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "tconstruct:ingots", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "714:10": { + "questID:3": 714, + "preRequisites:11": [ + 756 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thaumicenergistics:infusion_provider", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Automated Infusion", + "desc:8": "Infusion can use Essence in your network from this block." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumicenergistics:infusion_provider", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumicenergistics:essentia_terminal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thaumadditions:jar_mithrillium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "715:10": { + "questID:3": 715, + "preRequisites:11": [ + 716, + 761 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Doping", + "desc:8": "Your silicon wafers are not terribly useful in their current state. To change this, you must irradiate them in your reactor. This creates §9N-Type Silicon§r, which is a major component of §eBasic Processors§r. You will need quite a few of these, so make sure to streamline your processing!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:assembler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "716:10": { + "questID:3": 716, + "preRequisites:11": [ + 717, + 489 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Wafer Thin", + "desc:8": "The silicon boules are then run through the Manufactory in order to create §7Silicon Wafers§r; these are used for creating processors." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "717:10": { + "questID:3": 717, + "preRequisites:11": [ + 732 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Silicon Sticks", + "desc:8": "Silicon Boules can be made in a few different ways; the Nuclearcraft method is by melting down §7silicon§r, then putting that molten material into a Crystallizer." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:crystallizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "bouleSilicon" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:gem", + "Count:3": 16, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "718:10": { + "questID:3": 718, + "preRequisites:11": [ + 206 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sigil_divination", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Divination Sigil§r", + "desc:8": "To craft sigils, use the Ashes on the ground, then add the ingredients in the order shown.\n\nThe §eDivination Sigil§r is used to get more information on your Blood Altar/LP Network." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sigil_divination", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "719:10": { + "questID:3": 719, + "preRequisites:11": [ + 715, + 726, + 724, + 720 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:beamline", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "QMD 101: Particles", + "desc:8": "§bThe quests from this point on are not required to beat the pack. Neutronium can also be collected by the Orbital Miner.§r However, there are major§f bragging rights to make it this way.\n\n§9Quantum Minecraft Dynamics §fis a mod that brings §5High-Energy Particle Physics§f to Minecraft. While it may seem complicated at first glance, the mod becomes much more understandable when you understand the concepts behind it. \n\nBesides this in-game quest book guide, §9Quantum Minecraft Dynamics § also h§has its own §2Guide Book§r already present in the Akashic Tome (albeit incomplete). A more complete version can be found on the §Q§Q§2QMD Github Wiki.§f\n\nOf course, the §N§2Nuclearcraft Official Discord§r also has channels to discuss high-energy particle smashing! Make sure to check out §7#qmd§r for support.\n\nWithout further ado, let\u0027s get into the tutorial!\n\nIn short, the entire mod revolves around manipulating §5particles§f to do various things. §5Particles§f are created and accelerated in §3§1§9§b§3Linear Accelerators§f, accelerated further in §3Synchrotron Accelerators§f, then used for recipes in various §3multiblock machines§f, including:\n\n§3§f- Target Chamber\n- Collision Chamber\n- Neutral Exotic Containment\n- Decay Chamber\n\nThese recipes produce new §eitems§f or even new types of §5particles§f, which can then be used in further recipes. All §3Multiblocks§f above will be gone into detail in subsequent quests. Since the entire mod revolves around §5particles§f, it is only natural that we understand how they work before we do anything involving them.\n\nMuch like how regular §eitems§f are stored in stacks, §5particles§f in §9QMD §fare stored in §\"\"particle stacks\"§f. However, unlike item stacks, particle stacks cannot be held by the player. Instead, §pparticle stacks§f can only be manipulated in §9QMD\u0027s §3Multiblock Machines§f, many of which were mentioned above, and transported between said machines via§7 §8beamline pipes.§f Even within said §3Multiblocks§f, particles are transported via §7§8beam blocks§f.\n\nParticle stacks have 3 properties:\n§4- Amount (pu/t)\n§6- Energy (eV)\n§b- Focus§f\n\nAll recipes require particle stacks to have a minimum §bfocus§f and to be within a certain §6energy range (e.g 10-20 MeV)§f for the recipe to work (relevant values can be seen in §2JEI§f). §3\n§A§fAs most newly-created particles start out with no §6energy §fand barely any §bfocus§f, §3Accelerators§e §fare used in order to get particle stacks to the relevant § §6energy§f and §bfocus§f§f. How §3Accelerators§f do this, and how they are constructed will be covered in the next quest. \n\nBesides being used as a requirement in some recipes, §bfocus §falso determines how far a given particle stack will travel. This is because a particle stack loses a certain amount of §bfocus§f per §8beamline pipe/beam block§f travelled (the amount of §bfocus§f lost per block is the attenuation rate of the relevant block, seen in their tooltip). A particle stack with a §a§bfocus§f less than or equal to zero will not travel any further. \n\n§fThe §4amount§f of §d§5particles§e§f in the particle stack determines the rate of §eitem §fproduction and §4amount§f of new §5particles §e§fproduced from said recipe (can be seen and calculated from §2JEI§f information). Unlike §6energy §for §bfocus§f, §3Accelerators§f cannot directly affect a particle stack\u0027s §4amount (pu/t)§f. A particle stack\u0027s §4amount§f is solely dependent on the source of the §5particle§f, as will be seen in the next quest and subsequent quests." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:beamline", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:beamline", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "720:10": { + "questID:3": 720, + "preRequisites:11": [ + 459 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:ingot_alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Stainless Steel", + "desc:8": "A necessary metal for rocketry and particle physics." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:ingot_alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:ingot_alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "721:10": { + "questID:3": 721, + "preRequisites:11": [ + 761 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "reactorbuilder:reactorbuilder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Automatic Construction", + "desc:8": "The §eReactor Builder§r allows you to automatically construct reactors from .json files. You can get these files from the §9Nuclearcraft Discord§r or from the §7Reactor Planner§r. Simply import a file, select your design, and feed the builder power and an inventory full of the right items and it will construct you your very own Fission Reactor!!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "reactorbuilder:reactorbuilder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 4, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "722:10": { + "questID:3": 722, + "preRequisites:11": [ + 456 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:ore_leacher", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Ore Leacher", + "desc:8": "This machine can be used in place of a Rockhounding setup to obtain a few rare elements for further engineering." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:ore_leacher", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "nitric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "sulfuric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "hydrochloric_acid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "723:10": { + "questID:3": 723, + "preRequisites:11": [ + 456 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Arsenic", + "desc:8": "Arsenic is a toxic element used in a select few alloys. Get some dust from §7Andesite§r!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:stone", + "Count:3": 64, + "Damage:2": 5, + "OreDict:8": "" + } + } + } + } + }, + "724:10": { + "questID:3": 724, + "preRequisites:11": [ + 723 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:gem", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Boron Arsenide", + "desc:8": "You\u0027ll need some chemical engineering to get your hands on these crystals: §7Molten Boron§r needs to be combined with §aSublimated Arsenic§r in a Chemical Reactor and then piped into a Crystallizer. Make sure you have enough machines!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:gem", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:chemical_reactor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "725:10": { + "questID:3": 725, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "-REMOVED NC-", + "desc:8": "§2Thermoconducting Alloy§r is used to make the powerful coolers necessary to handle the high heats produced by a particle accelerator. Make sure you can make a bunch of these!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:part", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "726:10": { + "questID:3": 726, + "preRequisites:11": [ + 722, + 181 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Niobium", + "desc:8": "Niobium is a trace element that, while useful, you won\u0027t need in massive quantities. Always make sure to have some on hand, though!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "rockhounding_chemistry:chemical_dusts", + "Count:3": 2, + "Damage:2": 37, + "OreDict:8": "" + } + } + } + } + }, + "727:10": { + "questID:3": 727, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Glass Shard", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "728:10": { + "questID:3": 728, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:chemical_dust", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "-REMOVED Hafnium-", + "desc:8": "There are quite a few ways to get this hefty element: the Ore Leacher, the Chemical Extractor, or even through some exotic processes like §9§afusion§r! You will need to automate this some day, so why not set that up now?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:dust", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:chemical_dust", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + } + } + } + }, + "729:10": { + "questID:3": 729, + "preRequisites:11": [ + 730 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:centrifuge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Trace Gases", + "desc:8": "Compressed air can be centrifuged into its pure ocmposite gases, notably §9Oxygen§r and §aNitrogen§r for fuel processing. The other gases have their own uses, especially as extremely cold coolants. \n\nBe sure to save large quantities of the rare gases!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:centrifuge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "730:10": { + "questID:3": 730, + "preRequisites:11": [ + 257 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:atmosphere_collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Compressed Air", + "desc:8": "This chain or the Rockhounding method of obtaining §9Oxygen §rand §e§aNitrogen§r will be used to create §2Nuclear Fuels§r." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:atmosphere_collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:atmosphere_collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "731:10": { + "questID:3": 731, + "preRequisites:11": [ + 163, + 729 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:supercooler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Chill Out", + "desc:8": "Gases such as §cHelium§r or §dArgon§r can be supercooled into fluids to make extremely efficient coolants for your particle accelerators. Many high-tier components of these multiblocks have a maximum temperature they can run at, so better coolants may become required." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:supercooler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "732:10": { + "questID:3": 732, + "preRequisites:11": [ + 257 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:manufactory", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Grind, Refine, Manufacture", + "desc:8": "The Manufactory is an incredibly useful general-purpose machine. At its most basic, it functions as a crusher; however, it has many uses past that." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:manufactory", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "733:10": { + "questID:3": 733, + "preRequisites:11": [ + 775 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:target_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "QMD 104: The Target Chamber", + "desc:8": "Now that you have a fully functional §3Linear Accelerator§f, it\u0027s time to §9§rput those §5particles§f to use§r! \n\nThe §aTarget Chamber§r allows you to smash your high-velocity particles into §eitems§f to obtain new §eitems§f, and even, in some cases, new §5particles§f! It\u0027s the primary §3multiblock§f in which recipes are processed, although more will be unlocked later on.\n\nTo construct a §aTarget Chamber§f, construct a cube of §8§7Particle Chamber Casings§f or §7Glass§f. They can be any odd size, from 3 to 9 across. There must also be a §7Target Chamber Controller §fand a §7Particle Chamber Energy Port§f. In the centre, place a §7Particle Chamber Block§f and connect it to any one of the four sides with §7Particle Chamber Beam Blocks§f. Where the §7Beam Blocks§f meet the casing, place a §7Particle Chamber Beam Port §fin input mode. This is where the §5particle§f beam from your §3Linear Accelerator§f, and subsequently any setup, will be input into the §aTarget Chamber§f. \n\nIf the recipe outputs §d§5particles§f you would like to use in other recipes, simply extend 1-3 more §7Beam Block§f lines from 1-3 of the remaining sides of the §7Particle Chamber Block§f to the casing, and place §8§7Particle Chamber Beam Ports§f in output mode where they meet the casing. Neutral §5particles§f will come out of the side opposite of the input, while charged §5particles§f will come out of the remaining two sides (the direction can be changed by shift right clicking the relevant §7Particle Chamber Beam Port§f with the multitool). A screenshot of a §aTarget Chamber§f can be found on the §2QMD§f §2Github Wiki§f.\n\n§cThe particle chamber must be connected directly to the linear accelerator via a beamline pipe, otherwise particles will not be transported from the linear accelerator to the particle chamber!\n\n§fIf your §aTarget Chamber§f has been supplied with §eitems§f and §5particles§f within the recipe\u0027s §6energy range§f exceeding the recipe\u0027s required §bfocus§f, as well as power, the §aTarget Chamber§f will start processing the recipe, producing new §eitems§f and §5particles§f (if any) which are output as particle stacks from the output §7Particle Chamber Beam Ports.\n\n§fThe time taken for a recipe to process, in ticks, is given as the §4amount§f of §5particles§f required for the recipe (e.g 120kpu) divided by the §4amount§f of §5particles§f in the particle stack (e.g 100 pu/t). In this case, the recipe will take 60s to process.\n\nThe resulting §5particle§f§5s§e §fand their particle stack properties can be seen in the target chamber§f GUI. More details on how the resulting particle stack properties are calculated can be found in the \"Target Chamber Maths\" quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:target_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:particle_chamber_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:particle_chamber_beam", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "qmd:particle_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "qmd:particle_chamber_beam_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "qmd:particle_chamber_energy_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "734:10": { + "questID:3": 734, + "preRequisites:11": [ + 733 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "QMD 105: Putting it all together (again)", + "desc:8": "You\u0027ve finally done it: the laws of physics §c§rbend§r* before your engineering might, as you hit rocks together so hard they make §6§rgold§r. Now, you need to put those skills to the test: §d§eP-Type Doped Silicon §fis your aim. \n\nIf you\u0027ve followed the tutorial, you should now have a §3Linear Accelerator§f capable of accelerating§5 Boron Ions§f to between §6600KeV and 1MeV§f, as well as a §bfocus§f greater than §b2§f. This §3Linear Accelerator§f should be directly connected via §8Beamline Pipes§f to a §aTarget Chamber§f containing §eSilicon Wafers§f.\n\nBefore switching on your §3Linear Accelerator§f, first:\n\n1. Make sure both your §3Linear Accelerator §fand §aTarget Chamber§f are powered with sufficient power.\n\n2. Make sure that the total §9cooling§f exceeds the total §cheating§f in your §3Linear Accelerator§f.\n\n3. Make sure that your §3Linear Accelerator§f has been topped up with the appropiate §1coolant§f and has been cooled below the maximum temperature as shown in the §3Accelerator§f GUI, and that the supercooler cooling loop has been set up.\n\nNow, simply place §eDiborane Canisters§f in the Ion Source§f and give the Linear Accelerator Controller§f a §4redstone signal§f, and the §aTarget Chamber§f should produce §eP-Type Doped Silicon§f.\n\nCongratulations! You\u0027ve built your first complete §9QMD§f setup and manufactured your first §9QMD§f item!\n\nDue to the vast differences in §5particles §fand §5particle properties§f§f required in different recipes, you\u0027ll probably have to construct an entirely new setup for each new §eitem§f you make. However, the basic principles remain the same: accelerate §5particles§f until their §6energy§f and §bfocus§f match that required by the recipe. \n\nAll the best on your §9QMD§f journey!\n\n*Disclaimer: The laws of physics don\u0027t actually bend before your engineering might, as you\u0027re using the laws of physics to their fullest extent to accelerate §5particles§f to immense speeds. Apologies in advance for ruining your moment of victory." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:helm_hev", + "Count:3": 1, + "tag:10": { + "energyStorage:10": { + "energy:4": 0, + "capacity:4": 1000000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:chest_hev", + "Count:3": 1, + "tag:10": { + "energyStorage:10": { + "energy:4": 0, + "capacity:4": 1000000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:legs_hev", + "Count:3": 1, + "tag:10": { + "energyStorage:10": { + "energy:4": 0, + "capacity:4": 1000000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:boots_hev", + "Count:3": 1, + "tag:10": { + "energyStorage:10": { + "energy:4": 0, + "capacity:4": 1000000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + }, + "1:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "qmd:part", + "Count:3": 2, + "Damage:2": 9, + "OreDict:8": "" + } + } + } + } + }, + "735:10": { + "questID:3": 735, + "preRequisites:11": [ + 776 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:waste_spallation", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Blasting Metals Harder", + "desc:8": "Blasting metals in the §aTarget Chamber§f with §5particles§f at even higher §6energies§f, in the §61GeV-20GeV§f range, produces §eSpallation Waste§f. These piles of metal have undergone fusion, allowing you to turn basic metals such as §eLead§r into much more interesting metals like§§ §eIridium§r or §eHafnium§r!\n\nThese collisions also produce §5exotic new particles§f, which will be very useful for producing exotic fluids like §6antimatter§f or §6muonium§f later." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:waste_spallation", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:smore", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "736:10": { + "questID:3": 736, + "preRequisites:11": [ + 761 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:turbine_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Turn On the Lights", + "desc:8": "Your reactor just keeps making all this §7High-Pressure Steam§r! If only there was some convenient multiblock structure you could use to process that into §eslightly ludicrous amounts of power§r!\n\nEnter the §9Turbine§r: steam goes in, power comes out the coils. It\u0027s all quite simple; however, be warned: if you put §c§rmore steam in§r than the turbine can handle, it will spin too fast and §cexplode§r! Avoid this by using the §aReactor Planner§r to make sure it can handle §7more mB/t§r than your reactors produce. Did I mention you can make §9one big turbine§r and run the outputs of all of your reactors into it?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:turbine_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "thermaldynamics:duct_16", + "Count:3": 8, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "737:10": { + "questID:3": 737, + "preRequisites:11": [ + 740 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:lepton_cannon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Challenge: Black Mesa\u0027s Finest", + "desc:8": "Particle physics isn\u0027t §oall§r big, dangerous structures for making things go fast and then explode; it\u0027s also big, dangerous §cguns§r for making things go fast and then explode!\n\nThe §eLepton Cannon§r is an extremely advanced particle weapon that uses various leptons such as §6Tauonium§r as ammunition to annihilate those pesky mobs trying to steal your trade secrets! Refinement of this §6material§r will require some pretty advanced §3multiblocks§f; check §2JEI§f to see what steps of particle collision you need to create the §5Tau§o§r and §5Anti-Tau§r particles, before putting them into a §7Neutral Containment Unit§r for storage in cells!\n\n§cTauonium requires the highest collision energy in the mod; you will need to accelerate protons to 150GeV to make Tauonium via Higgs decay. Good luck.§f\n\nGive em\u0027 hell, Gordon." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:lepton_cannon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "tag:10": { + "storage:10": { + "amount:3": 200 + } + }, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "738:10": { + "questID:3": 738, + "preRequisites:11": [ + 740 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:gluon_gun", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Challenge: Bustin\u0027", + "desc:8": "Contrary to the title of this quest, the §eGluon Gun§r is not actually a weapon! This handheld cannon is an extremely powerful §cmining tool§r, capable of digging massive tunnels in seconds. Of course, this comes at a cost: it runs off of §5Glueballs§r! Don\u0027t let the ordinary name fool you; you will need §7numerous particle collision steps§r in order to make this type of matter.\n\n§cGlueballs require the second highest collision energy in the mod; you will need to accelerate protons and antiprotons to 100GeV to make glueballs. Good luck." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:gluon_gun", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "tag:10": { + "storage:10": { + "amount:3": 6000 + } + }, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "739:10": { + "questID:3": 739, + "preRequisites:11": [ + 741 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:collision_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Small Hadron Collider", + "desc:8": "The §aCollision Chamber§r allows you to take two particle beams and §csmash them together§r! This has two primary functions. The first is to construct §5larger matter/antimatter particles§f from more basic particles like §5protons, antiprotons and deuterons.§f This requires particle beams with very low, but not zero, §6energy§f to converge in the §aCollision Chamber§f. The second is to smash two §6extremely high energy§f particle beams to produce §5new, exotic particles§f! Both come with their own challenges, as will be detailed later.\n\nTo construct a §aCollision Chamber, §fconstruct a 17 long cuboid of §7Particle Chamber Casings or Glass.§f The ends must be squares of odd size from 3 to 15 across, however there is no point in constructing one larger than 11x11. There must also be a §7Collision Chamber Controller§f and a §7Particle Chamber Energy Port§f in the casing. Down the middle of the long axis, there must be a line of §7Particle Chamber blocks.§f \n\nAt each end, there must be a §7Particle Chamber Beam Port in input mode.§f 2 blocks away from each square end, on the horizontals, there must be§7 Particle Chamber Beam Blocks§f connecting the Particle Chamber axis to §7Particle Chamber Beam Ports in output mode.§f The two input §5particles§f are inserted through the opposite input §7Beam Ports§f, while output §5particles§f are outputted through the four output §7Beam Ports§f. The port which they are output from can be changed by shift right clicking the §7Beam Port§f with a multitool - this switches the output slot of the §7Beam Port§f with the one clockwise of it, viewed from the top. A screenshot of a §aCollision Chamber§f can be found on the §2QMD Github Wiki.§f \n\nIn order for a recipe to work, both input particle beams must have a §bfocus§f above 5 and §6energy§f above that shown in §2JEI§f. The sum of the input particle beam\u0027s §6energies§f must be within the §6energy range§f stated in §2JEI§f. If these requirements are met and the §aCollision Chamber§f is powered, it will start processing the recipe, producing new §5particles§f as particle stacks which are output through the four output §7Beam Ports§f. \n\nThe resulting §5particle§f§5s§e §fand their particle stack properties can be seen in the collision chamber GUI. More details on how the resulting particle stack properties are calculated can be found on the §2QMD Github Wiki.§f\n\nMuch like other §aParticle Chambers§f, §aCollision Chambers§f can also have detectors placed in them, increasing their efficiency. A higher efficiency increases the §4amount§f of §5particles§f in the resulting particle stacks, although the §4amount§f may never be higher than that stated in §2JEI§f. Detectors are primarily useful for §aCollision Chamber§f recipes with very low cross-sections, especially the §6high-energy§f collisions. More details on the §4amount§f calculation for output particle stacks and efficiency can be found on the §2QMD Github Wiki§f.\n\nThe remaining portion of this quest will cover common challenges in completing §aCollision Chamber§f recipes.\n\nThe main challenge in the first function of the §aCollision Chamber§f, which is combining beams of §5particles§f at very low non-zero §6energies§f, is decelerating the §5particles§f to a very low §6non-zero energy§f. Even with §3Decelerator §4redstone control§f, the lowest §6non-zero energy§f (i.e. 1/15th of the maximum §6particle beam energy§f the §3Decelerator§f may decelerate as determined by the formula E\u003dEf(1-Sr/15)) may already exceed the limit set in §2JEI§f (typically 10MeV). \n\nOne way to circumvent this is to ensure that the energy of the §5particle§f producing the §5antiparticle§f in the §aTarget Chamber§f is as close to the §6minimum energy§f as possible. This ensures that the §5antiparticles§f produced are of §6low energy§f, thus a weak §3Decelerator§f whose lowest §6non-zero energy§f is below the limit set in §2JEI§f may be used.\n\nAnother way to solve this problem is to use a §3Linear Accelerator§f to accelerate a particle beam which has had its §6energy§f reduced to 0eV by a §3Decelerator§f. §3Linear Accelerators§f are still able to accelerate 0eV particle beams, and offer much finer control over the §6energy§f of an output §5particle§f than §3Synchrotrons§f or §3Decelerators§f, making them perfect for accelerating particle beams to the §6low non-zero energies§f required in such recipes.\n\nThe main challenge in the second function of the §aCollision Chamber§f, which is to smash two §6extremely high energy§f particle beams together, is building a §3Synchrotron§f capable of accelerating §5particles§f to those §6high energies§f. §aCollision Chambers§f demand §6extremely high energies§f in the range of §6100GeV-150GeV§f. As it is a lot easier to accelerate §5heavy particles§f rather than §5light particles§f, due to them being affected by different factors, it is recommended that you pick the recipes involving §5protons§f or §5antiprotons§f, and avoid the recipe involving §5electrons§f and §5positrons§f. Even then, it\u0027s highly recommended that you read up on the formulas governing the output§6 energy§f of an output beam from a §3Synchrotron§f, and use those to calculate a §3Synchrotron§f powerful enough for these recipes.\n\nGood luck completing the §aCollision Chamber§f recipes!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:collision_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "740:10": { + "questID:3": 740, + "preRequisites:11": [ + 783, + 739 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Neutral Exotic Containment", + "desc:8": "The §7Neutral Containment Chamber§r creates §6neutrally charged exotic matter§f from one or more particle beams, and stores such §6matter§f safely in itself. These fluids can also be transferred to special §econtainment cells§f. These filled §econtainment cells§f can then be used in various gadgets and recipes.\n\nTo construct a §7Neutral Containment Chamber§r§f, construct a 7x7x7 or 9x9x9 cube of §7Containment Casing or Glass.§f In the centre of each side face, a §7Containment Beam Port or Containment Laser§f must be placed, and 2 of each must be placed opposite of each other in a §7Containment Chamber§f. There must be a §7Containment Coolant Vent§f in input and output modes as well as a §7Containment Energy Port§f. Inside, on the top and bottom, there must be a ring of §7Containment Coils§f with the sides of the ring one block away from the walls of the Chamber. A screenshot of a §7Neutral Containment Chamber§r§f§f can be found on the §2QMD Github Wiki§f.\n\nThe §7Neutral Containment Chamber§f must be constantly supplied with power and §1active coolant§f that is capable of §9cooling§f it below the maximum operating temperature, much like an §3Accelerator§f. \n\nMake sure the needs of the§7 Neutral Containment Chamber§f are constantly met! If any of the below happen while it contains §6exotic fluid§f:\n\n- Runs out of power\n- Temperature rises above the maximum operating temperature\n- The Chamber is broken\n\nThe Chamber will fail, leading to §4catastrophic§f results!\n\nIn order to create §6exotic matter§f, the required particle beams as stated in §2JEI§f must have an §6energy§f of §60eV§f (with the exception of §5glueballs§f, which can have any §6energy§f) and a §bfocus§f greater than that listed in §2JEI§f. If the particle beams required meet the criteria, §6exotic matter§f is created. The number of ticks it takes to create 1mb of §6exotic matter§f is the §4amount§f of §5particles§f required for the recipe, divided by the §4amount§f of §5particles§f in the particle stack. If there are two beams, the time taken will be the larger of the two beams.\n\nTo fill a §ecell§f with §6exotic matter§f, simply pipe an empty §ecell§f into the chamber via the controller or a §7Containment Item Port§f, and the chamber will automatically fill the cell with the §6exotic matter§f it is currently holding." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:neutral_containment_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:containment_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:containment_beam_port", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "qmd:containment_vent", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "qmd:containment_energy_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "qmd:containment_coil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "qmd:containment_laser", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "741:10": { + "questID:3": 741, + "preRequisites:11": [ + 742 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "BSCCO", + "desc:8": "§eBSCCO §fis an advanced §6high-temperature superconductor alloy§f. It\u0027s used in wire form to create numerous incredibly advanced machines; its most notable use, of course, is in §eElite Processors§r." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:chemical_dust", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:semiconductor", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "qmd:dust", + "Count:3": 8, + "Damage:2": 14, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:dust", + "Count:3": 16, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:fission_dust", + "Count:3": 24, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "qmd:dust", + "Count:3": 32, + "Damage:2": 13, + "OreDict:8": "" + } + } + } + } + }, + "742:10": { + "questID:3": 742, + "preRequisites:11": [ + 778, + 781 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Strontium", + "desc:8": "§eStrontium§f is an important material only obtainable via §9QMD§f. It\u0027s required to manufacture §eBSCCO§f, a superconductor material required for further progression in the mod.\n\nThere are two main ways of making §eStrontium§f. The first way is obtaining §eStrontium§f from §eLight Fission Waste§f. While this method is feasible for obtaining trace amounts of §eStrontium§f, it is slow and takes a long time to obtain mass amounts of §eStrontium§f.\n\nThe second, much faster way is striking §eZirconium§r with §5Neutrons§f in a §aTarget Chamber§f. While this method is more challenging than the first method, as a §5neutron§f of the right §6energy§f must be procured from a seperate §aTarget Chamber§f recipe, this method is much more feasible for obtaining §eStrontium§f, especially if you\u0027re planning to use §eElite Processors §fto make §eEV Capacitors§f.\n\nHint: One of the §eitems§f you need to manufacture for later use produces §5neutrons§f as a byproduct. If only you could find a way to make it produce a §5neutron§f of the correct §6energy§f..." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:ingot", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + } + } + } + }, + "743:10": { + "questID:3": 743, + "preRequisites:11": [ + 740, + 750 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "tag:10": { + "storage:10": { + "amount:3": 200 + } + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Exotic Smoothie", + "desc:8": "§6Muonium§f is made from combining §5Muons§f and §5Anti-Muons§f in a §7Neutral Containment Chamber§f. The simplest way to make §6muonium§f has already been detailed in a questline, but if you\u0027re feeling daring, you can attempt to make §6muonium§f from the other methods involving §aCollision Chamber§f recipes as well. \n\nYou\u0027ll need quite a fair bit of this to make §eNeutronic Matrixes§f for §8Neutronium, §fso make sure to fully automate it!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "tag:10": { + "storage:10": { + "amount:3": 200 + } + }, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "744:10": { + "questID:3": 744, + "preRequisites:11": [ + 740, + 739 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "tag:10": { + "storage:10": { + "amount:3": 600 + } + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Heavy Explosives", + "desc:8": "§6Anti-Helium 3§f is made by combining §5Anti-Helion§f and §5Positrons §fin a §7Neutral Containment Chamber§f. \n\nWhile there are several methods of obtaining §5Positrons§f, the simplest is using a §eSodium-22 Source§f in a §3Linear Accelerator§f. §3Linear Accelerators§f can accelerate §5particles§f at §60eV§f, thus you only need to raise the §bfocus§f of the §5positron§f to be greater than §b2§f.\n\n§5Anti-Helion§f is obtained via collision of §5Anti-Protons and Anti-Deuterons§f in a §aCollision Chamber§f. The tricky part is the §6energy§f - the recipe requires both particle beams to have an §6energy above 700MeV§f and for their §6combined energy§f to be less than §610MeV§f. However, there are a few ways of solving this problem, which are detailed in the \"Small Hadron Collider\" quest. It\u0027s up to you how you want to obtain §5anti-protons and anti-deuterons§f - §2JEI§f showcases multiple ways of making both.\n\nAs you only need one §eincoherent matrix§f to get all the §5Filons§f you need, you won\u0027t need much §6Anti-Helium 3§f, but constructing the entire setup will still be a challenge!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "qmd:cell", + "Count:3": 1, + "tag:10": { + "storage:10": { + "amount:3": 600 + } + }, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "745:10": { + "questID:3": 745, + "preRequisites:11": [ + 752, + 744 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:incoherent", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Eye Pain", + "desc:8": "The §eIncoherent Matrix§f is used to produce §5Filons§f in an §8Ion Source§f. As it has no durability, you\u0027ll only need one of these to produce as many §5Filons§f as you need." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:matrix_deposition_+", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:incoherent", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "746:10": { + "questID:3": 746, + "preRequisites:11": [ + 752, + 743 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutronic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Nihilism", + "desc:8": "The §eNeutronic Matrix§f is used as the base material in a §aTarget Chamber§f which the §5Filon§f collides with to produce §9§8Neutronium§f. You\u0027ll need one of these for each §8Neutronium Ingot§f you want to produce." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:matrix_deposition_-", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:neutronic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "747:10": { + "questID:3": 747, + "preRequisites:11": [ + 735 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:florb", + "Count:3": 1, + "tag:10": { + "Fluid:8": "tauonium" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "A Slice of Particle Physics", + "desc:8": "This quest chain will be a useful walkthrough of one method of obtaining §6Muonium§r. Hopefully, it will get you acquainted with the methods used when turning particles into other particles to produce a particular end product.\n\nTo start the process, you need to strike a §emetal§f in a §aTarget Chamber§f to produce §eSpallation Waste§r at a high enough §6energy§f to produce §5Pions§r. This will produce both §cpositive§r and §9negative§r pions; we will need both for our §9§rend product§r." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "748:10": { + "questID:3": 748, + "preRequisites:11": [ + 776 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:decay_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Sands of Time", + "desc:8": "The §aDecay Chamber§r allows you to decompose the §5particles§f in a beam into their §5constituent particles§r. This can be very important for turning huge particles like §5Alpha Particles§r into smaller components for refining.\n\n§aDecay Chambers§f are constructed exactly like §aTarget Chambers§f, only with a §7Decay Chamber Controller§f instead. A screenshot of a §aDecay Chamber§r can be found on the §2QMD Github Wiki.§f \n\nThe §aDecay Chamber§f also requires power and a §5particle beam§f. The resulting §5particles§f and their particle stack properties can be seen in the decay chamber GUI, and are calculated the same way as §aTarget Chambers§f as detailed in the \"Target Chamber Maths\" quest.\n\n§aDecay Chambers§f can also have detectors installed in them to increase efficiency. Although efficiency won\u0027t increase the speed of the recipe in §aDecay Chambers§f, it will increase the §4amount§f of §5particles§f in the resulting particle stacks, although the §4amount§f may never be higher than that stated in §2JEI§f. More details on the §4amount§f calculation for output particle stacks can be found in the \"Target Chamber Maths\" quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:decay_chamber_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "749:10": { + "questID:3": 749, + "preRequisites:11": [ + 748, + 747 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:florb", + "Count:3": 1, + "tag:10": { + "Fluid:8": "antihelium3" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Rotten", + "desc:8": "These §5Pions§r are not too useful right now; we want to run both the §cpositive§r and §9negative§r streams through §aDecay Chambers§r in order to get the byproducts that we really need: §5Muons§r and §5Anti-Muons§r." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "750:10": { + "questID:3": 750, + "preRequisites:11": [ + 740, + 749 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:florb", + "Count:3": 1, + "tag:10": { + "Fluid:8": "muonium" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Muon Party", + "desc:8": "Now that you have both §5Muon§r and §5Anti-Muon§r particle beams, you will want to decelerate them to \u003c1keV in a §3Decelerator§f, then converge both beams in a §7Neutral Containment Chamber§f. With enough power, these beams will condense into §6Muonium§r!" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "751:10": { + "questID:3": 751, + "preRequisites:11": [ + 468 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:fusion_coil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Fusion Coils", + "desc:8": "These are an important late-game material for multiblocks!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "techreborn:fusion_coil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "techreborn:fusion_coil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "752:10": { + "questID:3": 752, + "preRequisites:11": [ + 740 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:discharge_lamp", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Low-Gravity Deposition Chamber", + "desc:8": "The §7Low-Gravity Deposition Chamber§f is used to deposit §6exotic matter§f onto specially-prepared §eDeposition Matrices§r. Due to its incredibly sensitive nature, it can §9only be built in space§r. This includes the moon or space stations." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:containment_casing", + "Count:3": 237, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:containment_glass", + "Count:3": 68, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "techreborn:fusion_coil", + "Count:3": 60, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "contenttweaker:plating_elite", + "Count:3": 40, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "contenttweaker:scal_scaffolding", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "qmd:discharge_lamp", + "Count:3": 29, + "Damage:2": 2, + "OreDict:8": "" + }, + "7:10": { + "id:8": "contenttweaker:sheetmetal_nimonic", + "Count:3": 24, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 15, + "Damage:2": 5, + "OreDict:8": "" + }, + "9:10": { + "id:8": "rockhounding_chemistry:alloy_blocks_deco", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "10:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:lowgravitydepositionchamber" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "11:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "itemInputHatch" + }, + "12:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "itemOutputHatch" + }, + "13:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "14:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 5, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "753:10": { + "questID:3": 753, + "preRequisites:11": [ + 397 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockchalice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Better Infusion", + "desc:8": "Filling one of these with Starlight and placing it near the Starlight Infuser will automagically fill any places it was consumed during a craft.\n\nYou can also create Sky Stone by placing a second one filled with Tectonic Petrotheum near by!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockchalice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "astralsorcery:blockchalice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "754:10": { + "questID:3": 754, + "preRequisites:11": [ + 516 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "buildinggadgets:buildingtool", + "Count:3": 1, + "tag:10": { + "blockstate:10": { + "Name:8": "minecraft:air" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Gadgets!", + "desc:8": "Use these when you have a Dire need to make a lot happen in a little bit of time!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "buildinggadgets:buildingtool", + "Count:3": 1, + "tag:10": { + "blockstate:10": { + "Name:8": "minecraft:air" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "buildinggadgets:exchangertool", + "Count:3": 1, + "tag:10": { + "blockstate:10": { + "Name:8": "minecraft:air" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "buildinggadgets:destructiontool", + "Count:3": 1, + "tag:10": { + "overlay:1": 1, + "fuzzy:1": 1 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "755:10": { + "questID:3": 755, + "preRequisites:11": [ + 401 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:incense_altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Tranquility", + "desc:8": "Tranquility Guide by §bDiamondSentinel§r:\n-First, you need to build an incense altar. Nothing works without it. \n-The incense altar goes on a 3x3 square of other stuff. What it is doesn\u0027t matter. \n-From here on, in each cardinal direction add another few rows of a type of path. \n-Wooden (3 rows past altar) caps at 60%, Stone (2 rows past wooden) caps at 120%, worn stone (2 rows past stone) caps at 200%, and obsidian (2 rows past worn stone) caps at 300%. \n-There are 7 categories of \"tranquility\" that you can gain. These blocks go on the same y coordinate as the paths, and up to 2 levels higher (so 3+ block tall trees don\u0027t help). Mix and match categories as much as you can, but don\u0027t bother with anything other than the best of each category. \n §a §e-Crop - Potatoes, Carrots, Wheat, and Wart all give the same bonus. Pick your favorite. \n §7-Earthen - Farmlands your best. Fortunate. \n §c-Fire - Actual fire works best here. Light it on Netherack. (also gives a bonus)\n §6-Lava - Self explanatory.\n §2§a-Plants - Leaves. Keep away from fire and lava layers. \n §2-Tree - Logs. See above. \n §1§9-Water - Life Essence is your friend here.\n§r- Last note: Use your sigil of divination to figure out what your bonus is. The bottom number is the % increase, the top is your raw score." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:incense_altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "756:10": { + "questID:3": 756, + "preRequisites:11": [ + 526 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumicenergistics:essentia_cell_1k", + "Count:3": 1, + "tag:10": { + "filter:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Storing Aspects", + "desc:8": "These work similar to their counterparts." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thaumicenergistics:essentia_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thaumicenergistics:essentia_export", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "thaumicenergistics:essentia_import", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumicenergistics:essentia_cell_1k", + "Count:3": 1, + "tag:10": { + "filter:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumicenergistics:essentia_cell_1k", + "Count:3": 1, + "tag:10": { + "filter:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "757:10": { + "questID:3": 757, + "preRequisites:11": [ + 17 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:lamp", + "Count:3": 14, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Speed!", + "desc:8": "Filling the Midnight Frames with Luminessence will make all crafts faster. With all 8 replaced its about a 60% speed buff." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:lamp", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mowziesmobs:glowing_jelly", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "758:10": { + "questID:3": 758, + "preRequisites:11": [ + 708 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "packagedexcrafting:advanced_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Unpacking", + "desc:8": "Place an §dUnpackager§r with the other one of the pattern set next to one of these to process that recipe type." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "packagedexcrafting:advanced_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "packagedexcrafting:combination_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "packagedexcrafting:ender_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "packagedauto:unpackager", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "packagedauto:package_component", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "759:10": { + "questID:3": 759, + "preRequisites:11": [ + 667 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:solid_fission_sink", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Reactor Building 102: Heat Sinks", + "desc:8": "§9§rThis quest will teach you the intricacies of how to keep §9Heat Sinks§r activated, §7Conductors§r, and about §bActive Moderator Blocks§r.\n\n§9Heat Sinks §rcome in many different varieties, and each one has its own set of rules to be valid. \n\n\nNow the rules required to ensure active §9Heat Sinks. §r\n\n1. They must start connected to a§6 Fuel Cell§r to be considered active. You\u0027ll want to make sure each §6Fuel Cell§r is connected to the §9Heat Sink§r \"network\", so they all recive enough cooling.\n\n2. Any §9Heat Sinks§r that are not connected by a face to another §9Heat Sink§r will not be active. This can be bypassed by using a §7Conductor§r to connect valid §9Heat Sinks§r.\n\n3. Active §bModerator Blocks§r are those directly adjacent to a §6Fuel Cell§r.\n\n\n\nIf building a reactor for power, you\u0027ll want to match the heat as close as possible to prevent loss of Steam." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:solid_fission_sink", + "Count:3": 2, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 8, + "Damage:2": 14, + "OreDict:8": "" + } + } + } + } + }, + "760:10": { + "questID:3": 760, + "preRequisites:11": [ + 759 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:fission_irradiator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Reactor Building 103: Irradiators", + "desc:8": "This quest will help you understand how to process §dIrradiator§r recipes.\n\nAfter each §6Fuel Cell§r is receving enough §aFlux Factor§r to activate, you can create additional §bModerator Lines§r extending out from your §6Fuel Cells§r capped by an §dIrradiator§r. \n\nAdding up the total §aFlux Factor§r in the §bModerator Line§r between the §6Cell§r and §dIrradiator§r will give us the amount of Radiaton per tick used in processing recipes such as §7N-Type Doped Silicon§r.\n\n\nRemember, each §bModerator Line§r extending from a §6Cell§r will increase the §eHeat§r." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fission_irradiator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 4, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "761:10": { + "questID:3": 761, + "preRequisites:11": [ + 679, + 760, + 456 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:solid_fission_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Reactor Building 104: Putting it all together", + "desc:8": "This quest will guide in setting up the frame, and help with setting up ports for §1§rin§r/§4§routputs.\n\nAfter assembling the internal aspect of your Reactor, its time to finish it and see if it works!\n\nAll edges must be made of §8§7Reactor Casing§r, while the faces can be made of either §7Casing §ror §7Glass§r.\n\nOnce you have it fully inclosed, place the Controller§r in one of the faces. If assembled correctly, you should see the edge casings snap to a connected texture.\n\nPlace the §5Neutron Sources§r so they are set in a face and pointed directly at a §6Fuel Cell§r. Right click a §5Source§r to see if it is bound to a §6Cell§r. §9Reflectors§r and §dIrradiators§r will block §5Sources §rfrom finding §6Cells§r in a path.\n\nUse a redstone signal on each §5Source§r to activate each §6Fuel Cell§r.\n\nNext, place each Port and Vent on a face. Right click one of each with the Multitool to switch to output mode. \n\nThese will be your methods of interaction with your §6Fuel Cells§r, §dIrradiators§r, and §eCooling§r. Pipe water into one of the vents, and prepare to pipe Steam out of the other. Using this Steam to power a Turbine will be your main source of Power Generation from a Fission Reactor!\n\nInsert your §2Fuel§r into the Cell Ports, and your Wafers into the Irradiator Port.\n\nCongratulations! You\u0027ve just designed and built your very own Fission Reactor!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:solid_fission_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:fission_casing", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:fission_glass", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "nuclearcraft:fission_source", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "minecraft:lever", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:multitool", + "Count:3": 1, + "tag:10": { + "multitoolUsed:1": 1 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "nuclearcraft:fission_cell_port", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "nuclearcraft:fission_vent", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "nuclearcraft:fission_irradiator_port", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "762:10": { + "questID:3": 762, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Blood Orange", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "763:10": { + "questID:3": 763, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Vibrant Bimetal Gear", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "764:10": { + "questID:3": 764, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Insanium", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "765:10": { + "questID:3": 765, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Control Circuit Board", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "766:10": { + "questID:3": 766, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Item Circuit Board", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "767:10": { + "questID:3": 767, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Glimmering Dreamwood", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "768:10": { + "questID:3": 768, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Teleportation Core", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "769:10": { + "questID:3": 769, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Elite Plating", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "770:10": { + "questID:3": 770, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Liquid Circuit Board", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "771:10": { + "questID:3": 771, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Fluix Logic Unit", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "772:10": { + "questID:3": 772, + "preRequisites:11": [ + 580 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "EV Capacitor", + "desc:8": "Collect 1000 to create a Singularity." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "773:10": { + "questID:3": 773, + "preRequisites:11": [ + 59 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_oil_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Oil Generator", + "desc:8": "Using Canola Oil, aquire power!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_oil_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "774:10": { + "questID:3": 774, + "preRequisites:11": [ + 719 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:linear_accelerator_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "QMD 102: The Linear Accelerator", + "desc:8": "Now that you know how §5particles §fand particle stacks work, it\u0027s time to make use of those concepts to construct your first §3Linear Accelerator§f!\n\n§3Linear Accelerators§f (also known as §3LINACs§f) are your gateway to §9§1§9QMD§f, providing your first method of §5particle§f manipulation. Being an entry-level §3Accelerator§f, they also provide the particle stacks required for any recipe in §9QMD§f. \n\nTo construct a §3Linear Accelerator§f, make a cuboid of §7Accelerator Glass §for §7Accelerator Casings§f which is 5 blocks wide, 5 blocks tall, and as long as you want it (Min. 6 blocks, Max. 100 blocks). There must also be a §7Linear Accelerator Controller, Accelerator Coolant Vents§f in §aInput§e§f and §cOutput§f mode and an §7Accelerator Energy Port§f. Down the centre, there must be a continuous line of §7Accelerator Beam Blocks§f. \n\nWhere the §7Accelerator Beam Blocks §fmeet the §7Accelerator Casing§f, there must be an §7Accelerator Ion source§f at one end and an §7Accelerator Beam Port§f at the other. The particle stack can be conceptualised as a continuous beam travelling from the §7Ion Source§e§f to the §7Beam Port§f through the line of §7Beam Blocks. §fIt is recommend to leave one end of the §3Linear Accelerator §fopen, in the case that you need to increase the length of the §3Linear Accelerator §fto fit more components or coolers in. A screenshot of a §3Linear Accelerator §fcan be found on the §2QMD Github Wiki§f.\n\n§cNote: The Linear Accelerator can also be used to accelerate existing particle stacks by replacing the Accelerator Ion Source with an Accelerator Beam Port on input mode, then piping the particle stack in via that beam port.\n\n§fThe §\n§8Ion Source§f creates particle stacks from items placed in it, and recipes for §5particles §fcan be seen in §2JEI§f, as well as their relevant properties (§4amount§f, §6energy§e §fand §bfocus§f). While §6energy§f and §bfocus§f can subsequently be increased by §3Accelerators§f, §4Amount§f remains fixed and cannot be modified by §3Accelerators§f, only being dependent on the item placed in the §8Ion Source§f.\n\n§fThere are two types of components that can be constructed in a §3Linear Accelerator§f to do such a task: the §bQuadrapole Magnet§f and §dRadio Frequency Cavity (RF Cavity). §fThe §eDipole Magnet§f cannot be constructed in a §3Linear Accelerator§f despite being an accelerator component, and thus will be covered in a later quest.\n\nA §bQuadrapole Magnet§f is constructed from §74 Accelerator Electromagnets §fof the same type around the accelerator beam. §b§fEach §bQuadrapole Magnet §fstructure increases the quadrapole strength of the §3Accelerator§f§f by the amount as stated in the tooltip of the §7Electromagnet§f the structure is made out of. The total Quadrapole Strength can be seen in the accelerator§f GUI. \n\nThe total §bfocus§f gained can be found by multiplying the total Quadrapole Strength of the §3Linear Accelerator§f with the numerical value of the §5particle\u0027s§f charge, while the total §bfocus§f lost is the length of the beamline (seen in the accelerator GUI) multiplied by the beam block\u0027s attenutation rate. This is true for §nall§f §3accelerators§f!\n\nAn §dRF cavity§f is constructed from §d§f§7RF Cavity blocks§f of the same type in a ring of 8 around the accelerator beam. Each §dRF cavity§f structure increases the accelerating voltage of the §4§3accelerator§f by the amount as stated in the tooltip of the §8§7RF cavity§f the stucture is made out of. The total accelerating voltage of the §3accelerator§f can be seen in the accelerator §fGUI.\n\nFor §3Linear Accelerators§f, the resulting particle\u0027s §6energy§f is calculated via the formula Emax\u003d E0 +|q|V, where E0 is the energy of the initial particle stack (normally 0 for an Ion source), |q| is the particle\u0027s numerical charge value (which can be seen in §a§2JEI§f under particle properties) and V is the accelerating voltage of the §3Linear Accelerator§f.\n\nWhen constructing your §3Linear Accelerator§f, first find a §7§ §2§aTarget Chamber§f recipe you would like to do via §2JEI§k§f, then look at the input §5particle§f and its properties, and place enough components in your §3accelerator§f to get your §5particle§f to the desired §6energy§f and §bfocus§f.\n\nYou\u0027ll probably want to make §eP-Type Doped Silicon§f §fin order to make §eAdvanced Processors§e§f to progress further in §9QMD§f. §eP-Type Doped Silicon §frequires §5Boron Ions §faccelerated to §6600KeV-1MeV§f with a §bfocus§f of§b 2§f. Thus, you\u0027ll want to place §dRF cavities§f in your accelerator until the accelerating voltage is between §6600KeV §fand §61MeV§f, and §bQuadrapole Magnets§f until the §bfocus§f of the §5Boron Ion§f is above §b2§f, taking into account §bfocus§f lost by the §5particle§f when travelling through §8particle blocks and beamline tubes §f(as mentioned in the previous quest).\n\n§c§fA resulting particle stack\u0027s properties can be seen in the accelerator §fGUI when the §3accelerator§f is given a §4redstone signal§f to switch it on. However,§c don\u0027t switch on your Linear Accelerator yet!§f Your §3Linear Accelerator§e§f has not been §9cooled§f yet, and will §cexplode§f if switched on! §9Cooling Mechanics§f will be covered in the next quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:linear_accelerator_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:accelerator_source", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:accelerator_beam_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "qmd:accelerator_energy_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "qmd:accelerator_casing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "qmd:accelerator_beam", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:canister", + "Count:3": 8, + "tag:10": { + "storage:10": { + "amount:3": 6000 + } + }, + "Damage:2": 6, + "OreDict:8": "" + } + } + } + } + }, + "775:10": { + "questID:3": 775, + "preRequisites:11": [ + 774 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "QMD 103: Accelerator Cooling", + "desc:8": "Being a very sophisticated piece of machinery, your §3Linear Accelerator§f must be cooled in order for it to function. All §3Accelerator§f components produce §cheat§f, and if any component §coverheats§e§f while operating, it will §cexplode§f! §4§3Accelerators§f must be cooled with both §9Accelerator Coolers§f and an §1active coolant§f to operate. Both mechanics will be covered in this quest.\n\nNote that §nall§f§f §2§3Accelerators§f utilise the same heating mechanic, even §3Beam Diverters§f! Thus, anything stated in this guide will hold true for all §3Accelerator Multiblocks§f.\n\nThere are 2 sources of §cheating§f in an §3accelerator§f. \n\nThe first source of heating is §cexternal heating§f, which is higher when the difference between the §3accelerator§f and warm external environment is higher and the surface area of the §3accelerator§f is higher*. \n\nThe second source of heating is §cinternal heating§f, caused by §3accelerator§f components and only present when an §3accelerator§f is §nswitched on§f. The sum of the §cheat§f produced by all §3accelerator§f components (each individual component\u0027s §cheat§f production can be seen in the tooltip of the block used to construct that component) gives the §cinternal heating§f. \n\nBoth the §cinternal heating§f and §cexternal heating§f add up to give the §3accelerator\u0027s §f§cmaximum heating§f.\n\nIn order to prevent your §3accelerator§f from §cexploding§f when operating, the sum of the §9cooling§f from all the §9Accelerator Coolers§f placed in the §3accelerator §e§fmust exceed the §cmaximum heating§f of the §3accelerator§f. Both the max§c§fimum §cheating§f and maximum §9cooling§f§f can be seen by hovering over the heat bar in the accelerator§f GUI.\n\n§9Accelerator Coolers§f, much like §2Nuclearcraft: Overhaul §fcoolers§f, have placement rules regarding where they can be placed (next to an electromagnet, next to an RF Cavity, etc.). It is highly recommended that you play around with §9Accelerator Cooler§f configurations to find efficient ways to arrange §9coolers§f and components to maximise §9cooling§f, and thus the number of components you can fit into your §3accelerator§f. \n\nNote that some §9coolers§f will not be avaliable for use in §3Linear Accelerators§f as they are dependent on §8electromagnet yokes§f for placement, a block part of §edipole magnets§f which cannot be constructed in §3Linear Accelerators§f.\n\nEven when the §3§f§9cooling§f is higher than §cmaximum heating§f, the temperature§f of the §3accelerator§f must be cooled below the lowest operating temperature out of all the components in the §3accelerator§,. §fThe operating temperature of a component can be §fseen in the tooltip of the block used to§f construct that specific component. This maximum temperature the §3accelerator§f can be at before it stops working can be viewed in the accelerator§f GUI.\n\nTo do this, an §1active coolant§f that can cool the accelerator below the lowest operating temperature is supplied via an input coolant vent, and used up coolant is emptied from the §3§foutput coolant vent. §1Active coolants §fcool an §3accelerator§f to its own temperature, provided that §9cooling §fis higher than §cmaximum heating§f. \n\nValid §1active coolants§f and their temperatures can be seen in §2JEI§f via accelerator controllers. §c§f§1Coolant§f use rate as well as exhaust coolant output rate can be seen via the §9coolant bar§f in the accelerator§e§f GUI, while the temperature of the §3accelerator §fcan be seen in the GUI itself.\n\nFor example, if an §3accelerator§e§f contains a Nb-Sn quadrapole (operating temperature of 18K) and an Nb-Ti quadrapole (operating temperature of 10K), the §3accelerator§f must be cooled below 10K to operate. As liquid helium is the only §2§1active coolant§f with a temperature below 10K (temperature of 4K), it is the only §1active coolant§f that can be used to cool the §3accelerator§f below 4K in this scenario.\n\n§cNote that used up coolant must constantly be emptied from the accelerator for it to work, otherwise new coolant cannot be input into the accelerator to keep cooling it and the accelerator will overheat and explode!\n\n§fWith the exception of water, all §1active coolants§f are output in their gaseous forms in the same ratio as their gas:liquid conversion ratio in a supercooler. What this means is that you can form a closed loop of §1active coolant§f by pumping exhaust §1coolant§f from the output coolant vent of an §3accelerator§f into a Supercooler to turn it back into its liquid version, then pump the now cooled §1active coolant§f back into the input coolant vent of the §3accelerator§f, with no loss in §1active coolant§f.\n\n*More details on external heating calculation can be found on the §2QMD Github Wiki§f." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:accelerator_vent", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:supercooler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "enderio:block_tank", + "Count:3": 1, + "tag:10": { + "enderio:data:10": { + "faceModes-:1": 1, + "voidMode:3": 2, + "outputQueue:10": { + "size:3": 0 + }, + "tank:10": { + "FluidName:8": "liquid_helium", + "Capacity:3": 16000, + "Amount:3": 16000 + }, + "inventory:10": { + "size:3": 5, + "4+:1": 1, + "3+:1": 1, + "2+:1": 1, + "1+:1": 1, + "0+:1": 1 + }, + "redstoneControlMode:3": 0 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "776:10": { + "questID:3": 776, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:ring_accelerator_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Synchrotron", + "desc:8": "You\u0027ve probably found out by now that your §3Linear Accelerator§f is pretty weak, and has difficulty getting the §6energy§f of a particle beam anywhere above §620MeV§f. Enter: §3Synchrotron Accelerators§f.\n\nThe §3Synchrotron Accelerator§f is a cyclic §3Particle Accelerator§f in which the accelerating particle beam travels around a fixed closed-loop path. §3Synchrotron Accelerators§f are capable of imparting §4massive§f amounts of §6energy§f to §5particles§f, up to the GeV or even TeV range! You will need §3Synchrotrons§f capable of accelerating §5particles§f to the §6150GeV§f range for the highest-energy recipes in the mod, and they\u0027re quite capable of reaching that §6energy§f requirement.\n\nHowever, §cSynchrotrons are not replacements for Linear Accelerators!§f A §3Synchrotron§f can only accelerate §5particles§f with a minimum §6energy§f of §65MeV§f, and cannot have §8Ion Sources§f placed in them. Thus, §3Linear Accelerators§f will still act as the start of any §9QMD§f setup, producing §5particles§f and accelerating them to the required §65MeV§f before the §3Synchrotron§f accelerates them to much greater §6energies§f.\n\nBefore delving into §3Synchrotron§f construction, it\u0027s worth talking about §eDipole Magnets§f first. §eDipole Magnets§f bend the path of particle beams, and are created by placing an §7Accelerator Electromagnet§f of the same type above and below a beam and the filling the rest of the 3x3x3 space around that beam with §7Accelerator Electromagnet Yokes§f. They can be placed §nanywhere§f in a §3Synchrotron§f, even on straight beam lines! However, a minimum of 4 §eDipole Magnets§f must be placed in the corners of a §3Synchrotron.§f \n\nEach §eDipole Magnet§f structure increases the Dipole Strength of the §4§3accelerator§f by the amount as stated in the tooltip of the §8§7Electromagnet§f the stucture is made out of. The total Dipole Strength of the §3accelerator§f can be seen in the accelerator §fGUI.\n\nTo construct a §3Synchrotron§f, construct a square torus of §7Accelerator Glass§f or §7Casings§f that is 5 blocks wide, 5 blocks tall, and as large as you want it (min. exterior length: 11 blocks, max: 100 blocks). Like all §3Accelerators§f, they require a §7Coolant vent§f in input and output modes and an §7Energy Port§f. There must be a continuous ring of §7Accelerator Beams§f down the centre, like in the §3Linear Accelerator§f. Any §7Beam Port§f must be placed on the same level as the beam ring and there must be a §7beam block§f connecting it to the beam ring. At each corner and beam port intersection, there must be a §eDipole Magnet§f. A screenshot of a §3Synchrotron Accelerator§f can be found on the §2QMD Github Wiki.§f \n\nUnlike the §3Linear Accelerator§f, §3Synchrotrons§f can have multiple §7Beam Ports§f, but only one can be an input and output at any given time. A §4redstone pulse§f applied to a §7beam port§f will make that beam port the active beam port. What it switches to (either output or input) can be controlled by shift right clicking the beam port with the multitool.\n\nA §3Synchrotron Accelerator§f has the same requirements as the §3Linear Accelerator§f and any other §3Accelerator§f, requring power, §9cooling§f and §1active coolant§f. A §4redstone signal§f applied to the §7Synchrotron Accelerator Controller§f will switch it on. Just like a §3Linear Accelerator§f, when a §3Synchrotron§f is switched on, the resulting §5particle\u0027s§f properties can be seen in the accelerator GUI.\n\nThe §bfocus§f gained or lost by a §5particle§f travelling through a §3Synchrotron§f is calculated in exactly the same way as a §3Linear Accelerator§f.\n\nOn the other hand, the §6energy§f of a §5particle§f is affedted by different factors based on how heavy the §5particle§f is. While the energy of both increases when the radius of the §3Synchrotron§f increases, for heavier §5particles§f like the §5proton§f, the output §6energy§f increases when the Dipole Strength increases, while for lighter §5particles§f like the §5electron§f, the output §6energy§f increases when Accelerating Voltage increases. The formulas governing the output §6energy§f are detailed in the quest \"Synchrotron Maths\".\n\nThe strength of the §4redstone signal§f changes the output §6particle energy§f to be (redstone strength)/15 of the §6maximum particle energy§f. While the output §6particle energy§f of a §3Linear Accelerator§f can also be modified this way, this function is much more useful for the §3Synchrotron§f, where a precise §6energy§f that matches that of the recipe is harder to achieve than in a §3Linear Accelerator§f.\n\nIn order to use a §3Synchrotron§f in a §9QMD§f setup, you first need a §3Linear Accelerator§f capable of accelerating a §5particle§f up to §65MeV§f, while giving it a high enough §bfocus§f to enter the §3Synchrotron§f. I would recommend designing a standard §3Linear Accelerator§f design for this purpose, such that you can use it in any §9QMD§f setup you construct subsequently.\n\nAfter this, you need to construct a §3Synchrotron§f capable of providing the §6energy§f and §bfocus§f required for your recipe. While an understanding of the §6energy§f calculation for an output §5particle§f can prove very handy, it\u0027s not mandatory, and it\u0027s possible to get by through messing around with a §3Synchrotron\u0027s§f components in a creative testing world until it emits a §5particle§f with the desired §bfocus§f and §6energy§f as seen in the accelerator GUI. §4Redstone control§f can also prove to be handy if you have constructed a §3Synchrotron§f that\u0027s too strong, or are aiming for a very specific particle §6energy§f." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:ring_accelerator_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 2, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "777:10": { + "questID:3": 777, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:beam_diverter_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Diversion", + "desc:8": "The §3Beam Diverter§f allows you to turn beams 90 degrees in any direction, even vertically! This is especially useful in more complex §9QMD§f setups. §3Beam Diverters§f can essentially be thought of as §3mini accelerators§f, whose only purpose is to bend a particle beam.\n\nTo construct a §3Beam Diverter§f, construct a 5x5x5 cube of accelerator casing that has a §eDipole Magnet§f filling the centre. The §eDipole Magnet§f can also be in the vertical direction. §eDipole Magnets §fand their construction are covered in the quest on §3Synchrotrons§f. Note that all the same requirements of a accelerator are required, thus it must have a §7Coolant vent§f in input output mode and an §7Energy Port§f. §3Beam Diverters§f do not need §9coolers§f in them, however they still need to be cooled with §1active coolant§f and powered. A screenshot of a §3Beam Diverter§f can be found on the §2QMD Github Wiki§f.\n\nTo activate the §3Beam Diverter§f, simply give the Beam Diverter Controller a §4redstone signal§f.\n\nThe §6maximum energy§f the §3Beam Diverter§f can bend is dependent on the electromagnet used, with stronger electromagnets capable of bending higher energy beams. Particle beams also lose §6energy§f and §bfocus §fwhen bent in the §3Beam Diverter§f, with the energy loss increasing as the particle beam\u0027s initial §6energy§f increases.\n\nBoth the maximum energy and energy loss can be seen in the beam diverter GUI, while the §bfocus§f loss is calculated as per normal. \n\nMore details on the maximum energy and energy loss calculations can be found on the §2QMD Github Wiki§f." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:beam_diverter_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "qmd:accelerator_yoke", + "Count:3": 22, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "778:10": { + "questID:3": 778, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:canister", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Neutral Particles", + "desc:8": "A particularly astute player may have noticed that all §3accelerator§f formulas require the §5particle\u0027s§f charge. Thus, how are §5neutral particles§f accelerated? The short answer: §cThey aren\u0027t.§f\n\nNeutral, or §5chargeless particles§f cannot be interacted with in any way by §3accelerators§f. They can\u0027t even have their beams bent by §3beam diverters!§f Their particle stack properties (§6energy, §bfocus, §4amount§f) are solely dependent on the recipe from which they are produced. The relevant calculations for §aTarget Chamber §f(and by extension, §aDecay Chamber§f) recipes can be found in the quest \"Target Chamber Maths\". \n\nTo use a §5neutral particle§f in a recipe, it must be created with the right §6energy§f and sufficient§b focus§f in whichever recipe you plan to use to create it. This will almost certainly require you to determine the correct recipe to use to obtain such a §5particle§f, calculate the §6energy§f of the input §5particle§f used in the recipe such that the neutral §5particle§f created is of the correct§6 energy§f, and ensure the §bfocus§f is high enough such that the created§5 neutral particle§f has enough §bfocus§f to reach its §aTarget Chamber§f and carry out your desired recipe. The §aTarget Chamber§f in which this recipe is carried out must also be directly behind the §b§aTarget Chamber§f that created the §5neutral particle§f, as the §5neutral particle§f beam cannot be diverted.\n\nWhile you\u0027re unlikely to be using §5neutral particles§f in many recipes, knowing how to use them is still a useful skill, and will immediately come in handy in the next quest." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "779:10": { + "questID:3": 779, + "preRequisites:11": [ + 733 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Detectors", + "desc:8": "As you already know, the §4amount§f of §5particles§e§f in a particle stack is solely dependent on the item placed in the §8Ion Source§f, and cannot be modified by §3Accelerators§f. Does that mean there is no way to increase the speed of §aTarget Chamber§e§f recipes?\n\nEnter: detectors. Detectors increase the efficiency of any §aParticle Chamber§f, including the §aTarget Chamber§f. \n\nFor the §aTarget Chamber§f specifically, a higher efficiency leads to the recipe being processed faster, with the new recipe time being the old recipe time divided by the §aTarget Chamber§f efficiency.\n\nFor both the §aTarget Chamber§f and other §aParticle Chambers§f, a higher efficiency also increases the §4amount§f of §5particles§f in the resulting particle stacks, although the §4amount§f may never be higher than that stated in §2JEI§f. More details on the §4amount§f calculation for output particle stacks can be found in the \"Target Chamber Maths\" quest." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:part", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 4, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 6, + "Damage:2": 4, + "OreDict:8": "" + } + } + } + } + }, + "780:10": { + "questID:3": 780, + "preRequisites:11": [ + 734, + 779 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "OR", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Better Detectors", + "desc:8": "Now that you can make §e§6§eadvanced processors§f, you have access to better detectors.\n\nThese detectors won\u0027t replace your old detectors completely, but will certainly help in improving §aparticle chamber §fefficiency." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:particle_chamber_detector", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "781:10": { + "questID:3": 781, + "preRequisites:11": [ + 776 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:waste_fission", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Blasting Metals", + "desc:8": "With the higher §6energies§f from your §3Synchrotron Accelerator§f, you are now capable of accelerating §5particles §fto the §6100MeV-1GeV §frange. §5Protons§f with this energy collide with §emetals §for §eradioactive isotopes§f in §aTarget Chambers§f to produce §elight fission waste§f and §eheavy fission waste§f, respectively.\n\nWhile §eheavy fission waste§f isn\u0027t mandatory for progression, producing §eNeodymium §fand §eMolybdenum§f which can also be obtained with other methods, §elight fission waste§f is one of the two ways to make §eStrontium§f, a material that can only be obtained via §9QMD§f and is crucial for further progression in the mod." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:waste_fission", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:smore", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "782:10": { + "questID:3": 782, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:isotope", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Positrons", + "desc:8": "§eSodium-22§f is required for making §eSodium-22 Sources§f. These produce§5 Positrons§f when placed in an ion source, essential for making §4§6antimatter§f in §7Neutral Exotic Containment§f.\n\nMany of the recipes that produce this item also produce §5Neutrons§f, which may be useful for certain recipes (including one in this very questline)!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:isotope", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "qmd:isotope", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:isotope", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:isotope", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + } + } + } + }, + "783:10": { + "questID:3": 783, + "preRequisites:11": [ + 741 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:decelerator_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Deceleration", + "desc:8": "§3Decelerators§f lower the energy of §5particles§f that go in them. This is especially useful for creating §5antimatter compounds§f and §6exotic matter§f in §7Neutral Exotic Containment.\n\n§3Decelerators §fare built in the exact same way as §3Synchrotrons§f, with three notable differences:\n\n1. They require a §7Decelerator Controller.§f\n\n2. They cannot have §7Synchrotron Ports§f installed.§f\n\n3. Only one §dRF Cavity§f is required; any more than one serves no purpose and wastes power.\n\nA screenshot of a §3Decelerator§f can be found on the §2QMD Github Wiki.§f \n\nMuch like §3Synchrotrons, Decelerators§f can also have multiple Beam Ports. The rules regarding these are the same as in the §3Synchrotron§f.\n\nA §3Decelerator§f has the same requirements as any other §3Accelerator§f, requring power, §9cooling§f and §1active coolant§f. A §4redstone signal§f applied to the §7Decelerator Controller§f will switch it on. Just like any other §3Accelerator§f, when a §3Decelerator§f is switched on, the resulting §5particle\u0027s§f properties can be seen in the accelerator GUI.\n\nThe §bfocus§f gained or lost by a §5particle§f travelling through a §3Decelerator§f is calculated in exactly the same way as any other §3Accelerator§f.\n\n§3Decelerators§f reduce the §6energy§f of any §5particle§f input into them to 0eV. The maximum §6energy§f a §5particle§f piped in can have is the same as the §3Synchrotron\u0027s§f max particle energy from the Dipole Strength. This is Ef\u003d(q*Bd*R)^2/(2m) where q is the §5particle\u0027s§f charge, Bd is the Dipole Strength of the §3Decelerator§f, R is the radius of the §3Decelerator§f and m is the mass of the particle in MeV/c^2. \n\nWhat this means is that the exact same design for a §3Synchrotron§f can be used for a §3Decelerator§f, where the maximum §6energy§f of an input §5particle§f for the §3Decelerator§f is equal to the maximum §6energy§f of the §3Synchrotron§f design (provided the §3Synchrotron§f was designed to accelerate heavy particles like §5protons§f).\n\nThe §6energy§f of the output §5particles§f is determined by the §4redstone signal strength§f applied to the controller. A strength of 15 will reduce the particle\u0027s §6energy§f to 0eV, required for creating §6exotic fluids§f in §7Neutral Exotic Containment§f. For any other §4redstone strength§f, the output §6particle energy§f is E\u003dEf(1-Sr/15) where Sr is the redstone signal strength. This is useful for §aCollision Chamber§f recipes that require a very small non-zero §6energy§f, like §5anti-triton§f." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:decelerator_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:part", + "Count:3": 8, + "Damage:2": 12, + "OreDict:8": "" + } + } + } + } + }, + "784:10": { + "questID:3": 784, + "preRequisites:11": [ + 776 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "id:8": "qmd:accelerator_synchrotron_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Let There Be Light", + "desc:8": "Did someone say \"light\"?\n\n§7Synchrotron Ports§f are special ports that act like §7Beam Ports§f, but emit §5Synchrotron Radiation (High Energy Photons) §fwhen §5particles§f are being accelerated in the §3Synchrotron§f. They follow the same placement rules as §7Beam Ports§f.\n\nThe §4amount (pu/t) §fof §5photons§f produced, as well as their §bfocus§f, is equal to the §4amount§f and §bfocus §fof the particle stack being accelerated in the §3Synchrotron. §f\n\nThe §6energy§f (in MeV) is Es\u003dE^3/(2πR(1000m)^3) where E is the energy (in MeV) of the §5particle§f outputted by the §3Synchrotron§f, R is the radius of the §3Synchrotron§f and m is the mass of the particle in MeV/c^2. Therefore, light §5particles§f like §5electrons§f are best used to generate §5photons§f.\n\nWhile §5Photons§f aren\u0027t used in many recipes, they may still prove to be useful, depending on the §eitems§f you\u0027re trying to acquire." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "qmd:accelerator_synchrotron_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "qmd:luminous_paint", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "qmd:luminous_paint", + "Count:3": 16, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "qmd:luminous_paint", + "Count:3": 16, + "Damage:2": 2, + "OreDict:8": "" + } + } + } + } + }, + "785:10": { + "questID:3": 785, + "preRequisites:11": [ + 776 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "jecalculation:item_calculator", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Synchrotron Maths", + "desc:8": "This quest details the maths behind the §6energy§f of a resultant §\n§5particle§\n§f from a §3Synchrotron§f. While it isn\u0027t completely necessary for §3Synchrotron§f construction, an understanding of the formulas can help greatly when planning out a new §3Synchrotron§f.\n\nThe §6energy§f of the resulting particle stack is limited by 2 factors: the Dipole Field Strength and Synchrotron Radiation Losses. Essentially, both factors put a seperate limit on the §7§6energy§e§f of the resulting particle stack (which can be calculated), and the lower limit becomes the maximum §6energy§f of the resulting particle stack (at maximum §4redstone strength§f).\n\nThe maximum §6energy§f (in GeV) from the Dipole Strength is Ef\u003d(q*Bd*R)^2/(2m) where q is the §5particle\u0027s§f charge, Bd is the total Dipole Strength of the §3Synchrotron§f, R is the radius of the §3Synchrotron§f and m is the mass of the §5particle§f in MeV/c^2. This will be the limiting factor for heavier §5particles§f, like the §5proton§f.\n\nThe maximum §6energy§f (in GeV) from the Radiation losses is Er\u003dm(3VR/|q|)^0.25 where V is the §3Synchrotron\u0027s§f voltage (in kV). This will be the limiting factor for lighter §5particles§f, like the §5electron§f.\n\nWhen using the formulas to calculate an appropiate §3Synchrotron§f for your recipe, it helps to have standard §9cooler§f configurations and patterns to be used in a §3Synchrotron§f, such that you are able to calculate standard §3Synchrotron§f radii and §9cooling rates§f based on the number of §bDipole Magnets§f you wish to put in the §2§3Synchrotron.§f After which, you can calculate the Dipole Strength needed through the formula Bd\u003d(2mEf)^0.5/qR, and determine if the §9cooling rate§f is high enough for the §bDipole Magnets§f required to attain that Dipole Strength. If not, you\u0027ll need to make your §3Synchrotron§f larger, such that it can fit more §9coolers§f and the dipole strength required decreases. \n\nThis method makes it simpler to calculate a suitable §3Synchrotron§f for §6high-energy§f recipes, such as §aCollision Chamber§f recipes (which can require up to §6150GeV!§f). As mentioned before, §4Redstone control§f can also prove to be handy if you have constructed a §3Synchrotron§f that\u0027s too strong, or are aiming for a very specific particle §6energy§f." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "786:10": { + "questID:3": 786, + "preRequisites:11": [ + 733 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "CHAIN", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "jecalculation:item_calculator", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Target Chamber Maths", + "desc:8": "This quest details how the properties of resultant particle stacks in §aTarget Chamber§f recipes are calculated, as well as how they are affected by detectors. While this knowledge isn\u0027t mandatory for understanding how §aTarget Chambers§f work, it can prove handy for obtaining §5particles§f with very specific §6energy§f, an especially useful skill when dealing with§5 neutral particles!§f\n\nThe §bfocus§f of the output beams is the same as the input beam, deducting away the distance both the input and output beam travelled in the §aTarget Chamber§f multiplied by the beam attenuation rate. \n\nThe §6energy§f of any given output particle beam in a recipe is given by E\u003d(E0+Q)/n, where E0 is the input §6particle energy§f, Q is the §6energy released§f and n is the total amount of §5particles§f outputted in the recipe.\n\nThe §4amount§f of each output particle beam\u0027s particle stack is given by aout\u003dain*a*Σ where ain is the §4amount§f of the input particle stack, a is the §4amount§f given in the recipe as stated in §2JEI§f and Σ\u003dmin(ση,1). σ is the recipe\u0027s Cross-Section and η is the §aTarget Chamber\u0027s§f efficiency.\n\nWhat this formula essentially means is that an output beam\u0027s §4amount§f is a fraction of the input beam\u0027s §4amount§f, where the fraction is the cross section of the recipe, for recipes in which output beams are only one pu (i.e a\u003d1). Detectors increase §aTarget Chamber§f efficiency and thus the §4amount§f of an output particle beam up to the §4amount§f of the input beam, but can never surpass it, since Σ is capped at one. The only way of getting a higher §4amount §fout is to have a recipe that outputs more than one pu (i.e a\u003e1). \n\n§aDecay Chamber§f output beam calculations are exactly the same as §aTarget Chamber§e§f output beam calculations. " + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "787:10": { + "questID:3": 787, + "preRequisites:11": [ + 12 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:creative_flux_sponge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Flux Sponge", + "desc:8": "First creative item!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:creative_flux_sponge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "788:10": { + "questID:3": 788, + "preRequisites:11": [ + 492, + 493 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": 600, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thaumcraft:sanity_checker", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Clear all Warp 2", + "desc:8": "This quest will clear you of any warp, and is repeatable." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "thaumcraft:sanity_soap", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania_tweaks:compressed_tiny_potato_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Remove Warp", + "viaPlayer:1": 0, + "index:3": 1, + "title:8": "bq_standard.reward.command", + "command:8": "/tc warp @s set 0 TEMP" + }, + "1:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 2, + "title:8": "bq_standard.reward.command", + "command:8": "/tc warp @s set 0" + }, + "2:10": { + "hideBlockIcon:1": 1, + "rewardID:8": "bq_standard:command", + "asScript:1": 1, + "description:8": "Run a command script", + "viaPlayer:1": 0, + "index:3": 3, + "title:8": "bq_standard.reward.command", + "command:8": "/tc warp @s set 0 PERM" + } + } + }, + "789:10": { + "questID:3": 789, + "preRequisites:11": [ + 610, + 622, + 787 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:nether_star", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "OR", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Welcome to End Game!", + "desc:8": "From this point on you\u0027ll need some fairly ridiculous quantities of items, so if thats not appealing to you, feel free to take the win here! " + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "790:10": { + "questID:3": 790, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "supersoundmuffler:sound_muffler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Too Loud!", + "desc:8": "Place this nearby and select which sounds you\u0027d like to not hear." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "supersoundmuffler:sound_muffler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "791:10": { + "questID:3": 791, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Dank Null", + "desc:8": "Ever wanted to hold huge quantities of items in one inventory slot? Now you can!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "792:10": { + "questID:3": 792, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "demagnetize:demagnetizer_advanced", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "When you just want to throw things", + "desc:8": "Place these near your dropped item automation goes." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "demagnetize:demagnetizer_advanced", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "793:10": { + "questID:3": 793, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:dolly", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "The Dolly", + "desc:8": "This makes moving things a Breeze!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:dolly", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:ender_pearl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "794:10": { + "questID:3": 794, + "preRequisites:11": [ + 795 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Luminessence!", + "desc:8": "Might want to set this up as a passive system!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "795:10": { + "questID:3": 795, + "preRequisites:11": [ + 468 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 1, + "tag:10": { + "Fluid:10": { + "FluidName:8": "fluidpotassium", + "Amount:3": 1000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Potassium", + "desc:8": "Here is one way to get this." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 10, + "Damage:2": 772, + "OreDict:8": "" + }, + "1:10": { + "id:8": "techreborn:dynamiccell", + "Count:3": 2, + "tag:10": { + "Fluid:10": { + "FluidName:8": "fluidpotassium", + "Amount:3": 1000 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "796:10": { + "questID:3": 796, + "preRequisites:11": [ + 81 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "UNLOCKED", + "simultaneous:1": 0, + "icon:10": { + "id:8": "randomthings:advancedredstoneinterface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Some Handy Redstone Items", + "desc:8": "Read the Jei info tab on these." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "randomthings:advancedredstoneinterface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "randomthings:positionfilter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "randomthings:contactlever", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "797:10": { + "questID:3": 797, + "preRequisites:11": [ + 257 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Heavy Water", + "desc:8": "Pumping water with an installed Filter Upgrade will extract Heavy Water instead." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:filterupgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "mekanism:speedupgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:energyupgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "798:10": { + "questID:3": 798, + "preRequisites:11": [ + 260 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodarsenal:stasis_plate", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Refining Life Essence", + "desc:8": "Using the §c§4Ritual of Purifcation§r, you\u0027ll be able to refine Life Essence.\n\nPlace the tanks stacked above the center, with one empty space above the Ritual Stone. Then place the four Stasis Plates above the fire attuned Ritual Stones. \n\nEach item goes on a Stasis Plate, and Life Essence in the top tank. One bucket of Refined requires 10 unrefined Life Essence, and one of each item." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:ritual_diviner", + "Count:3": 1, + "tag:10": { + "current_ritual:8": "purification", + "direction:3": 5 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -5854321833218265537, + "AS_Amulet_HolderMost:4": -3354768958829737557 + } + }, + "id:8": "bloodmagic:activation_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "bloodmagic:ritual_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "bloodmagic:ritual_stone", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "bloodarsenal:stasis_plate", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "bloodmagic:blood_tank", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "minecraft:blaze_powder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "bloodarsenal:base_item", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "8:10": { + "id:8": "minecraft:ender_pearl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "9:10": { + "id:8": "minecraft:redstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "799:10": { + "questID:3": 799, + "preRequisites:11": [ + 761 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "betterquesting:placeholder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 0, + "name:8": "Reactor Troubleshooting", + "desc:8": "§8§3Melted Cells?§r Make sure each §6Cell§r is getting enough cooling! Double check the heating and cooling rules in the previous chapters. Remember, §1§9Heat Sink§r§9s§r need to be connected to a §6Cell§r directly or through other active §9Heat Sinks§,.\n\n§b§3Reactor not starting?§r Make sure you\u0027ve reached the §cCriticality factor§r for your supplied fuel! Double check the §aFlux Factor§r rules in the Fuel Cell chapter.\n\n§3Reactor Contoller Melted?§r Pump the Steam out!" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "nuclearcraft:solid_fission_cell", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "800:10": { + "questID:3": 800, + "preRequisites:11": [ + 311 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "NORMAL", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "repeat_relative:1": 1, + "ismain:1": 1, + "name:8": "Assembling Machine!", + "desc:8": "This multiblock will evolve several times through the pack." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:assemblermkone" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "techreborn:refined_iron_fence", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 2, + "OreDict:8": "" + }, + "4:10": { + "id:8": "techreborn:storage2", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "5:10": { + "id:8": "techreborn:machine_casing", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "jaopca:block_sheetmetalelectricalsteel", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "fluidInputHatch" + }, + "9:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "itemOutputHatch" + }, + "10:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "energyInputHatch" + }, + "11:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "itemInputHatch" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + } + }, + "questLines:9": { + "0:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -432, + "y:3": -24, + "id:3": 0, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": -396, + "y:3": -48, + "id:3": 1, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -396, + "y:3": -84, + "id:3": 2, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -360, + "y:3": -48, + "id:3": 3, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -324, + "y:3": 12, + "id:3": 5, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 36, + "x:3": -186, + "y:3": 6, + "id:3": 14, + "sizeY:3": 36 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 12, + "id:3": 15, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -138, + "y:3": 12, + "id:3": 16, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -468, + "y:3": 12, + "id:3": 28, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 36, + "x:3": -534, + "y:3": 6, + "id:3": 29, + "sizeY:3": 36 + }, + "10:10": { + "sizeX:3": 24, + "x:3": -348, + "y:3": 84, + "id:3": 31, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 36, + "x:3": -534, + "y:3": -42, + "id:3": 32, + "sizeY:3": 36 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -360, + "y:3": -12, + "id:3": 37, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -420, + "y:3": 12, + "id:3": 39, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -360, + "y:3": -84, + "id:3": 41, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 36, + "x:3": -534, + "y:3": 54, + "id:3": 64, + "sizeY:3": 36 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -384, + "y:3": 84, + "id:3": 291, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": -24, + "id:3": 309, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -432, + "y:3": 48, + "id:3": 362, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": -348, + "y:3": 48, + "id:3": 375, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -312, + "y:3": 48, + "id:3": 377, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -276, + "y:3": 48, + "id:3": 378, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -276, + "y:3": 12, + "id:3": 427, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": -96, + "y:3": 12, + "id:3": 475, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": -396, + "y:3": -12, + "id:3": 501, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 36, + "x:3": -390, + "y:3": 42, + "id:3": 542, + "sizeY:3": 36 + } + }, + "lineID:3": 0, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 1: First Tools", + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tconstruct:book", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Collect some basic resources, craft your first Tinkerer\u0027s tools, and learn how to melt and cast metal." + } + }, + "order:3": 0 + }, + "1:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -408, + "y:3": 144, + "id:3": 22, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": -408, + "y:3": 108, + "id:3": 27, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 108, + "id:3": 59, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": 144, + "id:3": 211, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -96, + "y:3": 108, + "id:3": 231, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 108, + "id:3": 232, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": 144, + "id:3": 276, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 60, + "id:3": 277, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": 108, + "id:3": 278, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": 180, + "id:3": 279, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": -240, + "y:3": 144, + "id:3": 280, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 180, + "id:3": 281, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 216, + "id:3": 282, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 108, + "id:3": 290, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": 180, + "id:3": 293, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -168, + "y:3": 216, + "id:3": 294, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -168, + "y:3": 144, + "id:3": 295, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 60, + "id:3": 306, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": 180, + "id:3": 315, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": -432, + "y:3": 60, + "id:3": 341, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 108, + "id:3": 468, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -96, + "y:3": 144, + "id:3": 483, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -384, + "y:3": 60, + "id:3": 518, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 180, + "id:3": 595, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 144, + "id:3": 667, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 144, + "id:3": 693, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 264, + "id:3": 736, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 174, + "id:3": 759, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 204, + "id:3": 760, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 234, + "id:3": 761, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 60, + "id:3": 773, + "sizeY:3": 24 + } + }, + "lineID:3": 1, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Power Options", + "icon:10": { + "id:8": "advgenerators:turbine_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "This page can be used as a refrence point for power options per tier." + } + }, + "order:3": 8 + }, + "2:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": -144, + "id:3": 4, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": -192, + "id:3": 8, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -192, + "id:3": 13, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": -192, + "id:3": 14, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": -144, + "id:3": 27, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": -192, + "id:3": 47, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": -192, + "id:3": 49, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": -96, + "id:3": 59, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": -48, + "id:3": 231, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": -372, + "y:3": 0, + "id:3": 232, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": 0, + "id:3": 259, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": -48, + "id:3": 321, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": -144, + "id:3": 322, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -96, + "id:3": 356, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": -192, + "id:3": 374, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": -48, + "id:3": 384, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": -96, + "id:3": 385, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": -144, + "id:3": 386, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -144, + "id:3": 387, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": -96, + "id:3": 388, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": -96, + "id:3": 389, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": -48, + "id:3": 390, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": -144, + "id:3": 391, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": -96, + "id:3": 392, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -48, + "id:3": 393, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": -48, + "id:3": 394, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": 0, + "id:3": 449, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 0, + "id:3": 451, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 0, + "id:3": 452, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 0, + "id:3": 453, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -192, + "id:3": 476, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -144, + "id:3": 477, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -96, + "id:3": 478, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -48, + "id:3": 479, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": 0, + "id:3": 480, + "sizeY:3": 24 + } + }, + "lineID:3": 2, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "The Shop", + "icon:10": { + "id:8": "contenttweaker:token_tier1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Spend tokens to buy some things." + } + }, + "order:3": 14 + }, + "3:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -132, + "y:3": -84, + "id:3": 60, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": -60, + "id:3": 131, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": -108, + "id:3": 359, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -72, + "y:3": -84, + "id:3": 558, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -12, + "id:3": 560, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -156, + "id:3": 609, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -24, + "id:3": 620, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -144, + "id:3": 621, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -108, + "id:3": 626, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": -72, + "y:3": -48, + "id:3": 628, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -84, + "id:3": 630, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": -12, + "y:3": -84, + "id:3": 633, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -60, + "id:3": 634, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -120, + "id:3": 727, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": 6, + "id:3": 745, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -30, + "id:3": 746, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -84, + "id:3": 751, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": -12, + "id:3": 752, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -156, + "id:3": 762, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": -120, + "id:3": 763, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": -156, + "id:3": 764, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": -120, + "id:3": 765, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": -156, + "id:3": 766, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -192, + "id:3": 767, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": -252, + "y:3": -120, + "id:3": 768, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": -252, + "y:3": -156, + "id:3": 769, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": -192, + "id:3": 770, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": -192, + "id:3": 771, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": -252, + "y:3": -192, + "id:3": 772, + "sizeY:3": 24 + } + }, + "lineID:3": 3, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 8: Get Creative!", + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Some challanges and more." + } + }, + "order:3": 7 + }, + "4:10": { + "quests:9": { + "0:10": { + "sizeX:3": 36, + "x:3": -144, + "y:3": -198, + "id:3": 53, + "sizeY:3": 36 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -96, + "id:3": 58, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 48, + "x:3": 216, + "y:3": -108, + "id:3": 59, + "sizeY:3": 48 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": -156, + "id:3": 61, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -48, + "y:3": -24, + "id:3": 62, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": -42, + "id:3": 70, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -120, + "id:3": 72, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -174, + "y:3": -192, + "id:3": 73, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": -96, + "id:3": 74, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": -246, + "id:3": 75, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": -246, + "id:3": 76, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": -72, + "y:3": -132, + "id:3": 85, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -102, + "y:3": -162, + "id:3": 86, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -96, + "id:3": 94, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -252, + "y:3": -60, + "id:3": 97, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -24, + "id:3": 98, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": -60, + "id:3": 99, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": -60, + "id:3": 100, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 18, + "y:3": -48, + "id:3": 102, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": -6, + "id:3": 103, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -120, + "y:3": -96, + "id:3": 107, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -30, + "id:3": 108, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -72, + "y:3": -96, + "id:3": 143, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -96, + "id:3": 145, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": -138, + "y:3": -240, + "id:3": 152, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": -78, + "id:3": 202, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": -90, + "y:3": -192, + "id:3": 214, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": -246, + "id:3": 233, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -54, + "id:3": 239, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -138, + "id:3": 240, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": -120, + "y:3": -60, + "id:3": 261, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": -120, + "y:3": -24, + "id:3": 263, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": -42, + "y:3": -66, + "id:3": 272, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 42, + "y:3": -96, + "id:3": 273, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": -168, + "y:3": -240, + "id:3": 275, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -60, + "id:3": 286, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -216, + "id:3": 287, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -168, + "id:3": 289, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": -138, + "y:3": -150, + "id:3": 313, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 36, + "x:3": 6, + "y:3": -198, + "id:3": 314, + "sizeY:3": 36 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": -192, + "id:3": 317, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": -36, + "id:3": 422, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": -150, + "id:3": 438, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -96, + "id:3": 442, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": -114, + "id:3": 446, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": -36, + "id:3": 492, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": -84, + "id:3": 493, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -240, + "id:3": 494, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": 0, + "id:3": 495, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -132, + "id:3": 581, + "sizeY:3": 24 + } + }, + "lineID:3": 4, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 3: Steel", + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Explore the Betweenlands, delve into the arcane with Thaumcraft, and build a basic Coke Furnace to get Steel.\n\nStart a Simple Storage Network with atomicly reconstructed materials." + } + }, + "order:3": 2 + }, + "5:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -516, + "y:3": 360, + "id:3": 12, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 360, + "id:3": 19, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 240, + "id:3": 57, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 240, + "id:3": 59, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 120, + "id:3": 71, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 180, + "id:3": 83, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -348, + "y:3": 324, + "id:3": 147, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -384, + "y:3": 324, + "id:3": 210, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 180, + "id:3": 221, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 300, + "id:3": 231, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 360, + "id:3": 232, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 240, + "id:3": 258, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 120, + "id:3": 285, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 300, + "id:3": 296, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 120, + "id:3": 318, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 300, + "id:3": 365, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 180, + "id:3": 376, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 180, + "id:3": 379, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 240, + "id:3": 408, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 240, + "id:3": 409, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 360, + "id:3": 455, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -672, + "y:3": 360, + "id:3": 468, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 300, + "id:3": 482, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 360, + "id:3": 498, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 360, + "id:3": 507, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 120, + "id:3": 510, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 120, + "id:3": 520, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 120, + "id:3": 521, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 120, + "id:3": 522, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 180, + "id:3": 523, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 300, + "id:3": 529, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 300, + "id:3": 530, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 300, + "id:3": 532, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": -672, + "y:3": 300, + "id:3": 533, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 300, + "id:3": 534, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": -636, + "y:3": 300, + "id:3": 535, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 360, + "id:3": 540, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 360, + "id:3": 541, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 420, + "id:3": 546, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 420, + "id:3": 547, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 420, + "id:3": 548, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 420, + "id:3": 549, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 420, + "id:3": 550, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 420, + "id:3": 551, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 420, + "id:3": 552, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 420, + "id:3": 553, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": -672, + "y:3": 420, + "id:3": 554, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": -636, + "y:3": 420, + "id:3": 555, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": -600, + "y:3": 420, + "id:3": 556, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 120, + "id:3": 557, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": -444, + "y:3": 324, + "id:3": 558, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": -480, + "y:3": 360, + "id:3": 560, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 252, + "id:3": 561, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 216, + "id:3": 562, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": -588, + "y:3": 156, + "id:3": 563, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": -588, + "y:3": 120, + "id:3": 564, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": -552, + "y:3": 120, + "id:3": 565, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": -552, + "y:3": 156, + "id:3": 566, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": -492, + "y:3": 612, + "id:3": 567, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": 360, + "id:3": 568, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 360, + "id:3": 569, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 324, + "id:3": 572, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": -528, + "y:3": 216, + "id:3": 576, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": -456, + "y:3": 252, + "id:3": 577, + "sizeY:3": 24 + }, + "64:10": { + "sizeX:3": 24, + "x:3": -456, + "y:3": 216, + "id:3": 578, + "sizeY:3": 24 + }, + "65:10": { + "sizeX:3": 24, + "x:3": -516, + "y:3": 324, + "id:3": 579, + "sizeY:3": 24 + }, + "66:10": { + "sizeX:3": 24, + "x:3": -552, + "y:3": 324, + "id:3": 580, + "sizeY:3": 24 + }, + "67:10": { + "sizeX:3": 24, + "x:3": -444, + "y:3": 360, + "id:3": 582, + "sizeY:3": 24 + }, + "68:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 216, + "id:3": 583, + "sizeY:3": 24 + }, + "69:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": 252, + "id:3": 584, + "sizeY:3": 24 + }, + "70:10": { + "sizeX:3": 24, + "x:3": -492, + "y:3": 252, + "id:3": 589, + "sizeY:3": 24 + }, + "71:10": { + "sizeX:3": 24, + "x:3": -492, + "y:3": 216, + "id:3": 590, + "sizeY:3": 24 + }, + "72:10": { + "sizeX:3": 24, + "x:3": -552, + "y:3": 360, + "id:3": 596, + "sizeY:3": 24 + }, + "73:10": { + "sizeX:3": 24, + "x:3": -480, + "y:3": 324, + "id:3": 598, + "sizeY:3": 24 + }, + "74:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 516, + "id:3": 601, + "sizeY:3": 24 + }, + "75:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": 576, + "id:3": 602, + "sizeY:3": 24 + }, + "76:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 156, + "id:3": 605, + "sizeY:3": 24 + }, + "77:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 120, + "id:3": 606, + "sizeY:3": 24 + }, + "78:10": { + "sizeX:3": 24, + "x:3": -456, + "y:3": 420, + "id:3": 607, + "sizeY:3": 24 + }, + "79:10": { + "sizeX:3": 24, + "x:3": -492, + "y:3": 420, + "id:3": 608, + "sizeY:3": 24 + }, + "80:10": { + "sizeX:3": 24, + "x:3": -420, + "y:3": 420, + "id:3": 611, + "sizeY:3": 24 + }, + "81:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 360, + "id:3": 612, + "sizeY:3": 24 + }, + "82:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 516, + "id:3": 613, + "sizeY:3": 24 + }, + "83:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 516, + "id:3": 614, + "sizeY:3": 24 + }, + "84:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 516, + "id:3": 615, + "sizeY:3": 24 + }, + "85:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 480, + "id:3": 616, + "sizeY:3": 24 + }, + "86:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 516, + "id:3": 617, + "sizeY:3": 24 + }, + "87:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 516, + "id:3": 618, + "sizeY:3": 24 + }, + "88:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 480, + "id:3": 623, + "sizeY:3": 24 + }, + "89:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 480, + "id:3": 624, + "sizeY:3": 24 + }, + "90:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 480, + "id:3": 625, + "sizeY:3": 24 + }, + "91:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 480, + "id:3": 627, + "sizeY:3": 24 + }, + "92:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 480, + "id:3": 629, + "sizeY:3": 24 + }, + "93:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 516, + "id:3": 631, + "sizeY:3": 24 + }, + "94:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 480, + "id:3": 632, + "sizeY:3": 24 + }, + "95:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 480, + "id:3": 635, + "sizeY:3": 24 + }, + "96:10": { + "sizeX:3": 36, + "x:3": -672, + "y:3": 492, + "id:3": 636, + "sizeY:3": 36 + }, + "97:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 612, + "id:3": 637, + "sizeY:3": 24 + }, + "98:10": { + "sizeX:3": 24, + "x:3": -960, + "y:3": 576, + "id:3": 638, + "sizeY:3": 24 + }, + "99:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 576, + "id:3": 639, + "sizeY:3": 24 + }, + "100:10": { + "sizeX:3": 24, + "x:3": -924, + "y:3": 612, + "id:3": 640, + "sizeY:3": 24 + }, + "101:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 612, + "id:3": 641, + "sizeY:3": 24 + }, + "102:10": { + "sizeX:3": 24, + "x:3": -888, + "y:3": 576, + "id:3": 642, + "sizeY:3": 24 + }, + "103:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 612, + "id:3": 643, + "sizeY:3": 24 + }, + "104:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 576, + "id:3": 644, + "sizeY:3": 24 + }, + "105:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 576, + "id:3": 645, + "sizeY:3": 24 + }, + "106:10": { + "sizeX:3": 24, + "x:3": -816, + "y:3": 612, + "id:3": 646, + "sizeY:3": 24 + }, + "107:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 612, + "id:3": 647, + "sizeY:3": 24 + }, + "108:10": { + "sizeX:3": 24, + "x:3": -780, + "y:3": 576, + "id:3": 648, + "sizeY:3": 24 + }, + "109:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 576, + "id:3": 649, + "sizeY:3": 24 + }, + "110:10": { + "sizeX:3": 24, + "x:3": -744, + "y:3": 612, + "id:3": 650, + "sizeY:3": 24 + }, + "111:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 612, + "id:3": 651, + "sizeY:3": 24 + }, + "112:10": { + "sizeX:3": 24, + "x:3": -672, + "y:3": 612, + "id:3": 652, + "sizeY:3": 24 + }, + "113:10": { + "sizeX:3": 24, + "x:3": -672, + "y:3": 576, + "id:3": 653, + "sizeY:3": 24 + }, + "114:10": { + "sizeX:3": 24, + "x:3": -636, + "y:3": 612, + "id:3": 654, + "sizeY:3": 24 + }, + "115:10": { + "sizeX:3": 24, + "x:3": -636, + "y:3": 576, + "id:3": 655, + "sizeY:3": 24 + }, + "116:10": { + "sizeX:3": 24, + "x:3": -708, + "y:3": 576, + "id:3": 656, + "sizeY:3": 24 + }, + "117:10": { + "sizeX:3": 24, + "x:3": -600, + "y:3": 612, + "id:3": 657, + "sizeY:3": 24 + }, + "118:10": { + "sizeX:3": 24, + "x:3": -600, + "y:3": 576, + "id:3": 658, + "sizeY:3": 24 + }, + "119:10": { + "sizeX:3": 24, + "x:3": -564, + "y:3": 612, + "id:3": 659, + "sizeY:3": 24 + }, + "120:10": { + "sizeX:3": 24, + "x:3": -528, + "y:3": 612, + "id:3": 660, + "sizeY:3": 24 + }, + "121:10": { + "sizeX:3": 24, + "x:3": -528, + "y:3": 576, + "id:3": 661, + "sizeY:3": 24 + }, + "122:10": { + "sizeX:3": 24, + "x:3": -492, + "y:3": 576, + "id:3": 663, + "sizeY:3": 24 + }, + "123:10": { + "sizeX:3": 24, + "x:3": -564, + "y:3": 576, + "id:3": 664, + "sizeY:3": 24 + }, + "124:10": { + "sizeX:3": 24, + "x:3": -252, + "y:3": 420, + "id:3": 681, + "sizeY:3": 24 + }, + "125:10": { + "sizeX:3": 24, + "x:3": -324, + "y:3": 420, + "id:3": 682, + "sizeY:3": 24 + }, + "126:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": 456, + "id:3": 683, + "sizeY:3": 24 + }, + "127:10": { + "sizeX:3": 24, + "x:3": -360, + "y:3": 456, + "id:3": 684, + "sizeY:3": 24 + }, + "128:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": 456, + "id:3": 685, + "sizeY:3": 24 + }, + "129:10": { + "sizeX:3": 24, + "x:3": -324, + "y:3": 456, + "id:3": 686, + "sizeY:3": 24 + }, + "130:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": 420, + "id:3": 687, + "sizeY:3": 24 + }, + "131:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": 420, + "id:3": 688, + "sizeY:3": 24 + }, + "132:10": { + "sizeX:3": 24, + "x:3": -252, + "y:3": 456, + "id:3": 689, + "sizeY:3": 24 + }, + "133:10": { + "sizeX:3": 24, + "x:3": -852, + "y:3": 516, + "id:3": 690, + "sizeY:3": 24 + }, + "134:10": { + "sizeX:3": 24, + "x:3": -360, + "y:3": 420, + "id:3": 691, + "sizeY:3": 24 + }, + "135:10": { + "sizeX:3": 24, + "x:3": -312, + "y:3": 324, + "id:3": 694, + "sizeY:3": 24 + }, + "136:10": { + "sizeX:3": 24, + "x:3": -348, + "y:3": 360, + "id:3": 697, + "sizeY:3": 24 + }, + "137:10": { + "sizeX:3": 24, + "x:3": -312, + "y:3": 360, + "id:3": 698, + "sizeY:3": 24 + }, + "138:10": { + "sizeX:3": 24, + "x:3": -384, + "y:3": 360, + "id:3": 699, + "sizeY:3": 24 + }, + "139:10": { + "sizeX:3": 24, + "x:3": -384, + "y:3": 612, + "id:3": 700, + "sizeY:3": 24 + }, + "140:10": { + "sizeX:3": 24, + "x:3": -384, + "y:3": 576, + "id:3": 701, + "sizeY:3": 24 + }, + "141:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": 612, + "id:3": 702, + "sizeY:3": 24 + }, + "142:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": 540, + "id:3": 703, + "sizeY:3": 24 + }, + "143:10": { + "sizeX:3": 24, + "x:3": -288, + "y:3": 576, + "id:3": 704, + "sizeY:3": 24 + }, + "144:10": { + "sizeX:3": 24, + "x:3": -432, + "y:3": 156, + "id:3": 706, + "sizeY:3": 24 + }, + "145:10": { + "sizeX:3": 24, + "x:3": -432, + "y:3": 120, + "id:3": 707, + "sizeY:3": 24 + }, + "146:10": { + "sizeX:3": 24, + "x:3": -396, + "y:3": 120, + "id:3": 709, + "sizeY:3": 24 + }, + "147:10": { + "sizeX:3": 24, + "x:3": -468, + "y:3": 156, + "id:3": 710, + "sizeY:3": 24 + }, + "148:10": { + "sizeX:3": 24, + "x:3": -504, + "y:3": 120, + "id:3": 711, + "sizeY:3": 24 + }, + "149:10": { + "sizeX:3": 24, + "x:3": -468, + "y:3": 120, + "id:3": 712, + "sizeY:3": 24 + }, + "150:10": { + "sizeX:3": 24, + "x:3": -504, + "y:3": 156, + "id:3": 713, + "sizeY:3": 24 + }, + "151:10": { + "sizeX:3": 24, + "x:3": -564, + "y:3": 420, + "id:3": 720, + "sizeY:3": 24 + } + }, + "lineID:3": 5, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Ingots", + "icon:10": { + "id:8": "minecraft:iron_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "1 of every ingot. thats all." + } + }, + "order:3": 15 + }, + "6:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 60, + "id:3": 19, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -132, + "id:3": 24, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -60, + "id:3": 36, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": -60, + "id:3": 75, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": -60, + "id:3": 76, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": -60, + "id:3": 77, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -60, + "id:3": 78, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -60, + "id:3": 79, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -96, + "id:3": 84, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -96, + "id:3": 146, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -96, + "id:3": 155, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -96, + "id:3": 156, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -24, + "id:3": 158, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -24, + "id:3": 159, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -24, + "id:3": 160, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": -96, + "id:3": 161, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": -60, + "id:3": 162, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": -24, + "id:3": 163, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": -96, + "id:3": 164, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": -60, + "id:3": 165, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": -24, + "id:3": 166, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 12, + "id:3": 167, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": -168, + "id:3": 168, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": -24, + "id:3": 169, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": -96, + "id:3": 170, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": -24, + "id:3": 171, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": -60, + "id:3": 172, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 48, + "id:3": 174, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 12, + "id:3": 175, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": -96, + "id:3": 176, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": -132, + "id:3": 178, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 48, + "x:3": 240, + "y:3": -108, + "id:3": 179, + "sizeY:3": 48 + }, + "32:10": { + "sizeX:3": 48, + "x:3": 240, + "y:3": -36, + "id:3": 180, + "sizeY:3": 48 + }, + "33:10": { + "sizeX:3": 48, + "x:3": 456, + "y:3": -72, + "id:3": 181, + "sizeY:3": 48 + }, + "34:10": { + "sizeX:3": 48, + "x:3": 288, + "y:3": -192, + "id:3": 182, + "sizeY:3": 48 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -24, + "id:3": 183, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 48, + "x:3": 420, + "y:3": 48, + "id:3": 184, + "sizeY:3": 48 + }, + "37:10": { + "sizeX:3": 48, + "x:3": 324, + "y:3": 48, + "id:3": 185, + "sizeY:3": 48 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 60, + "id:3": 186, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 12, + "id:3": 187, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 12, + "id:3": 188, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": -132, + "id:3": 189, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 12, + "id:3": 190, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": -180, + "id:3": 191, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": -60, + "id:3": 192, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": -60, + "id:3": 193, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 552, + "y:3": -60, + "id:3": 194, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 48, + "x:3": 24, + "y:3": 108, + "id:3": 215, + "sizeY:3": 48 + }, + "48:10": { + "sizeX:3": 48, + "x:3": 96, + "y:3": 108, + "id:3": 222, + "sizeY:3": 48 + }, + "49:10": { + "sizeX:3": 48, + "x:3": 168, + "y:3": 108, + "id:3": 223, + "sizeY:3": 48 + }, + "50:10": { + "sizeX:3": 48, + "x:3": 240, + "y:3": 108, + "id:3": 224, + "sizeY:3": 48 + }, + "51:10": { + "sizeX:3": 48, + "x:3": 312, + "y:3": 108, + "id:3": 225, + "sizeY:3": 48 + }, + "52:10": { + "sizeX:3": 48, + "x:3": 384, + "y:3": 108, + "id:3": 226, + "sizeY:3": 48 + }, + "53:10": { + "sizeX:3": 48, + "x:3": 456, + "y:3": 108, + "id:3": 227, + "sizeY:3": 48 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": -132, + "id:3": 231, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -60, + "id:3": 234, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": -132, + "id:3": 248, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": -132, + "id:3": 249, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 12, + "id:3": 250, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 60, + "id:3": 260, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": -132, + "id:3": 262, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": -60, + "id:3": 383, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": -228, + "id:3": 431, + "sizeY:3": 24 + } + }, + "lineID:3": 6, + "properties:10": { + "betterquesting:10": { + "visibility:8": "UNLOCKED", + "name:8": "Rockhounding", + "icon:10": { + "id:8": "rockhounding_chemistry:machines_a", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "Fuel:3": 0 + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Up to 8x ore processing, rare metals through Uninspected Minerals, as well as some of the most advanced alloys in the game." + } + }, + "order:3": 9 + }, + "7:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": -48, + "id:3": 12, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -48, + "id:3": 17, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -84, + "id:3": 55, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -12, + "id:3": 382, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -120, + "id:3": 539, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -12, + "id:3": 543, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -12, + "id:3": 544, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": -12, + "id:3": 545, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": 24, + "id:3": 571, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": 60, + "id:3": 573, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": 96, + "id:3": 574, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": 132, + "id:3": 575, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -48, + "id:3": 579, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -48, + "id:3": 580, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -48, + "id:3": 588, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -84, + "id:3": 596, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -72, + "y:3": -48, + "id:3": 597, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -48, + "id:3": 598, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -84, + "id:3": 610, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -48, + "id:3": 622, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -12, + "id:3": 678, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -12, + "id:3": 691, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -84, + "id:3": 757, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -12, + "id:3": 787, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 48, + "x:3": 168, + "y:3": -60, + "id:3": 789, + "sizeY:3": 48 + }, + "25:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -84, + "id:3": 794, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": -144, + "y:3": -84, + "id:3": 795, + "sizeY:3": 24 + } + }, + "lineID:3": 7, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 7: Ultimate Ingot", + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "WIP" + } + }, + "order:3": 6 + }, + "8:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -204, + "y:3": -108, + "id:3": 457, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": -168, + "y:3": -108, + "id:3": 484, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -240, + "y:3": -108, + "id:3": 485, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -204, + "y:3": -72, + "id:3": 489, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -240, + "y:3": -72, + "id:3": 490, + "sizeY:3": 24 + } + }, + "lineID:3": 8, + "properties:10": { + "betterquesting:10": { + "visibility:8": "HIDDEN", + "name:8": "Advanced Rocketry", + "icon:10": { + "id:8": "advancedrocketry:warpcore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "WIP" + } + }, + "order:3": 12 + }, + "9:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 132, + "id:3": 181, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 36, + "x:3": -30, + "y:3": -18, + "id:3": 257, + "sizeY:3": 36 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 151, + "y:3": 68, + "id:3": 456, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 294, + "y:3": -84, + "id:3": 489, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 36, + "x:3": 966, + "y:3": -18, + "id:3": 560, + "sizeY:3": 36 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 18, + "y:3": -12, + "id:3": 570, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": -12, + "id:3": 662, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": -12, + "id:3": 667, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 24, + "id:3": 679, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": -48, + "id:3": 705, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": -12, + "id:3": 715, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": -48, + "id:3": 716, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": -84, + "id:3": 717, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": -12, + "id:3": 719, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 16, + "id:3": 720, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": -48, + "id:3": 721, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 229, + "y:3": 104, + "id:3": 722, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 229, + "y:3": 68, + "id:3": 723, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 45, + "id:3": 724, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 73, + "id:3": 726, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": -96, + "id:3": 729, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 18, + "y:3": -54, + "id:3": 730, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": -96, + "id:3": 731, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 486, + "y:3": -12, + "id:3": 733, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 36, + "x:3": 560, + "y:3": -18, + "id:3": 734, + "sizeY:3": 36 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 661, + "y:3": 30, + "id:3": 735, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 24, + "id:3": 736, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 766, + "y:3": 30, + "id:3": 737, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 732, + "y:3": 30, + "id:3": 738, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 766, + "y:3": -53, + "id:3": 739, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 36, + "x:3": 810, + "y:3": -18, + "id:3": 740, + "sizeY:3": 36 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 712, + "y:3": -12, + "id:3": 741, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 661, + "y:3": -54, + "id:3": 742, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 870, + "y:3": 5, + "id:3": 743, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 870, + "y:3": -31, + "id:3": 744, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 922, + "y:3": -48, + "id:3": 745, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 922, + "y:3": 24, + "id:3": 746, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 712, + "y:3": 67, + "id:3": 747, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 698, + "y:3": 30, + "id:3": 748, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 766, + "y:3": 67, + "id:3": 749, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 816, + "y:3": 67, + "id:3": 750, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 904, + "y:3": -12, + "id:3": 752, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": -12, + "id:3": 759, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": -12, + "id:3": 760, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 36, + "x:3": 198, + "y:3": -18, + "id:3": 761, + "sizeY:3": 36 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 410, + "y:3": -12, + "id:3": 774, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 448, + "y:3": -12, + "id:3": 775, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 610, + "y:3": -12, + "id:3": 776, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 566, + "y:3": 30, + "id:3": 777, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 610, + "y:3": -54, + "id:3": 778, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 524, + "y:3": -54, + "id:3": 779, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 566, + "y:3": -54, + "id:3": 780, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 661, + "y:3": -12, + "id:3": 781, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 524, + "y:3": 30, + "id:3": 782, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 766, + "y:3": -12, + "id:3": 783, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 610, + "y:3": 67, + "id:3": 784, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 610, + "y:3": 30, + "id:3": 785, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 486, + "y:3": -54, + "id:3": 786, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": -54, + "id:3": 797, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 24, + "id:3": 799, + "sizeY:3": 24 + } + }, + "lineID:3": 9, + "properties:10": { + "betterquesting:10": { + "visibility:8": "UNLOCKED", + "name:8": "Nuclear Engineering", + "icon:10": { + "id:8": "nuclearcraft:rtg_plutonium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Make excessive amounts of power, then spend it all on hitting things together really hard!" + } + }, + "order:3": 10 + }, + "10:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 0, + "id:3": 48, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 0, + "id:3": 63, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": 36, + "id:3": 81, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": 36, + "id:3": 82, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": -36, + "id:3": 95, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 0, + "id:3": 96, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 0, + "id:3": 101, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 72, + "id:3": 149, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 36, + "x:3": 168, + "y:3": -48, + "id:3": 177, + "sizeY:3": 36 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 72, + "id:3": 203, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 36, + "id:3": 205, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 0, + "id:3": 216, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": -36, + "id:3": 217, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 0, + "id:3": 218, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 36, + "id:3": 219, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 0, + "id:3": 220, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 36, + "id:3": 245, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 0, + "id:3": 255, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": -36, + "id:3": 256, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": -72, + "id:3": 346, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": -36, + "id:3": 347, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 36, + "id:3": 348, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 0, + "id:3": 349, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 72, + "id:3": 350, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 36, + "id:3": 395, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 108, + "id:3": 407, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 72, + "id:3": 420, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 36, + "id:3": 424, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 36, + "id:3": 500, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 72, + "id:3": 512, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 108, + "id:3": 513, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -36, + "id:3": 515, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": -72, + "id:3": 516, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 36, + "id:3": 517, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 72, + "id:3": 538, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -36, + "id:3": 754, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 108, + "id:3": 788, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 72, + "id:3": 790, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 72, + "id:3": 791, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 108, + "id:3": 792, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": 0, + "id:3": 793, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": 72, + "id:3": 796, + "sizeY:3": 24 + } + }, + "lineID:3": 10, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Random Handy Things", + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderutilities:handybag", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "This is where you look to check if you\u0027ve unlocked any cool items you might not know about." + } + }, + "order:3": 13 + }, + "11:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": -60, + "id:3": 110, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -96, + "id:3": 111, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": -96, + "id:3": 112, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": -96, + "id:3": 114, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -132, + "id:3": 115, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -12, + "y:3": -96, + "id:3": 116, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -168, + "id:3": 117, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -204, + "id:3": 118, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": -96, + "id:3": 119, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -132, + "id:3": 120, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": -132, + "id:3": 122, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": -96, + "id:3": 123, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": -96, + "id:3": 124, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": -96, + "id:3": 125, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": -60, + "id:3": 126, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": -60, + "id:3": 127, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": -168, + "id:3": 128, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": -96, + "id:3": 129, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -132, + "id:3": 130, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": -96, + "id:3": 132, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 48, + "x:3": 324, + "y:3": -108, + "id:3": 133, + "sizeY:3": 48 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": -48, + "id:3": 134, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -12, + "y:3": -60, + "id:3": 135, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": -132, + "id:3": 136, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": -12, + "y:3": -24, + "id:3": 137, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": -12, + "id:3": 138, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": -12, + "id:3": 139, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": -144, + "id:3": 140, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": -132, + "id:3": 141, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": -60, + "id:3": 142, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": -144, + "id:3": 251, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": -60, + "id:3": 320, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": -132, + "id:3": 526, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": -96, + "id:3": 708, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": -204, + "id:3": 714, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": -168, + "id:3": 756, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": -96, + "id:3": 758, + "sizeY:3": 24 + } + }, + "lineID:3": 11, + "properties:10": { + "betterquesting:10": { + "visibility:8": "UNLOCKED", + "name:8": "Applied Energistics", + "icon:10": { + "id:8": "chisel:futura", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Digital storage and auto crafting!" + } + }, + "order:3": 11 + }, + "12:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 24, + "id:3": 6, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -12, + "id:3": 33, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 636, + "y:3": -24, + "id:3": 34, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 138, + "id:3": 38, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 600, + "y:3": -84, + "id:3": 46, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 624, + "y:3": 108, + "id:3": 54, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 102, + "id:3": 66, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 24, + "id:3": 67, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 600, + "y:3": 132, + "id:3": 114, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 24, + "id:3": 151, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 24, + "id:3": 153, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 462, + "y:3": 126, + "id:3": 154, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": 24, + "id:3": 195, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 42, + "id:3": 206, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": -12, + "id:3": 207, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 48, + "id:3": 209, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 6, + "id:3": 211, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": -12, + "id:3": 212, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 36, + "x:3": 558, + "y:3": 18, + "id:3": 228, + "sizeY:3": 36 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": -42, + "id:3": 230, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 48, + "x:3": 624, + "y:3": 12, + "id:3": 231, + "sizeY:3": 48 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 24, + "id:3": 235, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": -12, + "id:3": 282, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 504, + "y:3": 60, + "id:3": 283, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 684, + "y:3": 24, + "id:3": 292, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 66, + "id:3": 305, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": -24, + "id:3": 312, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 6, + "id:3": 324, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 96, + "id:3": 325, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": -30, + "id:3": 326, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -24, + "id:3": 328, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 60, + "id:3": 329, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 60, + "id:3": 330, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 360, + "y:3": 102, + "id:3": 331, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 24, + "id:3": 333, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": 6, + "id:3": 334, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 24, + "id:3": 335, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": -48, + "id:3": 340, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": -48, + "id:3": 344, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 600, + "y:3": 60, + "id:3": 365, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": 96, + "id:3": 372, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": -24, + "id:3": 373, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 24, + "id:3": 401, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 24, + "id:3": 402, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 66, + "id:3": 406, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 132, + "id:3": 419, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 624, + "y:3": -60, + "id:3": 425, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 96, + "id:3": 426, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": -48, + "id:3": 428, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 636, + "y:3": 72, + "id:3": 430, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 60, + "id:3": 432, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 546, + "y:3": 126, + "id:3": 440, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": -18, + "id:3": 444, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": 60, + "id:3": 445, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 510, + "y:3": 138, + "id:3": 447, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": -36, + "id:3": 471, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": -48, + "id:3": 473, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 600, + "y:3": -12, + "id:3": 482, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 96, + "id:3": 496, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": -6, + "y:3": 84, + "id:3": 509, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 60, + "id:3": 519, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 84, + "id:3": 525, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 84, + "id:3": 718, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": -18, + "id:3": 755, + "sizeY:3": 24 + } + }, + "lineID:3": 12, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 4: Refined Iron", + "icon:10": { + "id:8": "techreborn:ingot", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Progress through Immersive Engineering, start Blood Magic, and enter the Twilight Forest." + } + }, + "order:3": 3 + }, + "13:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -180, + "y:3": 84, + "id:3": 11, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": -378, + "y:3": 90, + "id:3": 43, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": 84, + "id:3": 157, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 36, + "id:3": 200, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -318, + "y:3": 36, + "id:3": 201, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -114, + "y:3": 90, + "id:3": 242, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": -150, + "y:3": 108, + "id:3": 244, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -48, + "id:3": 246, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 78, + "id:3": 247, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 36, + "id:3": 260, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": -174, + "y:3": 48, + "id:3": 288, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 72, + "id:3": 336, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": -84, + "y:3": 120, + "id:3": 339, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": 138, + "id:3": 351, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -456, + "y:3": 36, + "id:3": 354, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -210, + "y:3": 48, + "id:3": 358, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": -12, + "id:3": 360, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": -36, + "id:3": 364, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -258, + "y:3": -36, + "id:3": 368, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 36, + "x:3": -270, + "y:3": 30, + "id:3": 369, + "sizeY:3": 36 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -96, + "y:3": 60, + "id:3": 370, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -150, + "y:3": 138, + "id:3": 381, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -210, + "y:3": -12, + "id:3": 457, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 36, + "x:3": -420, + "y:3": 30, + "id:3": 459, + "sizeY:3": 36 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 0, + "id:3": 461, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 48, + "x:3": 120, + "y:3": 24, + "id:3": 468, + "sizeY:3": 48 + }, + "26:10": { + "sizeX:3": 24, + "x:3": -96, + "y:3": -12, + "id:3": 469, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": -216, + "y:3": -54, + "id:3": 472, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": -168, + "y:3": -12, + "id:3": 485, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": -174, + "y:3": 18, + "id:3": 489, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": -174, + "y:3": -42, + "id:3": 490, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": -48, + "y:3": 156, + "id:3": 491, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": -366, + "y:3": -12, + "id:3": 503, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": -72, + "id:3": 504, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": -276, + "y:3": -84, + "id:3": 505, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": -120, + "y:3": -84, + "id:3": 506, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": 132, + "id:3": 599, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": -306, + "y:3": 126, + "id:3": 603, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": -342, + "y:3": 114, + "id:3": 604, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 0, + "id:3": 798, + "sizeY:3": 24 + } + }, + "lineID:3": 13, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 6: Iridium", + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 135, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Build the Void Miner!" + } + }, + "order:3": 5 + }, + "14:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -24, + "y:3": -156, + "id:3": 19, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": -180, + "id:3": 50, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 48, + "x:3": -36, + "y:3": -120, + "id:3": 133, + "sizeY:3": 48 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -300, + "id:3": 148, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 36, + "x:3": -306, + "y:3": -78, + "id:3": 182, + "sizeY:3": 36 + }, + "5:10": { + "sizeX:3": 36, + "x:3": -156, + "y:3": -162, + "id:3": 196, + "sizeY:3": 36 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -156, + "id:3": 197, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": -72, + "y:3": -156, + "id:3": 198, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -84, + "id:3": 199, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": -240, + "id:3": 204, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 48, + "x:3": 204, + "y:3": -168, + "id:3": 232, + "sizeY:3": 48 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -204, + "id:3": 253, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 48, + "x:3": -210, + "y:3": -84, + "id:3": 257, + "sizeY:3": 48 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": -120, + "id:3": 264, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": -192, + "id:3": 265, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -192, + "id:3": 266, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": -192, + "id:3": 267, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": -192, + "id:3": 269, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": -336, + "y:3": -156, + "id:3": 270, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -12, + "id:3": 284, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": -264, + "y:3": -156, + "id:3": 307, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -156, + "id:3": 310, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": -300, + "y:3": -156, + "id:3": 311, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -240, + "id:3": 327, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -48, + "id:3": 332, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": -156, + "id:3": 337, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -156, + "id:3": 338, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -372, + "id:3": 342, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -336, + "id:3": 343, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": -336, + "id:3": 345, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -84, + "id:3": 352, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": -156, + "id:3": 354, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 48, + "x:3": -36, + "y:3": -216, + "id:3": 355, + "sizeY:3": 48 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -276, + "id:3": 357, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": -48, + "y:3": -288, + "id:3": 361, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": -84, + "y:3": -288, + "id:3": 363, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -120, + "id:3": 366, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": -12, + "y:3": -252, + "id:3": 367, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": -192, + "y:3": -228, + "id:3": 371, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": -240, + "id:3": 380, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -120, + "id:3": 397, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -192, + "id:3": 398, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -228, + "id:3": 403, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -228, + "id:3": 404, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": -48, + "id:3": 405, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": -246, + "y:3": -72, + "id:3": 431, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": -204, + "id:3": 441, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -348, + "id:3": 443, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": -264, + "id:3": 448, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": -108, + "id:3": 450, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": -108, + "y:3": -156, + "id:3": 455, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": -150, + "y:3": -108, + "id:3": 456, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": -252, + "id:3": 460, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": -84, + "y:3": -216, + "id:3": 463, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": -216, + "id:3": 464, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": -228, + "y:3": -228, + "id:3": 465, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": -180, + "id:3": 466, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": -84, + "y:3": -252, + "id:3": 486, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": -48, + "y:3": -252, + "id:3": 487, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": -156, + "y:3": -192, + "id:3": 488, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": -150, + "y:3": -72, + "id:3": 497, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": -120, + "y:3": -192, + "id:3": 498, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": -288, + "id:3": 499, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": -120, + "id:3": 511, + "sizeY:3": 24 + }, + "64:10": { + "sizeX:3": 24, + "x:3": -294, + "y:3": -120, + "id:3": 531, + "sizeY:3": 24 + }, + "65:10": { + "sizeX:3": 24, + "x:3": -150, + "y:3": -36, + "id:3": 570, + "sizeY:3": 24 + }, + "66:10": { + "sizeX:3": 24, + "x:3": -186, + "y:3": -24, + "id:3": 732, + "sizeY:3": 24 + }, + "67:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": -132, + "id:3": 753, + "sizeY:3": 24 + }, + "68:10": { + "sizeX:3": 24, + "x:3": -330, + "y:3": -120, + "id:3": 800, + "sizeY:3": 24 + } + }, + "lineID:3": 14, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 5: Osmium", + "icon:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Progress through Tech Reborn, and finish the Rockhounding prepossessing of Uninspected Materials." + } + }, + "order:3": 4 + }, + "15:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 72, + "id:3": 7, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 72, + "id:3": 9, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 72, + "id:3": 10, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 72, + "id:3": 18, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 108, + "id:3": 21, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 72, + "id:3": 22, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 108, + "id:3": 23, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 186, + "y:3": 108, + "id:3": 25, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 72, + "id:3": 26, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 48, + "x:3": 480, + "y:3": 24, + "id:3": 27, + "sizeY:3": 48 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 144, + "id:3": 35, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 144, + "id:3": 42, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 96, + "id:3": 44, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": -84, + "id:3": 45, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": -12, + "id:3": 51, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": -48, + "id:3": 52, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": -48, + "id:3": 69, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 552, + "y:3": 6, + "id:3": 208, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 36, + "id:3": 213, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 360, + "y:3": 36, + "id:3": 236, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 36, + "id:3": 237, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 36, + "id:3": 238, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 108, + "id:3": 252, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 72, + "id:3": 274, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 0, + "id:3": 297, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 0, + "id:3": 298, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 0, + "id:3": 299, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 312, + "y:3": 0, + "id:3": 300, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 36, + "id:3": 301, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": -48, + "id:3": 302, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 36, + "id:3": 303, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": -48, + "id:3": 304, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": -48, + "id:3": 319, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 528, + "y:3": 96, + "id:3": 396, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 0, + "id:3": 410, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 0, + "id:3": 411, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": -48, + "id:3": 412, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": -48, + "id:3": 413, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": -84, + "id:3": 414, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 36, + "id:3": 415, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 36, + "id:3": 416, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": -84, + "id:3": 417, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 36, + "id:3": 418, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 108, + "id:3": 423, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 528, + "y:3": -24, + "id:3": 462, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 552, + "y:3": 66, + "id:3": 502, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 0, + "id:3": 508, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 72, + "id:3": 537, + "sizeY:3": 24 + } + }, + "lineID:3": 15, + "properties:10": { + "betterquesting:10": { + "visibility:8": "ALWAYS", + "name:8": "Chapter 2: Basic Alloying", + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Borrow deep underground for fiery Embers and look to the stars to build a Smeltery. Create metal tool parts as well as mix metals into alloys." + } + }, + "order:3": 1 + }, + "16:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": -18, + "y:3": -240, + "id:3": 20, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 246, + "y:3": 24, + "id:3": 68, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -240, + "id:3": 87, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": -60, + "y:3": -204, + "id:3": 88, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": -36, + "y:3": -180, + "id:3": 89, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": -12, + "y:3": -156, + "id:3": 90, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": -132, + "id:3": 91, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": -108, + "id:3": 92, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": -84, + "id:3": 106, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": -60, + "id:3": 109, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": -36, + "id:3": 113, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -12, + "id:3": 144, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 12, + "id:3": 173, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 36, + "id:3": 229, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 60, + "id:3": 243, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": -114, + "y:3": -156, + "id:3": 254, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": -264, + "id:3": 268, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": -90, + "y:3": -132, + "id:3": 271, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": -216, + "id:3": 308, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": -192, + "id:3": 316, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": -168, + "id:3": 323, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": -144, + "id:3": 353, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": -120, + "id:3": 399, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": -96, + "id:3": 400, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": -72, + "id:3": 421, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 276, + "y:3": -48, + "id:3": 429, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": -24, + "id:3": 433, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 0, + "id:3": 434, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": -24, + "id:3": 435, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": -66, + "y:3": -108, + "id:3": 436, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": -42, + "y:3": -84, + "id:3": 437, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": -18, + "y:3": -60, + "id:3": 439, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": -36, + "id:3": 458, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": -12, + "id:3": 467, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 12, + "id:3": 470, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 36, + "id:3": 481, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 60, + "id:3": 514, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": 84, + "id:3": 524, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 108, + "id:3": 527, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": -216, + "id:3": 528, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": -192, + "id:3": 536, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": -168, + "id:3": 559, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": -144, + "id:3": 619, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": -120, + "id:3": 695, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": -96, + "id:3": 696, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": -72, + "id:3": 725, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": -48, + "id:3": 728, + "sizeY:3": 24 + } + }, + "lineID:3": 16, + "properties:10": { + "betterquesting:10": { + "visibility:8": "HIDDEN", + "name:8": "Removed stuff", + "icon:10": { + "id:8": "minecraft:book", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "No Description" + } + }, + "order:3": 16 + } + }, + "questSettings:10": { + "betterquesting:10": { + "livesdef:3": 3, + "pack_name:8": "Multiblock Madness", + "home_anchor_y:5": 0.0, + "livesmax:3": 10, + "home_anchor_x:5": 0.5, + "editmode:1": 1, + "hardcore:1": 0, + "home_image:8": "betterquesting:textures/gui/new_cover.png", + "party_enable:1": 1, + "pack_version:3": 0, + "home_offset_x:3": -1, + "home_offset_y:3": 500 + } + } +} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/3dcrafter.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/3dcrafter.json new file mode 100644 index 000000000..261c66719 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/3dcrafter.json @@ -0,0 +1,477 @@ +{ + "registryname": "minifield-crafter", + "localizedname": "3D制造机", + "requires-blueprint": true, + "color": "757575", + "modifiers": [ + { + "x": [-2,-1,0,1,2], + "y": 0, + "z": [1,7], + "elements": "techreborn:machine_casing@1", + "description": "升级机械外壳来减少所需时间。会增加每tick消耗的能量。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.98 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.04 + } + ] + }, + { + "x": [-3,3], + "y": 0, + "z": [2,3,4,5,6], + "elements": "techreborn:machine_casing@1", + "description": "升级机械外壳来减少所需时间。会增加每tick消耗的能量。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.98 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.04 + } + ] + }, + { + "x": [-2,-1,0,1,2], + "y": 0, + "z": [1,7], + "elements": "techreborn:machine_casing@2", + "description": "升级机械外壳来减少所需时间。会增加每tick消耗的能量。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.96 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.08 + } + ] + }, + { + "x": [-3,3], + "y": 0, + "z": [2,3,4,5,6], + "elements": "techreborn:machine_casing@2", + "description": "升级机械外壳来减少所需时间。会增加每tick消耗的能量。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.96 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.08 + } + ] + } + ], + "parts": [ + { + "x": [-2,-1,0,1,2], + "y": 0, + "z": [1,7], + "elements": [ + "techreborn:machine_casing@0" + ] + }, + { + "x": [-3,3], + "y": 0, + "z": [2,3,4,5,6], + "elements": [ + "techreborn:machine_casing@0" + ] + }, + { + "x": [-1,0,1], + "y": 4, + "z": [3,4,5], + "elements": [ + "actuallyadditions:block_misc@8" + ] + }, + { + "x": [-2,-1,0,1,2], + "y": [1,2], + "z": [1,7], + "elements": [ + "thermalfoundation:glass_alloy@7" + ] + }, + { + "x": [-3,3], + "y": [1,2], + "z": [2,3,4,5,6], + "elements": [ + "thermalfoundation:glass_alloy@7" + ] + }, + { + "x": -4, + "y": 0, + "z": 4, + "elements": [ + "casings_item_energy" + ] + }, + { + "x": 4, + "y": 0, + "z": 4, + "elements": [ + "casings_item_energy" + ] + }, + { + "x": 0, + "y": 0, + "z": 8, + "elements": [ + "casings_item_energy" + ] + }, + { + "x": 0, + "y": 1, + "z": 8, + "elements": [ + "fieldprojector" + ] + }, + { + "x": 4, + "y": 1, + "z": 4, + "elements": [ + "fieldprojector" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "fieldprojector" + ] + }, + { + "x": -4, + "y": 1, + "z": 4, + "elements": [ + "fieldprojector" + ] + }, + { + "x": 1, + "y": 4, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -1, + "y": 4, + "z": 2, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 4, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 4, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 0, + "y": 4, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 4, + "z": 6, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 2, + "y": 4, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 3, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": 4, + "z": 5, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 2, + "y": 4, + "z": 5, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 4, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 3, + "y": 3, + "z": 4, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 4, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 3, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": 3, + "z": 7, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -1, + "y": 3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 3, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 3, + "z": 7, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 1, + "y": 3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 3, + "z": 7, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 3, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": 2, + "y": 4, + "z": 3, + "elements": [ + "actuallyadditions:block_misc@7" + ] + }, + { + "x": -2, + "y": 4, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 4, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assembler.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assembler.json new file mode 100644 index 000000000..af483cc06 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assembler.json @@ -0,0 +1,842 @@ +{ + "registryname": "assembler", + "localizedname": "装配机", + "requires-blueprint": true, + "color": "A5A5A5", + "parts": [ + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "casings_item_fluid_energy" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 1, + "y": -1, + + "z": 0, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 0, + "y": 3, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 3, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 0, + "y": 3, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:molecular_assembler@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 3, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "appliedenergistics2:interface@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": 3, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:molecular_assembler@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@6" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_unit@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technicalnew@6" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "chisel:tyrian@15" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_storage_1k@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:crafting_accelerator@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk1.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk1.json new file mode 100644 index 000000000..21b505450 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk1.json @@ -0,0 +1,251 @@ +{ + "registryname": "assemblermkone", + "localizedname": "基础装配机", + "requires-blueprint": true, + "color": "D9D9D9", + "modifiers": [ + { + "x": 0, + "y": 1, + "z": 1, + "elements": "thermalfoundation:storage@6", + "description": "2x 速度,2.67x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.50 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.333 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "mekanism:basicblock@0", + "description": "3x 速度,4x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.333 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.333 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "thermalfoundation:storage_alloy@7", + "description": "2.5x 速度,5x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.40 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "plustic:osgloglasblock@0", + "description": "3.75x 速度,7.5x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.267 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + } + ] + }, + { + "x": [-1,1], + "y": 1, + "z": [0,2], + "elements": "techreborn:machine_casing@1", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.93 + } + ] + }, + { + "x": [-1,1], + "y": 1, + "z": [0,2], + "elements": "techreborn:machine_casing@2", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.87 + } + ] + }, + { + "x": [-1,1], + "y": 1, + "z": [0,2], + "elements": "techreborn:fusion_coil", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.81 + } + ] + } + ], + "parts": [ + { + "x": [-1,0,1], + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration0@2" + ] + }, + { + "x": [-1,0,1], + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-1,1], + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-1,1], + "y": 1, + "z": [0,2], + "elements": [ + "techreborn:machine_casing@0" + ] + }, + { + "x": [-1,1], + "y": 1, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalelectricalsteel" + ] + }, + { + "x": 0, + "y": 1, + "z": [0,2], + "elements": [ + "jaopca:block_sheetmetalelectricalsteel" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "techreborn:storage2@10" + ] + }, + { + "x": 1, + "y": [1,2,3], + "z": -1, + "elements": [ + "techreborn:refined_iron_fence" + ] + }, + { + "x": 2, + "y": [1,2,3], + "z": 2, + "elements": [ + "techreborn:refined_iron_fence" + ] + }, + { + "x": -1, + "y": [1,2,3], + "z": 3, + "elements": [ + "techreborn:refined_iron_fence" + ] + }, + { + "x": -2, + "y": [1,2,3], + "z": 0, + "elements": [ + "techreborn:refined_iron_fence" + ] + }, + { + "x": [-1,1], + "y": 3, + "z": 0, + "elements": [ + "techreborn:refined_iron_fence" + ] + }, + { + "x": [-1,1], + "y": 3, + "z": 2, + "elements": [ + "techreborn:refined_iron_fence" + ] + } + ] + } \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk2.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk2.json new file mode 100644 index 000000000..1c5e4c1c9 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk2.json @@ -0,0 +1,243 @@ +{ + "registryname": "assemblermktwo", + "localizedname": "高级装配及", + "requires-blueprint": true, + "color": "B0B0B0", + "modifiers": [ + { + "x": 0, + "y": 1, + "z": 1, + "elements": "thermalfoundation:storage@7", + "description": "3x 速度,4x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.333 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.333 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "techreborn:storage2@0", + "description": "1.5x 速度,3x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.667 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "plustic:osmiridiumblock@0", + "description": "3.75x 速度,7.5x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.267 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "enderio:block_alloy_endergy@3", + "description": "4.8x 速度,1.2x 流体消耗,10.8x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.208 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2.25 + }, + { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 1.2 + } + ] + }, + { + "x": [-3,-1,1,3], + "y": 1, + "z": [0,2], + "elements": "techreborn:machine_casing@2", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.93 + } + ] + }, + { + "x": [-3,-1,1,3], + "y": 1, + "z": [0,2], + "elements": "techreborn:fusion_coil", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.87 + } + ] + } + ], + "parts": [ + { + "x": [-3,-2,-1,0,1,2,3], + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration0@2" + ] + }, + { + "x": [-3,-2,2,3], + "y": 0, + "z": [0,2], + "elements": [ + "mekanism:plasticblock@7" + ] + }, + { + "x": [-1,0,1], + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-1,1], + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-3,-1,1,3], + "y": 1, + "z": [0,2], + "elements": [ + "techreborn:machine_casing@1" + ] + }, + { + "x": [-2,2], + "y": 1, + "z": [0,2], + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": [-3,-2,-1,1,2,3], + "y": 1, + "z": 1, + "elements": [ + "libvulpes:structuremachine" + ] + }, + { + "x": 0, + "y": 1, + "z": [0,2], + "elements": [ + "libvulpes:structuremachine" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "techreborn:storage@2", + "techreborn:storage@10" + ] + }, + { + "x": [1,-3], + "y": [1,2,3], + "z": -1, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [-1,3], + "y": [1,2,3], + "z": 3, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [1,-3], + "y": 3, + "z": 0, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [-1,3], + "y": 3, + "z": 2, + "elements": [ + "mekanism:plasticfence@15" + ] + } + ] + } \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk3.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk3.json new file mode 100644 index 000000000..ddaade59f --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk3.json @@ -0,0 +1,298 @@ +{ + "registryname": "assemblermkthree", + "localizedname": "精英装配机", + "requires-blueprint": true, + "color": "4F4F4F", + "modifiers": [ + { + "x": 0, + "y": 1, + "z": 1, + "elements": "extendedcrafting:storage@3", + "description": "2x 速度,2.66x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.5 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.333 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "extendedcrafting:storage@7", + "description": "2.5x 速度,5x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.4 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "avaritia:block_resource@2", + "description": "3x 速度,4x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.333 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 1.333 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "extendedcrafting:storage@4", + "description": "3.75x 速度,1.3x 流体消耗,7.5x 能量消耗", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.267 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + }, + { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 1.3 + } + ] + }, + { + "x": [-3,-1,1,3], + "y": 1, + "z": [0,2], + "elements": "techreborn:fusion_coil", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.93 + } + ] + }, + { + "x": [4,-4], + "y": 1, + "z": 1, + "elements": "techreborn:fusion_coil", + "description": "升级机械外壳来减少所需时间。", + "modifiers": [ + { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.93 + } + ] + } + ], + "parts": [ + { + "x": [-3,-2,-1,0,1,2,3], + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration0@2" + ] + }, + { + "x": [-3,-2,2,3], + "y": 0, + "z": [0,2], + "elements": [ + "mekanism:plasticblock@7" + ] + }, + { + "x": [-1,0,1], + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-1,1], + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-3,-1,1,3], + "y": 1, + "z": [0,2], + "elements": [ + "techreborn:machine_casing@2" + ] + }, + { + "x": [-2,2], + "y": 1, + "z": [0,2], + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": [-3,-2,-1,1,2,3], + "y": 1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6" + ] + }, + { + "x": 0, + "y": 1, + "z": [0,2], + "elements": [ + "environmentaltech:structure_frame_6" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "extendedcrafting:storage@0" + ] + }, + { + "x": [1,-3], + "y": [1,2,3], + "z": -1, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [-1,3], + "y": [1,2,3], + "z": 3, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [1,-3], + "y": 3, + "z": 0, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [-1,3], + "y": 3, + "z": 2, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [4,-4], + "y": 0, + "z": 1, + "elements": [ + "jaopca:block_scaffoldingstainlesssteel" + ] + }, + { + "x": [4,-4], + "y": 1, + "z": 1, + "elements": [ + "techreborn:machine_casing@2" + ] + }, + { + "x": [4,-4], + "y": [2,3], + "z": 1, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [4,-4], + "y": 4, + "z": 1, + "elements": [ + "jaopca:block_sheetmetalstainlesssteel" + ] + }, + { + "x": [3,2,1,-1,-2,-3], + "y": 4, + "z": 1, + "elements": [ + "jaopca:block_scaffoldingstainlesssteel" + ] + }, + { + "x": 0, + "y": 4, + "z": 1, + "elements": [ + "qmd:discharge_lamp@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "mekanism:plasticfence@15" + ] + } + ] + } \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk4.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk4.json new file mode 100644 index 000000000..1d5f61971 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/assemblermk4.json @@ -0,0 +1,284 @@ +{ + "registryname": "assemblermkfour", + "localizedname": "批量装配机", + "requires-blueprint": true, + "color": "F5F5F5", + "modifiers": [ + { + "x": 0, + "y": 1, + "z": 1, + "elements": "extendedcrafting:storage@4", + "description": "提高两倍配方的输入输出数量,2x 能量消耗。", + "modifiers": [ + { + "io": "input", + "target": "item", + "operation": 1, + "multiplier": 2 + }, + { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 2 + }, + { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 2 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 2 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "avaritia:block_resource@0", + "description": "提高四倍配方的输入输出数量,3x 能量消耗。", + "modifiers": [ + { + "io": "input", + "target": "item", + "operation": 1, + "multiplier": 4 + }, + { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 4 + }, + { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 4 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 3 + } + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": "avaritia:block_resource@1", + "description": "提高十六倍配方的输入输出数量,25%概率不消耗流体,4x 能量消耗。", + "modifiers": [ + { + "io": "input", + "target": "item", + "operation": 1, + "multiplier": 16 + }, + { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 16 + }, + { + "io": "input", + "target": "fluid", + "operation": 0, + "multiplier": -0.25, + "affectChance": true + }, + { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 16 + }, + { + "io": "input", + "target": "energy", + "operation": 1, + "multiplier": 4 + } + ] + } + ], + "parts": [ + { + "x": [-3,-2,-1,0,1,2,3], + "y": 0, + "z": 1, + "elements": [ + "libvulpes:coil0@10" + ] + }, + { + "x": [-3,-2,2,3], + "y": 0, + "z": [0,2], + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": [-1,0,1], + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-1,1], + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4", + "modularmachinery:blockinputbus", + "modularmachinery:blockenergyinputhatch", + "modularmachinery:blockfluidinputhatch", + "modularmachinery:blockoutputbus" + ] + }, + { + "x": [-3,-1,1,3], + "y": 1, + "z": [0,2], + "elements": [ + "techreborn:fusion_coil" + ] + }, + { + "x": [-2,2], + "y": 1, + "z": [0,2], + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": [-3,-2,-1,1,2,3], + "y": 1, + "z": 1, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 0, + "y": 1, + "z": [0,2], + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "avaritia:block_resource@2" + ] + }, + { + "x": [4,-4], + "y": 0, + "z": 1, + "elements": [ + "techreborn:machine_frame@0" + ] + }, + { + "x": [4,-4], + "y": 1, + "z": 1, + "elements": [ + "techreborn:fusion_coil" + ] + }, + { + "x": -4, + "y": 2, + "z": 1, + "elements": [ + "minecraft:stone_slab@7" + ] + }, + { + "x": -4, + "y": 3, + "z": 1, + "elements": [ + "minecraft:stone_slab@15" + ] + }, + { + "x": [3,1,-1,-3,-4], + "y": 4, + "z": 1, + "elements": [ + "techreborn:machine_frame@0" + ] + }, + { + "x": [-2,2], + "y": 4, + "z": 1, + "elements": [ + "qmd:discharge_lamp@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 1, + "elements": [ + "techreborn:fusion_coil" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": 2, + "y": 3, + "z": 2, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": -2, + "y": 3, + "z": 0, + "elements": [ + "mekanism:plasticfence@15" + ] + }, + { + "x": [-2,2], + "y": 4, + "z": [0,2], + "elements": [ + "mekanism:plasticfence@15" + ] + } + ] + } \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/darknesscollector.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/darknesscollector.json new file mode 100644 index 000000000..ab7ce8b29 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/darknesscollector.json @@ -0,0 +1,879 @@ +{ + "registryname": "darkness-collector", + "localizedname": "暗影冷凝器", + "requires-blueprint": true, + "color": "34c7bd", + "modifiers": [ + { + "x": 0, + "y": 2, + "z": 4, + "elements": "environmentaltech:aethium@0", + "description": "在位于后侧的机械电路板上放置此方块使处理时间减半", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.5 + } + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": "iceandfire:dragonsteel_ice_block@0", + "description": "在位于左侧的机械电路板上放置此方块使所需流体减半", + "modifier": { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 0.5 + } + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": "deepmoblearning:infused_ingot_block@0", + "description": "在位于右侧的机械电路板上放置此方块可20%几率不消耗材料", + "modifier": { + "io": "input", + "target": "item", + "operation": 0, + "multiplier": -0.2, + "affectChance": true + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumcraft:metal_void", + "description": "在位于中间的机械电路板上放置以获得2倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 2.0 + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumadditions:mithrillium_block", + "description": "在位于中间的机械电路板上放置以获得3倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 3.0 + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumadditions:adaminite_block", + "description": "在位于中间的机械电路板上放置以获得4倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 4.0 + } + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": "thaumadditions:mithminite_block", + "description": "在位于中间的机械电路板上放置以获得5倍物品输出", + "modifier": { + "io": "output", + "target": "item", + "operation": 1, + "multiplier": 5.0 + } + } + ], + "parts": [ + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "casings_item_fluid" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "casings_item_fluid" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "casings_item_fluid" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 7, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 5, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 7, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 5, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -2, + "y": 8, + "z": 3, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 8, + "z": 3, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 6, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -2, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 5, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 5, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 5, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 3, + "y": 7, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": -3, + "y": 8, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": -2, + "y": 8, + "z": 2, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 8, + "z": 2, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 3, + "y": 8, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": 2, + "y": 6, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": -2, + "y": 7, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 7, + "z": 1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 7, + "z": 5, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": -2, + "y": 8, + "z": 1, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -1, + "y": 6, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 6, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 2, + "y": 8, + "z": 1, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 6, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 6, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 8, + "z": 5, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": 0, + "y": 6, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 6, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 4, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "enderio:block_alloy_endergy@2" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 8, + "z": -1, + "elements": [ + "chisel:energizedvoidstone@4" + ] + }, + { + "x": -1, + "y": 7, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 7, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 7, + "z": 0, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 7, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 5, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 7, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 4, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 5, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 5, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "enderio:block_fluid_ender_distillation@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 0, + "y": 7, + "z": -1, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 8, + "z": 0, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 0, + "y": 8, + "z": 0, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 8, + "z": 0, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 8, + "z": 4, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -1, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 8, + "z": 4, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": -1, + "y": 4, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 8, + "z": 4, + "elements": [ + "fossil:obsidian_spikes@0" + ] + }, + { + "x": 1, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_5@0" + ] + }, + { + "x": 2, + "y": 6, + "z": 3, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 1, + "y": 4, + "z": 2, + "elements": [ + "chisel:energizedvoidstone@2" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "libvulpes:advstructuremachine@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/heavens-forge.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/heavens-forge.json new file mode 100644 index 000000000..8a08ae362 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/heavens-forge.json @@ -0,0 +1,677 @@ +{ + "registryname": "heavens-forge", + "localizedname": "天堂锻炉", + "requires-blueprint": true, + "color": "411e57", + "modifiers": [ + { + "x": [1,-1], + "y": [0,1], + "z": [0,2], + "elements": "extendedcrafting:lamp", + "description": "往午夜金属框架中添加流明精华以减少所需时间。", + "modifier": { + "io": "input", + "target": "duration", + "operation": 1, + "multiplier": 0.90 + } + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": "avaritia:block_resource@2", + "description": "替换晶素(Crystaltine)块以减半所需流体。", + "modifier": { + "io": "input", + "target": "fluid", + "operation": 1, + "multiplier": 0.5 + } + } + + ], + "parts": [ + + { + "x": [1,-1], + "y": [0,1], + "z": [0,2], + "elements": [ + "extendedcrafting:frame" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modulardiversity:blockmeklaseracceptor@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 4, + "y": -1, + "z": 1, + "elements": [ + "item_fluid" + ] + }, + { + "x": -4, + "y": -1, + "z": 1, + "elements": [ + "item_fluid" + ] + }, + { + "x": 4, + "y": 0, + "z": 2, + "elements": [ + "item_fluid" + ] + }, + { + "x": -4, + "y": 0, + "z": 2, + "elements": [ + "item_fluid" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -4, + "y": 0, + "z": 0, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 4, + "y": 0, + "z": 0, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -5, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": 0, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -5, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 4, + "y": -1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -4, + "y": 1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -3, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -5, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": -5, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -4, + "y": 1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -4, + "y": -1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": 4, + "y": 1, + "z": 0, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -5, + "y": -1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 5, + "y": 1, + "z": 0, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 4, + "y": 1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": 1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 5, + "y": -1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -5, + "y": 0, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + "elements": [ + "thaumicaugmentation:starfield_glass@2" + ] + }, + { + "x": 5, + "y": 0, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -5, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -4, + "y": 1, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -5, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "thaumcraft:metal_alchemical_advanced@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "techreborn:storage2@1" + ] + }, + { + "x": 4, + "y": 1, + "z": 1, + "elements": [ + "twilightforest:block_storage@1" + ] + }, + { + "x": 5, + "y": 1, + "z": 1, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": 4, + "y": -1, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": 5, + "y": -1, + "z": 2, + "elements": [ + "techreborn:machine_frame@2" + ] + }, + { + "x": -5, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "environmentaltech:structure_frame_6@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "extendedcrafting:storage@3" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + "elements": [ + "mekanism:basicblock@8" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/lowgravitydepositionchamber.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/lowgravitydepositionchamber.json new file mode 100644 index 000000000..d9fa339a7 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/lowgravitydepositionchamber.json @@ -0,0 +1,4567 @@ +{ + "registryname": "lowgravitydepositionchamber", + "localizedname": "低引力凝华仓", + "requires-blueprint": true, + "color": "222222", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": 6, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 6, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -5, + "y": 9, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 8, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 4, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 4, + "y": 8, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 2, + "y": 4, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 9, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 5, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 5, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 10, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 2, + "y": 6, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 11, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 1, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -1, + "y": 7, + "z": 1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 1, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": 7, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 12, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 0, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 13, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 14, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -3, + "y": 8, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 8, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 9, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 15, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 4, + "y": 9, + "z": 0, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 11, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 16, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -1, + "y": 0, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 11, + + "elements": [ + "LGDC" + ] + }, + { + "x": 1, + "y": 0, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 11, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 11, + + "elements": [ + "LGDC" + ] + }, + { + "x": -1, + "y": -1, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 10, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 1, + "y": 1, + "z": 11, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 11, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 11, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 9, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 10, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 9, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 9, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 10, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 8, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -4, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 8, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 9, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 9, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 9, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 8, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 8, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 4, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 9, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 10, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 10, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 6, + "z": -4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -6, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 9, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 5, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 9, + "z": -2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 9, + "z": -2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -1, + "y": 9, + "z": -2, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 9, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 2, + "z": -5, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 0, + "y": 4, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 2, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 6, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 1, + "z": -5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": -5, + + "elements": [ + "LGDC" + ] + }, + { + "x": -1, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 9, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 3, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 1, + "z": -5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 6, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 9, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 0, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": -5, + + "elements": [ + "LGDC" + ] + }, + { + "x": 0, + "y": 2, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 2, + "z": -4, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 0, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 8, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 8, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 8, + "z": -1, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": 0, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 8, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -2, + "y": 8, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -5, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": -5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -1, + "y": 1, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": 1, + "z": 5, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": -1, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -6, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 1, + "y": 0, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 2, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": -4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -1, + "y": 2, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 8, + "y": 0, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -8, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -7, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -7, + "y": -1, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -6, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": 9, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 9, + "z": 8, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 9, + "z": 8, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 9, + "z": 8, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 2, + "y": 9, + "z": 8, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": -3, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": -3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -1, + "z": -4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": -3, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 5, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 7, + "y": 1, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 1, + "z": 4, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 7, + "y": -1, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 8, + "y": -1, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -8, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 0, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": -7, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 8, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 8, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 8, + "z": 7, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -3, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 4, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 8, + "z": 7, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 6, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": 8, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": -3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 0, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 4, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 6, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 8, + "y": 2, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 0, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": -8, + "y": 1, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": -8, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 9, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -6, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": -3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -5, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 5, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 1, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 9, + "z": 7, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 4, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 5, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 4, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -2, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -4, + "y": -1, + "z": -3, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": 1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 5, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 1, + "z": 3, + + "elements": [ + "LGDC" + ] + }, + { + "x": 7, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": -1, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 2, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -8, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 2, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -7, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -6, + "y": 2, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 8, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 6, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": 8, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 6, + "z": 5, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": 2, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 2, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 6, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 2, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 7, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 8, + "y": 0, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -8, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -7, + "y": 3, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -4, + "y": 9, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -6, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": -2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -6, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 5, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 4, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 5, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 3, + "y": -1, + "z": -2, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 5, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 5, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 1, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 5, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 4, + "y": 9, + "z": 6, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 3, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": -1, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -2, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 3, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": -1, + "z": -2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -5, + "y": -1, + "z": -2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 3, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 6, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": 7, + "y": 1, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 6, + "y": -1, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 1, + "z": 2, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -8, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 4, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -7, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -4, + "y": 8, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 4, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 4, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 4, + "y": 8, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 4, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 4, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 6, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 7, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 8, + "y": 2, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -7, + "y": 5, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -5, + "y": 9, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 6, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -3, + "y": 5, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -2, + "y": 7, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -1, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 3, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 0, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 1, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 0, + "y": 5, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": 1, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": 2, + "y": 7, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 0, + "y": 3, + "z": 2, + "elements": [ + "rockhounding_chemistry:alloy_blocks_deco@0" + ] + }, + { + "x": 3, + "y": 7, + "z": 4, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -1, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 5, + "y": 9, + "z": 5, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 3, + "y": 5, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": 3, + "y": 3, + "z": 2, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "contenttweaker:sheetmetal_nimonic@0" + ] + }, + { + "x": -5, + "y": -1, + "z": -1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": -6, + "y": -1, + "z": -1, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": 7, + "y": 5, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -7, + "y": 6, + "z": 3, + "elements": [ + "qmd:discharge_lamp@2" + ] + }, + { + "x": -4, + "y": 8, + "z": 4, + "elements": [ + "contenttweaker:plating_elite@0" + ] + }, + { + "x": -3, + "y": 6, + "z": 3, + "elements": [ + "contenttweaker:scal_scaffolding@0" + ] + }, + { + "x": -3, + "y": 2, + "z": 1, + + "elements": [ + "qmd:containment_casing@0" + ] + }, + { + "x": 0, + "y": 6, + "z": 3, + "elements": [ + "techreborn:fusion_coil@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "techreborn:fusion_coil@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/mixer.json b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/mixer.json new file mode 100644 index 000000000..e97520fcc --- /dev/null +++ b/project/Multiblock Madness/1.2.1/config/modularmachinery/machinery/mixer.json @@ -0,0 +1,840 @@ +{ + "registryname": "mixer", + "localizedname": "混合器", + "requires-blueprint": true, + "color": "52565c", + "parts": [ + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "casings_mixer" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "casings_mixer" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "casings_mixer" + ] + }, + { + "x": 0, + "y": 0, + "z": 6, + "elements": [ + "casings_mixer" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + + { + "x": -1, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "cyclicmagic:block_storeempty@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_device0@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 0, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "cyclicmagic:block_storeempty@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_device1@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 6, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 6, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 6, + "elements": [ + "chisel:technical@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 6, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": -1, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 0, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 1, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:stone_decoration@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 6, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@8" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "advgenerators:efficiency_upgrade_tier1@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 1, + "z": 5, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 5, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 5, + "elements": [ + "advgenerators:efficiency_upgrade_tier1@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 5, + "elements": [ + "advgenerators:efficiency_upgrade_tier2@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 5, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@2" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "thermalfoundation:glass@3" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "thermalfoundation:glass@3" + ] + } + ]} \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/resources/advgenerators/lang/zh_cn.lang b/project/Multiblock Madness/1.2.1/resources/advgenerators/lang/zh_cn.lang new file mode 100644 index 000000000..9aa29d941 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/resources/advgenerators/lang/zh_cn.lang @@ -0,0 +1,18 @@ +// === Turbine Materials + + +item.advgenerators.turbine_blade_hslasteel.name=HSLA 钢制涡轮叶片 +item.advgenerators.turbine_rotor_hslasteel.name=HSLA 钢制涡轮转子 +item.advgenerators.turbine_kit_hslasteel.name=HSLA 钢制转子升级组件 +tile.advgenerators.turbine_hslasteel.name=HSLA 钢质涡轮机 + +item.advgenerators.turbine_blade_extreme.name=极限合金涡轮叶片 +item.advgenerators.turbine_rotor_extreme.name=极限合金涡轮转子 +item.advgenerators.turbine_kit_extreme.name=极限合金转子升级组件 +tile.advgenerators.turbine_extreme.name=极限合金涡轮机 + +item.advgenerators.turbine_blade_super.name=超级合金涡轮叶片 +item.advgenerators.turbine_rotor_super.name=超级合金涡轮转子 +item.advgenerators.turbine_kit_super.name=超级合金转子升级组件 +tile.advgenerators.turbine_super.name=超级合金涡轮机 + diff --git a/project/Multiblock Madness/1.2.1/resources/contenttweaker/lang/zh_cn.lang b/project/Multiblock Madness/1.2.1/resources/contenttweaker/lang/zh_cn.lang new file mode 100644 index 000000000..79c617f1e --- /dev/null +++ b/project/Multiblock Madness/1.2.1/resources/contenttweaker/lang/zh_cn.lang @@ -0,0 +1,101 @@ +tile.contenttweaker.sheetmetal_bronze.name=青铜金属块 +tile.contenttweaker.sheetmetal_refinediron.name=精炼铁金属块 +tile.contenttweaker.sheetmetal_thaumium.name=神秘锭金属块 +tile.contenttweaker.sheetmetal_brass.name=黄铜金属块 +tile.contenttweaker.sheetmetal_nimonic.name=铌锰合金块 +tile.contenttweaker.vanasteel_scaffolding.name=钒钢锭脚手架 +tile.contenttweaker.scal_scaffolding.name=钪铝合金脚手架 +tile.contenttweaker.bam_scaffolding.name=铝镁硼合金脚手架 +tile.contenttweaker.invar_scaffolding.name=殷钢脚手架 +tile.contenttweaker.nimonic_scaffolding.name=铌锰合金脚手架 +tile.contenttweaker.plating_basic.name=基础板块 +tile.contenttweaker.plating_advanced.name=高级板块 +tile.contenttweaker.plating_elite.name=精英板块 +tile.contenttweaker.plating_extreme.name=终极板块 +tile.contenttweaker.plating_du.name=枯竭铀板块 +tile.contenttweaker.starmetal_block.name=星辉块 + +item.contenttweaker.hastelloyfoil.name=哈氏合金薄片 +item.contenttweaker.goldfoil.name=金薄片 +item.contenttweaker.aluminumcasing.name=铝壳 +item.contenttweaker.inert_ingot.name=惰性金属锭 +item.contenttweaker.rod_bam.name=铝镁硼合金棒 +item.contenttweaker.rod_scal.name=钪铝合金棒 +item.contenttweaker.rod_vanasteel.name=钒钢锭棒 +item.contenttweaker.rod_nimonic.name=铌锰合金棒 +item.contenttweaker.greatwood_handle.name=宏伟木棍 +item.contenttweaker.slatedust.name=§e粉碎石板 +item.contenttweaker.activatedaspectuscopper.name=铜之星能元素象征 +item.contenttweaker.activatedaspectussilver.name=银之星能元素象征 +item.contenttweaker.activatedaspectusdawnstone.name=黎明石之星能元素象征 + +item.contenttweaker.token_tier1.name=等级1徽章 +item.contenttweaker.token_tier2.name=等级2徽章 +item.contenttweaker.token_tier3.name=等级3徽章 +item.contenttweaker.token_tier4.name=等级4徽章 +item.contenttweaker.token_tier5.name=等级5徽章 +item.contenttweaker.token_tier6.name=等级6徽章 +item.contenttweaker.token_tier7.name=等级7徽章 +item.contenttweaker.token_tier8.name=等级8徽章 + +item.contenttweaker.adamantine_ingot.name=精金锭 +item.contenttweaker.orichalcum_ingot.name=奥利哈尔钢锭 +item.contenttweaker.palladium_ingot.name=钯锭 +item.contenttweaker.terrasteel_coil.name=泰拉钢加热线圈 +item.contenttweaker.gearcrushinginvar.name=殷钢粉碎轮 +item.contenttweaker.gearcrushingsteel.name=钢粉碎轮 +item.contenttweaker.gearcrushingdarksteel.name=玄钢粉碎轮 +item.contenttweaker.gearcrushingcortensteel.name=耐候钢粉碎轮 +item.contenttweaker.gearcrushingvanasteel.name=钒钢锭粉碎轮 + +item.contenttweaker.agitatorinvar.name=殷钢搅拌器 +item.contenttweaker.agitatorsteel.name=钢搅拌器 +item.contenttweaker.agitatordarksteel.name=玄钢搅拌器 +item.contenttweaker.agitatorhydronalium.name=铝镁合金搅拌器 +item.contenttweaker.agitatorhastelloy.name=哈氏合金 搅拌器 + +item.contenttweaker.foilinvar.name=殷钢薄片 +item.contenttweaker.foilsteel.name=钢薄片 +item.contenttweaker.foildarksteel.name=玄钢薄片 +item.contenttweaker.foilhydronalium.name=铝镁合金薄片 + +item.contenttweaker.rodinvar.name=殷钢棒 +item.contenttweaker.rodsteel.name=钢棒 +item.contenttweaker.roddarksteel.name=玄钢棒 +item.contenttweaker.rodhydronalium.name=铝镁合金棒 + +item.contenttweaker.blood_crystal.name=鲜血水晶 +item.contenttweaker.adaptive_ingot.name=自适应金属锭 +item.contenttweaker.casingsteel.name=钢制外壳 +item.contenttweaker.casingplatinum.name=铂制外壳 +item.contenttweaker.purpleprint.name=§5多方块结构映射器 +item.contenttweaker.vis_meal.name=§5水晶催生粉 + +item.contenttweaker.ingot_xp.name=经验灌注荧石锭 +tile.contenttweaker.block_xp.name=经验灌注荧石 + +fluid.moltenEmbers=熔融余烬 +fluid.moltenBedrock=熔融基岩 +fluid.moltenTokenIron=等级1源质 +fluid.moltenTokenBronze=等级2源质 +fluid.moltenTokenSteel=等级3源质 +fluid.moltenTokenRefinedIron=等级4源质 +fluid.moltenTokenOsmium=等级5源质 +fluid.moltenTokenIridium=等级6源质 +fluid.moltenTokenUltimate=等级7源质 +fluid.moltenTokenInfinity=等级8源质 + + +item.contenttweaker.compressed_chrome.name=压缩铬 + +item.contenttweaker.matrix_deposition_+.name=正极凝华矩阵锭 +item.contenttweaker.matrix_deposition_-.name=负极凝华矩阵锭 +item.contenttweaker.neutronic.name=§l§8中子矩阵锭 +item.contenttweaker.incoherent.name=§l§c无逻辑矩阵锭 + +qmd.particle.filon.name=光子脉动 +qmd.particle.filon.desc=终极宇宙之力! + +tile.contenttweaker.sooty_block.name=炭灰外壳 + +item.contenttweaker.lazurite_gem.name=青金宝石 diff --git a/project/Multiblock Madness/1.2.1/resources/jaopca/lang/zh_cn.lang b/project/Multiblock Madness/1.2.1/resources/jaopca/lang/zh_cn.lang new file mode 100644 index 000000000..fe944fc35 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/resources/jaopca/lang/zh_cn.lang @@ -0,0 +1,4 @@ +item.jaopca.crushedlump.name=%s碎块 +item.jaopca.leachedshard.name=%s碎片 +tile.jaopca.sheetmetal.name=%s薄片 +tile.jaopca.scaffolding.name=%s脚手架 \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/resources/mekatweaker/lang/zh_cn.lang b/project/Multiblock Madness/1.2.1/resources/mekatweaker/lang/zh_cn.lang new file mode 100644 index 000000000..26559acda --- /dev/null +++ b/project/Multiblock Madness/1.2.1/resources/mekatweaker/lang/zh_cn.lang @@ -0,0 +1,2 @@ +infuse.chrome=铬 +infuse.experience=经验 \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/add-recipes-temp.zs b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/add-recipes-temp.zs new file mode 100644 index 000000000..23f6ded8b --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/add-recipes-temp.zs @@ -0,0 +1,498 @@ +########################################################################################## +#priority 100 +import crafttweaker.item.IItemStack; +import mods.jei.JEI.removeAndHide as rh; +import mods.jaopca.JAOPCA; +print("==================== loading mods add-recipes-temp.zs ===================="); +########################################################################################## + +### REMOVE RECIPES ### + +val recipestoRemove = +[ +, +, +, +, +, +//, +//, +//, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in recipestoRemove { + recipes.remove(item); +} + + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +/* +, +, +, +, +, +, +*/ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + mods.jei.JEI.removeAndHide(item); +} +recipes.removeShaped(, +[[null, , null], +[, , ], +[null, , null]]); +recipes.removeShaped(, [[, ],[, ]]); +recipes.removeShaped(, [[, , ]]); +recipes.removeShaped(, [[, , ]]); +recipes.removeShaped( * 6, [[, , ]]); +recipes.removeShapeless(, []); + +//-----------------just jei things +.displayName = "石英"; + +//mods.jei.JEI.addItem(); + +mods.jei.JEI.addItem(.withTag({textureBlock: {id: "tconstruct:metal", Count: 1 as byte, Damage: 4 as short}})); +mods.jei.JEI.addItem(.withTag({textureBlock: {id: "tconstruct:metal", Count: 1 as byte, Damage: 3 as short}})); + + + +//mods.jei.JEI.addItem(); +//mods.jei.JEI.addDescription(,"Your first Steel is made in the High Oven"); +.addTooltip(format.darkRed("你的第一块钢是通过高炉获得的")); +.addTooltip(format.darkRed("不常见的怪物掉落物")); +mods.jei.JEI.hideCategory("Painter"); +mods.jei.JEI.hideCategory("mekanism.combiner"); +mods.jei.JEI.hideCategory("EIOWC"); +mods.jei.JEI.hideCategory("EIOWO"); +mods.jei.JEI.hideCategory("thermalexpansion.factorizer_combine"); +mods.jei.JEI.hideCategory("thermalexpansion.factorizer_split"); +mods.jei.JEI.hideCategory("EIOTank"); +mods.jei.JEI.hideCategory("tinker_io:smart_output"); +mods.jei.JEI.hideCategory("embers.dawnstone_anvil"); + +### ADD ORE DICs ### + +val slimyMoss = ; +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); +slimyMoss.add(); + + +### Add recipes ### + + +//salt block +recipes.addShaped(, [[, ],[, ]]); + +//Chest reset +recipes.addShapeless(, []); + +//blindfold +recipes.addShaped(, [[, , ]]); + +//Id card +recipes.addShapeless(, [,]); + +//Tier 1 Drawer +//recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Metal Ladder coflict +recipes.addShaped( * 2, [[, , ],[null, null, null], [, , ]]); + +//Trapdoor conflict +recipes.addShaped( * 6, [[null, , null],[, , ], [, , ]]); +recipes.addShaped( * 6, [[null, , null],[, , ], [, , ]]); +recipes.addShaped( * 6, [[null, , null],[, , ], [, , ]]); +recipes.addShaped( * 6, [[null, , null],[, , ], [, , ]]); +recipes.addShaped( * 6, [[null, , null],[, , ], [, , ]]); + + +//Super Tome +/*mods.jei.JEI.removeAndHide(); +mods.jei.JEI.addItem(.withTag({"akashictome:data": { + tconstruct: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "tconstruct:book", Count: 1 as byte, tag: {"akashictome:definedMod": "tconstruct"}, Damage: 0 as short}, + integratedtunnels: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "integrateddynamics:on_the_dynamics_of_integration", Count: 1 as byte, tag: {"akashictome:definedMod": "integratedtunnels"}, Damage: 0 as short}, + astralsorcery: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "astralsorcery:itemjournal", Count: 1 as byte, tag: {"akashictome:definedMod": "astralsorcery"}, Damage: 0 as short}, + conarm: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "conarm:book", Count: 1 as byte, tag: {"akashictome:definedMod": "conarm"}, Damage: 0 as short}, + immersiveengineering: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "immersiveengineering:tool", Count: 1 as byte, tag: {"akashictome:definedMod": "immersiveengineering"}, Damage: 3 as short}, + arcanearchives: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "arcanearchives:tome_arcana", Count: 1 as byte, tag: {"akashictome:definedMod": "arcanearchives", Book: "arcanearchives:xml/tome.xml"}, Damage: 0 as short}, + qmd: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "qmd", "patchouli:book": "qmd:guide"}, Damage: 0 as short}, + valkyrielib: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "valkyrielib:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "valkyrielib"}, Damage: 0 as short}, + embers: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "embers:codex", Count: 1 as byte, tag: {"akashictome:definedMod": "embers"}, Damage: 0 as short}, + rftools: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_shape_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools"}, Damage: 0 as short}, + deepmoblearning: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "deepmoblearning", "patchouli:book": "deepmoblearning:book"}, Damage: 0 as short}, + solcarrot: {id: "solcarrot:food_book", Count: 1 as byte, tag: {"akashictome:definedMod": "solcarrot"}, Damage: 0 as short}, + rftools1: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools1"}, Damage: 0 as short}, + extendedcrafting: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "extendedcrafting:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "extendedcrafting"}, Damage: 0 as short}, + botania: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "botania:lexicon", Count: 1 as byte, tag: {"knowledge.minecraft": 1 as byte, "akashictome:definedMod": "botania", "knowledge.alfheim": 1 as byte, "knowledge.relic": 1 as byte}, Damage: 0 as short}, + bloodmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:bloodmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "bloodmagic"}, Damage: 0 as short}, + actuallyadditions: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "actuallyadditions:item_booklet", Count: 1 as byte, tag: {"akashictome:definedMod": "actuallyadditions"}, Damage: 0 as short}, + cyclicmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:cyclicmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "cyclicmagic"}, Damage: 0 as short}, + openblocks: {id: "openblocks:info_book", Count: 1 as byte, tag: {"akashictome:definedMod": "openblocks"}, Damage: 0 as short}, + cookingforblockheads: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "cookingforblockheads:recipe_book", Count: 1 as byte, tag: {"akashictome:definedMod": "cookingforblockheads"}, Damage: 1 as short}, + nuclearcraft: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "nuclearcraft", "patchouli:book": "nuclearcraft:guide"}, Damage: 0 as short}}}) +);*/ +recipes.addShaped(.withTag({"akashictome:data": { + tconstruct: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "tconstruct:book", Count: 1 as byte, tag: {"akashictome:definedMod": "tconstruct"}, Damage: 0 as short}, + integratedtunnels: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "integrateddynamics:on_the_dynamics_of_integration", Count: 1 as byte, tag: {"akashictome:definedMod": "integratedtunnels"}, Damage: 0 as short}, + astralsorcery: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "astralsorcery:itemjournal", Count: 1 as byte, tag: {"akashictome:definedMod": "astralsorcery"}, Damage: 0 as short}, + conarm: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "conarm:book", Count: 1 as byte, tag: {"akashictome:definedMod": "conarm"}, Damage: 0 as short}, + immersiveengineering: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "immersiveengineering:tool", Count: 1 as byte, tag: {"akashictome:definedMod": "immersiveengineering"}, Damage: 3 as short}, + arcanearchives: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "arcanearchives:tome_arcana", Count: 1 as byte, tag: {"akashictome:definedMod": "arcanearchives", Book: "arcanearchives:xml/tome.xml"}, Damage: 0 as short}, + qmd: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "qmd", "patchouli:book": "qmd:guide"}, Damage: 0 as short}, + valkyrielib: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "valkyrielib:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "valkyrielib"}, Damage: 0 as short}, + embers: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "embers:codex", Count: 1 as byte, tag: {"akashictome:definedMod": "embers"}, Damage: 0 as short}, + rftools: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_shape_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools"}, Damage: 0 as short}, + deepmoblearning: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "deepmoblearning", "patchouli:book": "deepmoblearning:book"}, Damage: 0 as short}, + solcarrot: {id: "solcarrot:food_book", Count: 1 as byte, tag: {"akashictome:definedMod": "solcarrot"}, Damage: 0 as short}, + rftools1: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "rftools:rftools_manual", Count: 1 as byte, tag: {"akashictome:definedMod": "rftools1"}, Damage: 0 as short}, + extendedcrafting: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "extendedcrafting:guide", Count: 1 as byte, tag: {"akashictome:definedMod": "extendedcrafting"}, Damage: 0 as short}, + botania: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "botania:lexicon", Count: 1 as byte, tag: {"knowledge.minecraft": 1 as byte, "akashictome:definedMod": "botania", "knowledge.alfheim": 1 as byte, "knowledge.relic": 1 as byte}, Damage: 0 as short}, + bloodmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:bloodmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "bloodmagic"}, Damage: 0 as short}, + actuallyadditions: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "actuallyadditions:item_booklet", Count: 1 as byte, tag: {"akashictome:definedMod": "actuallyadditions"}, Damage: 0 as short}, + cyclicmagic: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "guideapi:cyclicmagic-guide", Count: 1 as byte, tag: {"akashictome:definedMod": "cyclicmagic"}, Damage: 0 as short}, + openblocks: {id: "openblocks:info_book", Count: 1 as byte, tag: {"akashictome:definedMod": "openblocks"}, Damage: 0 as short}, + cookingforblockheads: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "cookingforblockheads:recipe_book", Count: 1 as byte, tag: {"akashictome:definedMod": "cookingforblockheads"}, Damage: 1 as short}, + nuclearcraft: {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "patchouli:guide_book", Count: 1 as byte, tag: {"akashictome:definedMod": "nuclearcraft", "patchouli:book": "nuclearcraft:guide"}, Damage: 0 as short}}}), +[[null, , null],[, , ], [null, , null]]); + +//Rope +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//Modem +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//XP Tank +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + +//Broken powersuit recipe +recipes.addShaped(, [[, , ],[, , ], [, null, ]]); + +//Prefab +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Beet Seeds +recipes.addShapeless(, []); + +//No more cooked carrots! +furnace.remove(, ); +recipes.removeShapeless(, [, , , ]); + +//Missing Salads +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); + +//Choco +furnace.remove(, ); +furnace.addRecipe(, , 0.0); + +//Iron Bars +recipes.addShaped( * 8, [[.withTag({Material: "iron"}), .withTag({Material: "iron"}), .withTag({Material: "iron"})], [.withTag({Material: "iron"}), .withTag({Material: "iron"}), .withTag({Material: "iron"})]]); + +//The Hacatu Fix +recipes.addShaped( * 8, [[, , ], [, , ]]); + +//Radiant Resonators +recipes.addShaped(, [[, , ],[, , ], [, null, ]]); +.addTooltip(format.red("每位玩家最多拥有3个")); + +//dark bars +recipes.addShaped( * 8, [[, , ], [, , ]]); +//end bars +recipes.addShaped( * 8, [[, , ], [, , ]]); + +recipes.addShapeless(, [,,,]); +recipes.addShaped( * 6, [[, , ],[null, null, null], [null, null, null]]); +recipes.addShaped( * 15, [[, , ],[, null, null], [, , ]]); + + +recipes.addShaped(, [[],[], []]); + + +recipes.addShapedMirrored(, [[, , ],[, , ], [, , ]]); +//recipes.addShapedMirrored(, [[, , ],[, , .withTag({Material: "copper"})], [, , ]]); + +//Fix blaze blocks +recipes.addShapeless( * 9, []); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShapeless( * 9, []); + + +recipes.addShapeless( * 3, []); + +//recipes.remove(); +//recipes.addShaped(, [[null, , null],[, .withTag({FluidName: "gold", Amount: 1000}), ], [null, , null]]); + +recipes.addShapeless(, [,,]); + +recipes.addShaped( * 2, [[, , ],[, null, ], [, , ]]); + +recipes.addShapeless( * 6, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 5, []); +recipes.addShapeless( * 3, []); + +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +.addTooltip("按下shift查看可用强化"); +.addTooltip("按下shift查看可用强化"); +.addShiftTooltip((format.yellow("- 增加荧石可增加传输速度\n"))+(format.red("- 增加红石可开启红石信号控制输入输出功能\n"))+(format.gray("- 增加铁可以使它在没有位置放置或过滤设置的物品时发出红石信号\n"))+(format.aqua("- 增加钻石粒可以使它保持容器内部物品与过滤物品一致"))); +.addShiftTooltip((format.yellow("- 增加荧石可增加传输速度\n"))+(format.red("- 增加红石可开启红石信号控制输入输出功能"))); + +//crop sticks +recipes.addShaped( * 4, [[, ],[, ]]); + + +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, null, ],[, , ],[null, , null]]); + + +//upgrade chisel +recipes.addShaped(, [[null, ],[, null]]); + +//copy paste +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + + +//Furnace +furnace.addRecipe(, , 1.0); + +mods.inworldcrafting.ExplosionCrafting.explodeItemRecipe(, , 75); + +//scanner +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); + + + +//Openblocks tank +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Tank Drawer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +.addTooltip(format.lightPurple("Not for Crafting!")); + +/* Added by Cyclic +.maxStackSize = 64; +.maxStackSize = 64; +recipes.addShapeless( * 9, []); + +.displayName = "Constantan Heating Coil"; +.addTooltip(format.aqua("Grows from a Celestal Crystal Cluster")); +*/ + +.maxStackSize = 64; +.withTag({energy: 0}).maxStackSize = 64; +.withTag({energy: 0}).maxStackSize = 64; +.withTag({energy: 0}).maxStackSize = 64; +########################################################################################## +print("==================== end of mods add-recipes-temp.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/alloys.zs b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/alloys.zs new file mode 100644 index 000000000..24f592bee --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/alloys.zs @@ -0,0 +1,338 @@ +#priority 98 + +import crafttweaker.item.IItemStack; +import crafttweaker.oredict.IOreDict; +import mods.enderio.AlloySmelter; +import mods.immersiveengineering.ArcFurnace; +import mods.nuclearcraft.AlloyFurnace; +import mods.techreborn.blastFurnace; +import mods.thermalexpansion.InductionSmelter; +import mods.techreborn.implosionCompressor; +import mods.mekatweaker.InfuserType; +import mods.mekanism.infuser; +import mods.nuclearcraft.Melter; +import mods.tcomplement.highoven.HighOven; +import mods.tcomplement.Overrides; +import mods.tconstruct.Melting; + +print("==================== loading parts.zs ===================="); +########################################################################################## + + +################################################### +############## ALLOYS #################### +################################################### + +//inert ingot +ArcFurnace.addRecipe(*2, *2, null, 400, 1024, []); +AlloySmelter.addRecipe(*2, [*2,], 5000); + +//fused quartz +ArcFurnace.addRecipe(, , null, 200, 1024); + +//vibrant alloy +//ArcFurnace.addRecipe(, , null, 1200, 2048, []); +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.addRecipe(, [,], 20000, 0.1); + +//energetic alloy +AlloySmelter.removeRecipe(); +AlloyFurnace.removeRecipeWithOutput(); +ArcFurnace.removeRecipe(); + +ArcFurnace.addRecipe(, , null, 400, 1024, [,]); +AlloySmelter.addRecipe(, [,,], 10000, 0.1); +AlloyFurnace.addRecipe(, , ); +InductionSmelter.addRecipe(, , , 25000); + +//energetic silver +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.removeRecipe(); + +ArcFurnace.addRecipe(, , null, 400, 1024, [,]); +AlloySmelter.addRecipe(, [,,], 10000, 0.1); +AlloyFurnace.addRecipe(, , ); +InductionSmelter.addRecipe(, , , 25000); + +//Pulsating +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.addRecipe(, [,], 10000, 0.1); +ArcFurnace.addRecipe(, , null, 600, 1024, [], "Alloying"); + +//Steel +for item in .items{ArcFurnace.removeRecipe(item);} +ArcFurnace.addRecipe(*2, *2, *2, 400, 512, [], "Alloying"); +ArcFurnace.addRecipe(, , , 400, 512, [], "Alloying"); +ArcFurnace.addRecipe(, , , 400, 512, [*2], "Alloying"); + +//Dark Steel +ArcFurnace.removeRecipe(); +ArcFurnace.addRecipe(, , null, 1200, 1024, [*4], "Alloying"); + +//Electrical Steel +ArcFurnace.removeRecipe(); +ArcFurnace.addRecipe(, , null, 800, 1024, [], "Alloying"); + +//Red Alloy +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.removeRecipe(); +ArcFurnace.addRecipe(, , null, 200, 1024, [,], "Alloying"); +AlloySmelter.addRecipe(, [,,], 10000, 0.1); +//AlloyFurnace.addRecipe([, , , ]); + +//Knight Slime +ArcFurnace.addRecipe(, , null, 600, 1024, [,], "Alloying"); +AlloySmelter.addRecipe(, [, ,], 10000, 0.1); + +//Clear Glass +ArcFurnace.addRecipe(, * 2, null, 200, 512); + +//Advanced Alloy +recipes.remove(); +ArcFurnace.addRecipe(*2, *2, null, 500, 1024, [*2, ], "Alloying"); +AlloySmelter.addRecipe( *2, [ * 2, * 2,], 10000); + +//Enhanced Alloy +recipes.remove(); +//ArcFurnace.addRecipe(*2, *2, null, 1000, 2048, [*2, ], "Alloying"); +AlloySmelter.addRecipe( * 2, [ * 2, * 2,], 15000); + +//Adaptive Ingot +AlloySmelter.addRecipe(, [, ], 15000); +ArcFurnace.addRecipe(, , null, 500, 1024, [], "Alloying"); +AlloyFurnace.addRecipe(, , ); + +//Stellar Alloy +AlloyFurnace.removeRecipeWithOutput(*2); +AlloySmelter.removeRecipe(); +AlloySmelter.addRecipe(*2, [,,*4], 1000000, 0.0); + + +//osgloglas Alloy +AlloySmelter.addRecipe(, [,,], 500000, 0.0); +//osmerdium Alloy +AlloySmelter.addRecipe(*2, [,], 1000000, 0.0); +AlloyFurnace.removeRecipeWithOutput(*2); + +//Prosperity shard +AlloySmelter.addRecipe(*4, [, ], 15000); +InductionSmelter.addRecipe(*4, , , 15000); +AlloyFurnace.addRecipe(, , *4); + +//Quartz Glass +AlloySmelter.addRecipe(, [, ], 15000); +ArcFurnace.addRecipe(, , null, 500, 1024, [], "Alloying"); +AlloyFurnace.addRecipe(, , ); + +//Vib Quartz Glass +AlloySmelter.addRecipe(, [, ,*2], 15000); +ArcFurnace.addRecipe(, , null, 500, 1024, [*2], "Alloying"); +AlloyFurnace.addRecipe(, *2, ); + +//polymer_clay +AlloySmelter.addRecipe(*32, [, *16], 20000); +ArcFurnace.addRecipe(*32, , null, 1200, 512, [*16], "Alloying"); +AlloyFurnace.addRecipe(, *16, *32); + +AlloySmelter.addRecipe(*16, [, *8], 15000); +ArcFurnace.addRecipe(*16, , null, 800, 512, [*8], "Alloying"); +AlloyFurnace.addRecipe(, *8, *16); + +AlloySmelter.addRecipe(*8, [, *4], 10000); +ArcFurnace.addRecipe(*8, , null, 600, 512, [*4], "Alloying"); +AlloyFurnace.addRecipe(, *4, *8); + +AlloySmelter.addRecipe(*4, [, *2], 5000); +ArcFurnace.addRecipe(*4, , null, 600, 512, [*2], "Alloying"); +AlloyFurnace.addRecipe(, *2, *4); + +//Specter Ingot +InductionSmelter.addRecipe(, , , 10000); +InductionSmelter.addRecipe(*2, , , 10000); +ArcFurnace.addRecipe(*2, , null, 500, 1024, [], "Alloying"); +ArcFurnace.addRecipe(, , null, 500, 1024, [], "Alloying"); + +//Titanium Iridium +AlloyFurnace.removeRecipeWithOutput(*2); + +//Bimetal Gear +InductionSmelter.addRecipe(, , *4, 10000); +ArcFurnace.addRecipe(, , null, 500, 1024, [*4], "Alloying"); +AlloySmelter.addRecipe(, [, *4], 10000); + +//Dark Gear +InductionSmelter.addRecipe(, , *4, 25000); +ArcFurnace.addRecipe(, , null, 500, 2048, [*4], "Alloying"); +AlloySmelter.addRecipe(, [, *4], 25000); + +//Energetic Gear +InductionSmelter.addRecipe(, , *4, 50000); +AlloySmelter.addRecipe(, [, *4], 50000); + +//Vibrant Gear +InductionSmelter.addRecipe(, , *4, 100000); +AlloySmelter.addRecipe(, [, *4], 100000); + +//Manylan +furnace.remove(); +AlloyFurnace.removeRecipeWithOutput(); +AlloyFurnace.removeRecipeWithOutput(); +AlloyFurnace.removeRecipeWithOutput(); +ArcFurnace.removeRecipe(); +blastFurnace.addRecipe(, null, , , 300, 80, 1500); + +//Dawnstone +//ArcFurnace.addRecipe(*2, *2, null, 500, 4096, [*2,*2,], "Alloying"); +InductionSmelter.addRecipe(*4, *4, , 75000); + +//Duskstone + recipes.remove(); +.displayName = "黄昏金属锭"; +.displayName = "黄昏金属块"; +AlloySmelter.addRecipe(, [, ,], 100000); + +//Feroborron +ArcFurnace.addRecipe(*2, , null, 500, 2048, [], "Alloying"); +InductionSmelter.addRecipe(*2, , , 75000); + +//Tough Alloy +ArcFurnace.addRecipe(*2, , null, 1000, 2048, [], "Alloying"); +InductionSmelter.addRecipe(*2, , , 75000); + +//Nichrome +AlloyFurnace.removeRecipeWithOutput(*2); +AlloyFurnace.removeRecipeWithOutput(*2); +AlloyFurnace.removeRecipeWithOutput(*2); +infuser.addRecipe("CHROME", 25, , ); + +//Stainless Steel +AlloyFurnace.removeRecipeWithOutput(*6); +AlloyFurnace.removeRecipeWithOutput(*6); +infuser.addRecipe("CHROME", 20, , ); + + +//Pink Slime ingot +InductionSmelter.addRecipe(, , , 50000); +AlloySmelter.addRecipe(, [, ], 50000); +AlloyFurnace.addRecipe(, , ); + +//Crystal ingot +InductionSmelter.addRecipe(, , , 20000); + +//Melodic +AlloyFurnace.removeRecipeWithOutput(); +AlloySmelter.removeRecipe(); +AlloySmelter.addRecipe(, [, ,], 100000); + + +// Tungsten Carbide +AlloyFurnace.removeRecipeWithOutput(*2); +AlloyFurnace.addRecipe(, , *2); +InductionSmelter.addRecipe(*2, , , 40000); +AlloySmelter.addRecipe(*2, [, ], 40000); + + +// Brass +InductionSmelter.removeRecipe(, *3); +InductionSmelter.removeRecipe(, *3); +InductionSmelter.removeRecipe(, *3); +InductionSmelter.removeRecipe(, *3); +ArcFurnace.removeRecipe(); + +AlloyFurnace.removeRecipeWithOutput(*4); + +AlloyFurnace.addRecipe(*2, , *3); +InductionSmelter.addRecipe(*3, *2, , 40000); +AlloySmelter.addRecipe(*3, [*2, ], 40000); + + + +// Rose Gold +AlloySmelter.addRecipe(*4, [*3, ,], 20000); + + +//XP Ingot +val xpMap as int[IItemStack] = { +:10, +:20, +:20, +:10, +:15, +:20, +:30, +} as int[IItemStack]; +for matter, qty in xpMap { +InfuserType.addTypeObject(matter, "EXPERIENCE", qty); +} +infuser.addRecipe("EXPERIENCE", 50, , ); +recipes.addShaped(, +[[,,], +[,,], +[,,]]); +recipes.addShapeless(*9, []); + +//Refined Obsidian (Finally) +Melter.removeRecipeWithInput(); +Melting.removeRecipe(, ); +Overrides.removeRecipe(, ); +HighOven.removeMeltingOverride(, ); +ArcFurnace.removeRecipe(); + + +//Refined Iron melting bug +val ironChestDupe = +[ + , + , +] + as IItemStack[]; + +for item in ironChestDupe { +Melting.removeRecipe(, item); +Overrides.removeRecipe(, item); +HighOven.removeMeltingOverride(, item); +} + + + + + + + + + + + + +val alloystoAdapt = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in alloystoAdapt { +AlloySmelter.addRecipe(item * 3, [, item], 15000); +ArcFurnace.addRecipe(item * 3, , null, 500, 1024, [item], "Alloying"); +AlloyFurnace.addRecipe(, item, item * 3); +} + + + + +########################################################################################## +print("==================== end of parts.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/assemblerrecipes.zs b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/assemblerrecipes.zs new file mode 100644 index 000000000..e63c6ca7d --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/assemblerrecipes.zs @@ -0,0 +1,1329 @@ +import mods.modularmachinery.RecipePrimer; +import crafttweaker.item.IItemStack; +import mods.jei.JEI.addDescription; +print("==================== loading assemblerrecipes.zs ===================="); +########################################################################################## + + + + +######### Thanks Hua En! ######### + + + + +/* +// --==Assembling Machine Mechanics - Brief Documentation==-- // + +// General Description // + +There are 4 tiers of assembling machine, unlocked at different points in the modpack: +MK I: Basic Assembling Machine (Start of Chapter 5, Tech Reborn) +MK II: Advanced Assembling Machine (Middle of Chapter 6, Advanced Rocketry) +MK III: Elite Assembling Machine (Middle of Chapter 7) +MK IV: Mass Manufacturer (End of Chapter 7, can run multiple of a single recipe at once) + +New tiers build upon the old tiers and also upgrade various parts of the old tiers. + +Much like GT, recipes require a minimum tier of assembling machine to run. For example, advanced circuit boards are unlocked at the MK II, meaning you can't craft them in a MK I assembling machine. + +Recipes which are unlocked in lower tier assembling machines are overclocked linearly in higher tier assembling machines. This means that both 速度 and 能量消耗 (RF/t) increase in tandem. + +Here's the 能量消耗 and overclocking bonuses for each tier: +MK I: 500RF/t-10kRF/t +MK II: 2500RF/t-50kRF/t [Overclocking: 5x 速度, 5x 能量消耗] +MK III: 60kRF/t-480kRF/t [Overclocking: 8x 速度, 8x 能量消耗] +MK IV: 160kRF/t-3.84MRF/t [Overclocking: 8x 速度, 8x 能量消耗] + +Assembling Machines have two forms of upgrades: TR Casings and the Central Core. Both modify 速度 and 能量消耗 in some way, and some even modify 流体消耗,hance. However, the maximum that an +assembling machine of a certain tier can be upgraded (discounting higher tier casings than the tier above) is only slightly more than the next tier's overclocking bonus, and will be much more power (and fluid) +inefficient. + +// TR Casings // +TR Casings provide a linear increase to 速度 and 能量消耗. Each assembling machine has a mininmum tier of casing required, detailed below: + +MK I: Standard Machine Casings +MK II: Reinforced Machine Casings +MK III: Advanced Machine Casings +MK IV: Fusion Coils + +Each coil replaced by one of a higher tier gives a 1.07x boost to both 速度 and 能量消耗. If one of an even higher tier is used, the multiplier from the previous tier stacks (for example, replacing a +standard machine casing with a fusion coil in a MK I assembling machine leads to a 1.07^3≈1.225 boost to both 速度 and 能量消耗). + +// Central Core // +Depending on the material used, the central core can modify the 速度 and 能量消耗 of the assembling machine by various amounts, and even have other effects (e.g. reduced 流体消耗, + +Each tier of assembling machine has a base material (e.g. refined iron for tier 1), as well as 4 upgrade materials that modify the 速度 and 能量消耗 by various amounts (apart from the Mass Manufacturer, +whose core upgrades work differently from the first three tiers of assembling machine). There are also special upgrade materials from NC:O and RH:C that have special modifiers and effects, and can be used in +any assembling machine above their minimum tier (e.g. Californium-252 can be used in any assembling machine above tier 2). + +The mass manufacturer's upgrades work differently in that they only modify the input and output quantities of a recipe, effectively allowing multiples of a recipe to be processed at a time. + +// --==Crafttweaker Methods==-- // +mods.modularmachinery.RecipeBuilder.newBuilder(String recipeRegistryName, String associatedMachineRegistryName, int processingTickTime, int sortingPriority) + .addEnergyPerTickInput(int perTick) + .addItemOutput(IItemStack stack) + .addItemInput(IItemStack stack) + .addItemInput(IOreDictEntry oreDict, int amount) + .addFluidInput(ILiquidStack stack) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder(machineName + "item name here", machineName, int processingTickTime) + .addEnergyPerTickInput(int perTick) + .addItemOutput(, 2) + .addItemInput() + .addItemInput() + .addFluidInput() + .build(); + +*/ + + +// --==Removals==-- // + + +// Remove all Precision Assembler Recipes +mods.jei.JEI.removeAndHide(); +//mods.advancedrocketry.PrecisionAssembler.clear(); + +// Remove all TR Assembler Recipes + + mods.jei.JEI.removeAndHide(); +//mods.techreborn.assemblingMachine.removeAll(); + +// Remove some NC Assembler Recipes +val qmdremovals = +[ +*6, +*3, +.withTag({storage: {amount: 6000}}), +*6, +, +, +, +, + +] + as IItemStack[]; + +for item in qmdremovals { + mods.nuclearcraft.Assembler.removeRecipeWithOutput(item); +} + + +############################################## +## +## Basic Assembling Machine (MK I) +## +############################################## + +// Tech Reborn Circuits // + +// Basic Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_basic_circuit_board_1", "assemblermkone", 50) + .addEnergyPerTickInput(1000) + .addItemOutput(*2) + .addItemInput() + .addItemInput(, 2) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_basic_circuit_board_2", "assemblermkone", 50) + .addEnergyPerTickInput(1000) + .addItemOutput(*2) + .addItemInput() + .addItemInput(, 2) + .build(); + +// Electronic Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_electronic_circuit_1", "assemblermkone", 150) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput() + .addItemInput(*3) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_electronic_circuit_2", "assemblermkone", 200) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput(*4) + .addItemInput(*2) + .addItemInput() + .build(); + +// Advanced Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_advanced_circuit_board_1", "assemblermkone", 150) + .addEnergyPerTickInput(2000) + .addItemOutput(*2) + .addItemInput() + .addItemInput(, 4) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_advanced_circuit_board_2", "assemblermkone", 150) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput() + .addItemInput(, 2) + .build(); + +// Advanced Circuit Parts +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_advanced_circuit_parts_1", "assemblermkone", 150) + .addEnergyPerTickInput(2000) + .addItemOutput(*2) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_advanced_circuit_parts_2", "assemblermkone", 150) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .addItemInput() + .build(); + +// Advanced Electronic Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_advanced_electronic_circuit", "assemblermkone", 20) + .addEnergyPerTickInput(4000) + .addItemOutput() + .addItemInput() + .addItemInput(*2) + .build(); + +// Processor Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_processor_circuit_board", "assemblermkone", 200) + .addEnergyPerTickInput(4000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Data Storage Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_data_storage_circuit_1", "assemblermkone", 200) + .addEnergyPerTickInput(4000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_data_storage_circuit_2", "assemblermkone", 200) + .addEnergyPerTickInput(4000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_data_storage_circuit_3", "assemblermkone", 200) + .addEnergyPerTickInput(4000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_data_storage_circuit_4", "assemblermkone", 200) + .addEnergyPerTickInput(4000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +// Data Control Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_data_control_circuit", "assemblermkone", 300) + .addEnergyPerTickInput(5000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Energy Flow Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_energy_flow_circuit", "assemblermkone", 300) + .addEnergyPerTickInput(5000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Data Orb +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_data_orb", "assemblermkone", 600) + .addEnergyPerTickInput(10000) + .addItemOutput() + .addItemInput() + .addItemInput(*8) + .build(); + +// Gold Cable +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_gold_cable", "assemblermkone", 40) + .addEnergyPerTickInput(500) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + + + +// AA Coils // + +// Basic Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_basic_coil_1", "assemblermkone", 100) + .addEnergyPerTickInput(1000) + .addItemOutput() + .addItemInput(*4) + .addItemInput() + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_basic_coil_2", "assemblermkone", 100) + .addEnergyPerTickInput(1000) + .addItemOutput(*2) + .addItemInput(*4) + .addItemInput() + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_basic_coil_3", "assemblermkone", 100) + .addEnergyPerTickInput(1000) + .addItemOutput(*4) + .addItemInput(*4) + .addItemInput() + .build(); + +// Advanced Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_advanced_coil", "assemblermkone", 100) + .addEnergyPerTickInput(1500) + .addItemOutput() + .addItemInput(*4) + .addItemInput() + .build(); + + + +// Thermal Coils + +// Redstone Reception Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_reception_coil", "assemblermkone", 200) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + +// Redstone Transmission Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_transmission_coil", "assemblermkone", 200) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + +// Redstone Conductance Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_conductance_coil", "assemblermkone", 200) + .addEnergyPerTickInput(2000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + + + +// Scaffoldings // + +// Vanasteel Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_vanasteel_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Steel Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_steel_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// ScAl Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_scal_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// BAM Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_bam_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Nimonic Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_nimonic_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Invar Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_invar_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Aluminium Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_aluminium_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Nichrome Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_nichrome_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Stainless Steel Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_stainless_steel_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Syrmorite Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_syrmorite_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Thaumium Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_thaumium_scaffolding", "assemblermkone", 50) + .addEnergyPerTickInput(500) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Miscellaneous Items // + +// Basic Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_basic_processor", "assemblermkone", 100) + .addEnergyPerTickInput(3000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput() + .addItemInput() + .build(); + +// RFTools Quarry Card +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkone" + "_rftools_quarrycard", "assemblermkone", 500) + .addEnergyPerTickInput(4000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput(*4) + .addItemInput(*4) + .addFluidInput(*4000) + .build(); + +############################################## +## +## Advanced Assembling Machine (MK II) +## +############################################## + +// --==Advanced Rocketry==-- // + +// Circuits // + +// Liquid IO Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_liquid_io_circuit_board", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput(*3) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Control Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_control_circuit_board", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput(*3) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Item IO Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_item_io_circuit_board", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput(*3) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Basic Circuit Plate +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_basic_circuit_plate", "assemblermktwo", 100) + .addEnergyPerTickInput(7500) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput(*2) + .build(); + +// Advanced Circuit Plate +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_advanced_circuit_plate", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput(*2) + .build(); + +// Data Storage Unit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_data_storage_unit", "assemblermktwo", 400) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Tracking Unit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_tracking_unit", "assemblermktwo", 200) + .addEnergyPerTickInput(7500) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Space Elevator Chip +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_space_elevator_chip", "assemblermktwo", 200) + .addEnergyPerTickInput(7500) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + + + +// Tools and Gadgets // + +// Lens +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_lens", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput(*3) + .addItemInput(*3) + .addItemInput() + .build(); + +// Atmosphere Analyser +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_atmosphere_analyser", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Beacon Finder +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_beacon_finder", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Biome Changer Remote +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_biome_changer_remote", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Biome Changer +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_biome_changer", "assemblermktwo", 200) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + + +// Space Suit Upgrades // + +// Bionic Leg Upgrade +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_bionic_leg_upgrade", "assemblermktwo", 400) + .addEnergyPerTickInput(30000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Padded Landing Boots +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_padded_landing_boots", "assemblermktwo", 400) + .addEnergyPerTickInput(30000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Anti-Fog Visor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_antifog_visor", "assemblermktwo", 400) + .addEnergyPerTickInput(30000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Hover Upgrade +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_hover_upgrade", "assemblermktwo", 400) + .addEnergyPerTickInput(30000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Flight 速度 Control Upgrade +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_flight_速度_control_upgrade", "assemblermktwo", 400) + .addEnergyPerTickInput(30000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// --==AE2==-- // + +// Logic Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_logic_processor", "assemblermktwo", 50) + .addEnergyPerTickInput(2500) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Calculation Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_calculation_processor", "assemblermktwo", 50) + .addEnergyPerTickInput(2500) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Engineering Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_engineering_processor", "assemblermktwo", 50) + .addEnergyPerTickInput(2500) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Massively Parallel Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_massively_parallel_processor", "assemblermktwo", 100) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Speculative Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_speculative_processor", "assemblermktwo", 400) + .addEnergyPerTickInput(50000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +// Fluix Logic Unit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_fluix_logic_unit", "assemblermktwo", 100) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput(*4) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + + + +// --==QMD==-- // + +// Advanced Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_advanced_processor", "assemblermktwo", 100) + .addEnergyPerTickInput(15000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput() + .addItemInput() + .build(); + +// Plastic Scintillator +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_plastic_scintillator", "assemblermktwo", 100) + .addEnergyPerTickInput(7500) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + +// Gold Plated Tungsten Wire +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_goldtungsten_wire", "assemblermktwo", 100) + .addEnergyPerTickInput(7500) + .addItemOutput(*6) + .addItemInput(, 4) + .addItemInput(, 2) + .build(); + +// Tungsten Filament +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_tungsten_filament", "assemblermktwo", 100) + .addEnergyPerTickInput(7500) + .addItemOutput(.withTag({storage: {amount: 6000}})) + .addItemInput(, 2) + .build(); + +// Miscellaneous Items // + +// Machine Circuitry +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_machine_circuitry", "assemblermktwo", 400) + .addEnergyPerTickInput(10000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput() + .addFluidInput(*2000) + .build(); + +// Connectors +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermktwo" + "_connector", "assemblermktwo", 200) + .addEnergyPerTickInput(30000) + .addItemOutput() + .addItemInput() + .addItemInput() + .addItemInput() + .addItemInput(*2) + .build(); + +############################################## +## +## Elite Assembling Machine (MK III) +## +############################################## + +// Mekanism Laser Acceptor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_mekanism_laser_acceptor", "assemblermkthree", 400) + .addEnergyPerTickInput(400000) + .addItemOutput() + .addItemInput() + .addItemInput(*2) + .addItemInput(*4) + .addItemInput(*2) + .addFluidInput(*4000) + .build(); + +// Highly Advanced Machine Frame +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_highly_advanced_machine_frame", "assemblermkthree", 50) + .addEnergyPerTickInput(200000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput(*4) + .addFluidInput(*4000) + .build(); + +// Lapotron Crystal +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_lapotron_crystal", "assemblermkthree", 50) + .addEnergyPerTickInput(120000) + .addItemOutput(*4) + .addItemInput() + .addItemInput() + .addFluidInput(*4000) + .build(); + +// Lapotronic Energy Orb +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_lapotronic_energy_orb", "assemblermkthree", 100) + .addEnergyPerTickInput(240000) + .addItemOutput(*4) + .addItemInput(,8) + .addItemInput() + .addFluidInput(*8000) + .build(); + +// EV Capacitor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_ev_capacitor", "assemblermkthree", 200) + .addEnergyPerTickInput(480000) + .addItemOutput(*4) + .addItemInput(,6) + .addItemInput(,2) + .addItemInput() + .addFluidInput(*2000) + .build(); + +// BSCCO Dust +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_bscco_dust", "assemblermkthree", 50) + .addEnergyPerTickInput(60000) + .addItemOutput(*3) + .addItemInput(, 2) + .addItemInput(*2) + .addItemInput(, 2) + .addItemInput(*3) + .build(); + +// BSCCO Wire +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_bscco_wire", "assemblermkthree", 50) + .addEnergyPerTickInput(60000) + .addItemOutput(*6) + .addItemInput(*3) + .addItemInput(, 6) + .build(); + +// Elite Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_elite_processor", "assemblermkthree", 50) + .addEnergyPerTickInput(120000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput() + .addItemInput() + .build(); + +// Neodymium Magnet +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkthree" + "_neodymium_magnet", "assemblermkthree", 50) + .addEnergyPerTickInput(60000) + .addItemOutput() + .addItemInput(, 2) + .addItemInput() + .build(); + +############################################## +## +## Mass Manufacturer (MK IV) +## +############################################## + +//--== MK I Recipes for MK IV assembler ==--// + +// Because MM is buggy and adapters for recipes that are too short cause JEI to crash + +// Tech Reborn Circuits // + +// Basic Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_basic_circuit_board_1", "assemblermkfour", 1) + .addEnergyPerTickInput(320000) + .addItemOutput(*2) + .addItemInput() + .addItemInput(, 2) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_basic_circuit_board_2", "assemblermkfour", 1) + .addEnergyPerTickInput(320000) + .addItemOutput(*2) + .addItemInput() + .addItemInput(, 2) + .build(); + +// Electronic Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_electronic_circuit_1", "assemblermkfour", 1) + .addEnergyPerTickInput(640000) + .addItemOutput() + .addItemInput() + .addItemInput(*3) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_electronic_circuit_2", "assemblermkfour", 1) + .addEnergyPerTickInput(640000) + .addItemOutput() + .addItemInput(*4) + .addItemInput(*2) + .addItemInput() + .build(); + +// Advanced Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_advanced_circuit_board_1", "assemblermkfour", 1) + .addEnergyPerTickInput(640000) + .addItemOutput(*2) + .addItemInput() + .addItemInput(, 4) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_advanced_circuit_board_2", "assemblermkfour", 1) + .addEnergyPerTickInput(640000) + .addItemOutput() + .addItemInput() + .addItemInput(, 2) + .build(); + +// Advanced Circuit Parts +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_advanced_circuit_parts_1", "assemblermkfour", 1) + .addEnergyPerTickInput(640000) + .addItemOutput(*2) + .addItemInput() + .addItemInput() + .addItemInput() + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_advanced_circuit_parts_2", "assemblermkfour", 1) + .addEnergyPerTickInput(640000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .addItemInput() + .build(); + +// Advanced Electronic Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_advanced_electronic_circuit", "assemblermkfour", 1) + .addEnergyPerTickInput(1280000) + .addItemOutput() + .addItemInput() + .addItemInput(*2) + .build(); + +// Processor Circuit Board +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_processor_circuit_board", "assemblermkfour", 1) + .addEnergyPerTickInput(1280000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Data Storage Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_data_storage_circuit_1", "assemblermkfour", 1) + .addEnergyPerTickInput(1280000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_data_storage_circuit_2", "assemblermkfour", 1) + .addEnergyPerTickInput(1280000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_data_storage_circuit_3", "assemblermkfour", 1) + .addEnergyPerTickInput(1280000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_data_storage_circuit_4", "assemblermkfour", 1) + .addEnergyPerTickInput(1280000) + .addItemOutput(*4) + .addItemInput() + .addItemInput(, 8) + .build(); + +// Data Control Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_data_control_circuit", "assemblermkfour", 1) + .addEnergyPerTickInput(1600000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Energy Flow Circuit +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_energy_flow_circuit", "assemblermkfour", 1) + .addEnergyPerTickInput(1600000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + +// Data Orb +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_data_orb", "assemblermkfour", 2) + .addEnergyPerTickInput(3200000) + .addItemOutput() + .addItemInput() + .addItemInput(*8) + .build(); + +// Gold Cable +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_gold_cable", "assemblermkfour", 1) + .addEnergyPerTickInput(160000) + .addItemOutput() + .addItemInput() + .addItemInput() + .build(); + + + +// AA Coils // + +// Basic Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_basic_coil_1", "assemblermkfour", 1) + .addEnergyPerTickInput(320000) + .addItemOutput() + .addItemInput(*4) + .addItemInput() + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_basic_coil_2", "assemblermkfour", 1) + .addEnergyPerTickInput(320000) + .addItemOutput(*2) + .addItemInput(*4) + .addItemInput() + .build(); + +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_basic_coil_3", "assemblermkfour", 1) + .addEnergyPerTickInput(320000) + .addItemOutput(*4) + .addItemInput(*4) + .addItemInput() + .build(); + +// Advanced Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_advanced_coil", "assemblermkfour", 1) + .addEnergyPerTickInput(480000) + .addItemOutput() + .addItemInput(*4) + .addItemInput() + .build(); + + + +// Thermal Coils + +// Redstone Reception Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_reception_coil", "assemblermkfour", 1) + .addEnergyPerTickInput(720000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + +// Redstone Transmission Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_transmission_coil", "assemblermkfour", 1) + .addEnergyPerTickInput(720000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + +// Redstone Conductance Coil +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_conductance_coil", "assemblermkfour", 1) + .addEnergyPerTickInput(720000) + .addItemOutput() + .addItemInput(*2) + .addItemInput() + .build(); + + + +// Scaffoldings // + +// Vanasteel Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_vanasteel_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Steel Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_steel_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// ScAl Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_scal_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// BAM Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_bam_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Nimonic Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_nimonic_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Invar Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_invar_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Aluminium Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_aluminium_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Nichrome Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_nichrome_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Stainless Steel Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_stainless_steel_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Syrmorite Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_syrmorite_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Thaumium Scaffolding +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_thaumium_scaffolding", "assemblermkfour", 1) + .addEnergyPerTickInput(180000) + .addItemOutput(*9) + .addItemInput(*3) + .addItemInput(*3) + .build(); + +// Miscellaneous Items // + +// Basic Processor +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_basic_processor", "assemblermkfour", 1) + .addEnergyPerTickInput(960000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput() + .addItemInput() + .build(); + +// RFTools Quarry Card +mods.modularmachinery.RecipeBuilder.newBuilder("assemblermkfour" + "_rftools_quarrycard", "assemblermkfour", 2) + .addEnergyPerTickInput(1280000) + .addItemOutput() + .addItemInput() + .addItemInput(*4) + .addItemInput(*4) + .addItemInput(*4) + .addFluidInput(*4000) + .build(); + +############################################## +## +## Assembling Machine Upgrade Tooltips/JEI Descriptions +## +############################################## + +// Basic Assembling Machine Modifiers // + +// Tooltips +var t1modifiers as IItemStack[] = [ +, +, +, +, + +]; + +for item in t1modifiers { + item.addTooltip(format.white("可用于强化基础装配机")); +} + +// JEI Descriptions +addDescription(, "用于强化基础装配机时:", "无强化效果"); +addDescription(, "用于强化基础装配机时:", "2x 速度, 2.67x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "2.5x 速度, 5x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "3x 速度, 4x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "3.75x 速度, 7.5x 能量消耗"); + + +addDescription(.withTag({dynamicmachine: "modularmachinery:assemblermkone"}), +"中心方块变动时:", +"铂:2x 速度, 2.67x 能量消耗", +"末影: 2.5x 速度, 5x 能量消耗", +"锇: 3x 速度, 4x 能量消耗", +"锇荧黑曜合金: 3.75x 速度, 7.5x 能量消耗"); + +// Advanced Assembling Machine Modifiers // + +// Tooltips +var t2modifiers as IItemStack[] = [ +, +, +, +, +, + +]; + +for item in t2modifiers { + item.addTooltip(format.white("可用于强化高级装配机")); +} + +// JEI Descriptions +addDescription(, "用于强化基础装配机时:", "无强化效果"); +addDescription(, "用于强化基础装配机时:", "无强化效果"); +addDescription(, "用于强化基础装配机时:", "1.5x 速度, 3x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "3x 速度, 4x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "3.75x 速度, 7.5x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "4.8x 速度, 1.2x 流体消耗, 10.8x 能量消耗"); + + +addDescription(.withTag({dynamicmachine: "modularmachinery:assemblermktwo"}), +"中心方块变动时:", +"钨钢:1.5x 速度, 3x 能量消耗", +"铱:3x 速度, 4x 能量消耗", +"铱锇合金:3.75x 速度, 7.5x 能量消耗", +"恒星合金:4.8x 速度, 1.2x 流体消耗, 10.8x 能量消耗"); + +// Elite Assembling Machine Modifiers // + +// Tooltips +var t3modifiers as IItemStack[] = [ +, +, + +]; + +for item in t3modifiers { + item.addTooltip(format.blue("可用于强化精英装配机")); +} + +// JEI Descriptions +addDescription(, "用于强化基础装配机时:", "无强化效果"); +addDescription(, "用于强化基础装配机时:", "2x 速度, 2.66x 能量消耗"); +addDescription(, "用于强化基础装配机时:", "2.5x 速度, 5x 能量消耗"); + + +addDescription(.withTag({dynamicmachine: "modularmachinery:assemblermkthree"}), +"中心方块变动时:", +"晶素锭: 2x 速度, 2.66x 能量消耗", +"暮色金属锭: 2.5x 速度, 5x 能量消耗", +"水晶矩阵: 3x 速度, 4x 能量消耗", +"终极锭: 3.75x 速度, 1.3x 流体消耗, 7.5x 能量消耗"); + + +// Mass Manufacturer Modifiers // + +// Tooltips +var t4modifiers as IItemStack[] = [ +, + +]; + +for item in t4modifiers { + item.addTooltip(format.aqua("批量装配机")); +} + +var t34modifiers as IItemStack[] = [ +, + +]; + +for item in t34modifiers { + item.addTooltip(format.aqua("可用于强化精英装配机和批量装配机")); +} + +// JEI Descriptions +addDescription(, "用于强化批量装配机时:", "4倍化配方输入输出, 3x 能量消耗"); +addDescription(, "用于强化批量装配机时:", "16倍化配方输入输出, 25%概率不消耗流体, 4x 能量消耗"); + +addDescription(, "可用于强化精英装配机和批量装配机。", "", "用于强化精英装配机时:", +"3x 速度, 4x 能量消耗", "", "用于强化批量装配机时:", "无强化效果"); +addDescription(, "可用于强化精英装配机和批量装配机。", "", "用于强化精英装配机时:", +"3.75x 速度, 1.3x 流体消耗,7.5x 能量消耗", "", "用于强化批量装配机时:", "2倍化配方输入输出, 2x 能量消耗"); + + + +addDescription(.withTag({dynamicmachine: "modularmachinery:assemblermkfour"}), +"中心方块变动时:", +"终极锭: 2倍化配方输入输出, 2x 能量消耗", +"中子素: 4倍化配方输入输出, 3x 能量消耗", +"无尽之锭: 16倍化配方输入输出, 25%概率不消耗流体, 4x 能量消耗"); + +/* +// Special Modifiers // + +// Tooltips + +var specialmodifiers as IItemStack[] = [ +, +, +, +, + +]; + +for item in specialmodifiers { + item.addTooltip(format.aqua("Assembling Machine Special Modifier")); +} + +//JEI Descriptions +addDescription(, "Can be used in all Assembling Machine multiblocks.", "", "When used as Assembling Machine Modifier:", "10%概率不消耗流体, 1.5x 能量消耗"); +addDescription(, "Can be used in all Assembling Machine multiblocks above Advanced tier.", "", "When used as Assembling Machine Modiffier:", +"20%概率不消耗流体, 2x 能量消耗"); +addDescription(, "Can be used in all Assembling Machine multiblocks except Mass Manufacturer.", "", "When used as Assembling Machine Modifier:", +"0.5x 速度, 0.5x 能量消耗"); +addDescription(, "Can be used in all Assembling Machine multiblocks except Mass Manufacturer.", "", "When used as Assembling Machine Modifier:", +"0.125x 速度, 0.0625x 能量消耗"); +addDescription(, "Can be used in both Advanced Assembling Machine and Elite Assembling Machine", "", "When used as Assembling Machine Modifier:", +"5x 速度, 5.5x 能量消耗, 5% chance for item outputs to be destroyed"); + +*/ + +########################################################################################## +print("==================== end of assemblerrecipes.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/metal_processing.zs b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/metal_processing.zs new file mode 100644 index 000000000..38f40a5f2 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/Non Mod Scripts/metal_processing.zs @@ -0,0 +1,869 @@ +//import mods.embers.Melter; +import crafttweaker.item.IItemStack; +import crafttweaker.liquid.ILiquidStack; +import crafttweaker.oredict.IOreDictEntry; +import mods.immersiveengineering.ArcFurnace; +import mods.immersiveengineering.Crusher; +import mods.nuclearcraft.Manufactory; +import mods.nuclearcraft.Melter; +import mods.rockhounding_chemistry.ChemicalExtractor; +import mods.rockhounding_chemistry.LeachingVat; +import mods.rockhounding_chemistry.MineralSizer; +import mods.tcomplement.highoven.HighOven; +import mods.tcomplement.Overrides; +import mods.tconstruct.Melting; +import mods.techreborn.blastFurnace; +import mods.techreborn.grinder; +import mods.thermalexpansion.Crucible; +import mods.thermalexpansion.Pulverizer; +import mods.embers.Stamper; +import mods.techreborn.industrialGrinder; + + +print("==================== loading金属 Processing.zs ===================="); +########################################################################################## +/* +val itemstoRemove = +[ +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} +*/ + + +##======================================================= +##ORE PROCESSING REMOVING +##======================================================= + + + +//----------Aluminum + +furnace.remove(); +furnace.remove(); + +recipes.removeShapeless( * 4, []); +for item in .items{ +blastFurnace.removeRecipe(item); +//mods.immersiveengineering.ArcFurnace.removeRecipe(item); +} +//Melting.removeRecipe(ILiquidStack output, IItemStack input); + + +val aluminumMelting = +[ + , + , + , +] + as IItemStack[]; + +for item in aluminumMelting { +Melting.removeRecipe(, item); +Overrides.removeRecipe(, item); +HighOven.removeMeltingOverride(, item); +} + +//Melting.removeRecipe(, ); +mods.embers.Melter.remove(); + + + +//----------Osmium +furnace.remove(); +for item in .items{ +mods.immersiveengineering.ArcFurnace.removeRecipe(item); +furnace.remove(item); +} +Melting.removeRecipe(, ); +//Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Overrides.removeRecipe(, ); +HighOven.removeMeltingOverride(, ); +mods.embers.Melter.remove(); +Melter.removeRecipeWithInput(); +Melter.removeRecipeWithInput(); +Crucible.removeRecipe(); +Crucible.removeRecipe(); + + +//----------Platinum +for item in .items{ +mods.immersiveengineering.ArcFurnace.removeRecipe(item); +furnace.remove(item); +} +//Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +mods.embers.Melter.remove(); +Melter.removeRecipeWithInput(); +Melter.removeRecipeWithInput(); +Crucible.removeRecipe(); +Crucible.removeRecipe(); + + +//----------Tungsten +for item in .items{ +blastFurnace.removeRecipe(item); +mods.immersiveengineering.ArcFurnace.removeRecipe(item); +furnace.remove(item); +} + + + +//Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +//Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +//HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +mods.embers.Melter.remove(); +Melter.removeRecipeWithInput(); +Melter.removeRecipeWithInput(); +Crucible.removeRecipe(); +Crucible.removeRecipe(); + +//----------Titanium + +for item in .items{ +blastFurnace.removeRecipe(item); +mods.immersiveengineering.ArcFurnace.removeRecipe(item); +furnace.remove(item); +} + +for item in .items{ +Melting.removeRecipe(, (item)); +Overrides.removeRecipe(, (item)); +HighOven.removeMeltingOverride(, (item)); +Melting.removeRecipe(, (item)); +Overrides.removeRecipe(, (item)); +HighOven.removeMeltingOverride(, (item)); +} + +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); + +//Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +//Overrides.removeRecipe(, ); +//HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); + +mods.embers.Melter.remove(); +Melter.removeRecipeWithInput(); +Melter.removeRecipeWithInput(); +Crucible.removeRecipe(); +Crucible.removeRecipe(); + +//----------Iridium +for item in .items{ +blastFurnace.removeRecipe(item); +mods.immersiveengineering.ArcFurnace.removeRecipe(item); +furnace.remove(item); +} + +//Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +Overrides.removeRecipe(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +HighOven.removeMeltingOverride(, ); +mods.embers.Melter.remove(); +Melter.removeRecipeWithInput(); +Melter.removeRecipeWithInput(); +Crucible.removeRecipe(); +Crucible.removeRecipe(); + +//----------Mana Infused +for item in .items{ +blastFurnace.removeRecipe(item); +mods.immersiveengineering.ArcFurnace.removeRecipe(item); +furnace.remove(item); +} + + + +//----------Uranium +industrialGrinder.removeInputRecipe(); +//mods.techreborn.industrialGrinder.addRecipe(IItemStack output1, IItemStack output2, IItemStack output3, IItemStack output4, IIngredient input1, IIngredient input2, ILiquidStack fluid, int ticktime, int euTick); + + +##======================================================= +## ORE PROCESSING +##======================================================= + +############### Hacatu ##################### + +val clusterFluidMap as ILiquidStack[IOreDictEntry] = { + : , + //: {}, + : , + : , + : , + : , + //: {}, + : , + : , + //: {}, + : , + : , + : , + //: {}, + : , + //: {}, + : , + : , + //: {}, + //: {}, + : , + : , + : , + : , + : , + : , + : , + //: {}, + //: +} as ILiquidStack[IOreDictEntry]; + +for cluster, fluid in clusterFluidMap { + Melting.addRecipe(fluid*288, cluster); + mods.embers.Melter.add(fluid*432, cluster); +} +############### /Hacatu ##################### + +val ingotFluidMap as ILiquidStack[IItemStack] = { + : , + : , + : , + : , + : , + : , + : , + : , + : , + : , + : , +} as ILiquidStack[IItemStack]; + +for ingot, fluid in ingotFluidMap { + Stamper.add(ingot,fluid*144,); +} + +//Iron +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [4.21F], *50); +ChemicalExtractor.add("Oxide", , ["dustIron", "dustNickel","dustChromium", "dustCarbon"], [200, 35, 20, 9]); + +val ironProcessing =[ + , + , +] as IItemStack[]; + +for item in ironProcessing { +blastFurnace.addRecipe(, null, item, null, 100, 20, 1000); +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +//mods.techreborn.industrialGrinder.addRecipe(IItemStack output1, IItemStack output2, IItemStack output3, IItemStack output4, IIngredient input1, IIngredient input2, ILiquidStack fluid, int ticktime, int euTick) +} + +//Gold +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [3.85F], *50); +ChemicalExtractor.add("Native", , ["dustGold", "dustSilver", "dustCopper", "dustNickel"], [200, 15, 12, 10]); +val goldProcessing =[ + , + , +] as IItemStack[]; + +for item in goldProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Copper +MineralSizer.add("oreCopper", [*2], [4]); +LeachingVat.add(, [*2], [5.92F], *50); +ChemicalExtractor.add("Oxide", , ["dustCopper", "dustIron", "dustZinc"], [200, 25, 12]); +val copperProcessing =[ + , + , + +] as IItemStack[]; + +for item in copperProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Tin +MineralSizer.add("oreTin", [*2], [4]); +LeachingVat.add(, [*2], [6.08F], *50); +ChemicalExtractor.add("Oxide", , ["dustTin", "dustLead", "dustTungsten", "dustArsenic"], [200, 30, 9, 5]); +val tinProcessing =[ + , + , +] as IItemStack[]; + +for item in tinProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Silver +MineralSizer.add("oreSilver", [*2], [4]); +LeachingVat.add(, [*2], [3.20F], *50); +ChemicalExtractor.add("Native", , ["dustSilver", "dustLead", "dustSulfur", "dustAntimony"], [200, 25, 10, 5]); +val silverProcessing =[ + , + , +] as IItemStack[]; + +for item in silverProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Lead +MineralSizer.add("oreLead", [*2], [4]); +LeachingVat.add(, [*2], [4.20F], *50); +ChemicalExtractor.add("Sulfide", , ["dustLead", "dustSilver", "dustZinc", "dustBismuth"], [200, 20, 15, 5]); +val leadProcessing =[ + , + , +] as IItemStack[]; + +for item in leadProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Nickel +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [4.69F], *50); +ChemicalExtractor.add("Native", , ["dustNickel", "dustPlatinum", "dustCopper", "dustCobalt"], [200, 25, 15, 10]); +val nickelProcessing =[ + , + , +] as IItemStack[]; + +for item in nickelProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Octine +MineralSizer.add(, [*2], [8]); +LeachingVat.add(, [*2], [2.83F], *50); +ChemicalExtractor.add("Sulfide", , ["dustOctine", "dustBlaze", "dustPhosphorus"], [200, 25, 15]); +val octineProcessing =[ + , + , +] as IItemStack[]; + +for item in octineProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Syrmorite +MineralSizer.add(, [*2], [8]); +LeachingVat.add(, [*2], [7.68F], *50); +ChemicalExtractor.add("Sulfide", , ["dustSyrmorite", "dustVanadium", "dustGold"], [200, 20, 12]); +val syrmoriteProcessing =[ + , + , +] as IItemStack[]; + +for item in syrmoriteProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Cobalt +MineralSizer.add(, [*2], [8]); +LeachingVat.add(, [*2], [4.21F], *50); +ChemicalExtractor.add("Oxide", , ["dustCobalt", "dustCopper", "dustNickel"], [200, 20, 15]); +val cobaltProcessing =[ + , + , +] as IItemStack[]; + +for item in cobaltProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Ardite +MineralSizer.add(, [*2], [8]); +LeachingVat.add(, [*2], [3.80F], *50); +ChemicalExtractor.add("Sulfide", , ["dustArdite", "dustGlowstone", "dustSulfur"], [200, 25, 10]); +val arditeProcessing =[ + , + , +] as IItemStack[]; + +for item in arditeProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + + + +//Uranium +MineralSizer.add("oreUranium", [*2], [4]); +LeachingVat.add(, [*2], [4.99F], *50); +ChemicalExtractor.add("Sulfide", , ["dustYellowcake", "dustThorium", "dustNiobium"], [200, 40, 25]); +val uraniumProcessing =[ + , + , + , +] as IItemStack[]; + +for item in uraniumProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Thorium +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [6.00F], *50); +ChemicalExtractor.add("Sulfide", , ["dustThorium", "dustYellowcake", "dustTitanium","dustHafnium"], [200, 50, 25, 20]); +val thoriumProcessing =[ + , + , +] as IItemStack[]; + +for item in thoriumProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Magnesium +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [3.73F], *50); +ChemicalExtractor.add("Sulfide", , ["dustMagnesium", "dustPotassium", "dustCalcium"], [200, 25, 20]); +val magnesiumProcessing =[ + , + , +] as IItemStack[]; + +for item in magnesiumProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Lithium +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [6.32F], *50); +ChemicalExtractor.add("Sulfide", , ["dustLithium", "dustAluminum", "dustSodium"], [200, 30, 15]); +val lithiumProcessing =[ + , + , +] as IItemStack[]; + +for item in lithiumProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Boron +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [4.57F], *50); +ChemicalExtractor.add("Sulfide", , ["dustBoron", "dustSaltpeter"], [200, 20]); +val boronProcessing =[ + , + , +] as IItemStack[]; + +for item in boronProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Palladium +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [4.57F], *50); +ChemicalExtractor.add("Native", , ["dustPalladium"], [200]); +val palladiumProcessing =[ + , + , +] as IItemStack[]; + +for item in palladiumProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Orichalcum +MineralSizer.add(, [*2], [8]); +LeachingVat.add(, [*2], [6.32F], *50); +ChemicalExtractor.add("Native", , ["dustOrichalcum"], [200]); +val orichalcumProcessing =[ + , + , +] as IItemStack[]; + +for item in orichalcumProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Adamantine +MineralSizer.add(, [*2], [15]); +LeachingVat.add(, [*2], [3.73F], *50); +ChemicalExtractor.add("Native", , ["dustAdamantine", "dustChrome"], [200, 34]); +val adamantineProcessing =[ + , + , +] as IItemStack[]; + +for item in adamantineProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Starmetal +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [4.57F], *50); +ChemicalExtractor.add("Native", , ["dustAstralStarmetal", "dustTitanium"], [200, 18]); +val astralstarmetalProcessing =[ + , + , +] as IItemStack[]; + +for item in astralstarmetalProcessing { +furnace.addRecipe(,item, 0.1); +Melting.addRecipe( * 144, item); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +//Pyrite +LeachingVat.add(, [*8], [5.1F], *200); + +//Galena +LeachingVat.add(, [*8], [7.4F], *200); + +//Sphalerite +LeachingVat.add(, [*8], [4.05F], *200); + +//blastFurnace.removeInputRecipe(IIngredient iIngredient) +// 3880 is max heat + +furnace.remove(,); +blastFurnace.addRecipe(, null, , null, 200, 20, 1500); + + +//////////////////////////////////////// +##Aluminum +//////////////////////////////////////// +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [4.88F], *50); +ChemicalExtractor.add("Oxide", , ["dustAluminum", "dustIron", "dustTitanium"], [200, 25, 10]); +/*furnace.addRecipe(, , 0.1); +furnace.addRecipe(, , 0.1);*/ + +blastFurnace.addRecipe(, null, , null, 100, 20, 1500); +blastFurnace.addRecipe(*2, null, , null, 100, 20, 1500); + +val aluminumProcessing =[ + , + , +, +] as IItemStack[]; + +for item in aluminumProcessing { +blastFurnace.addRecipe(, null, item, null, 100, 20, 1500); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +ArcFurnace.addRecipe(, item, , 100, 512); +} + + +//////////////////////////////////////// +##Platinum +//////////////////////////////////////// +MineralSizer.add(, [*4], [15]); +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [7.59F], *50); +ChemicalExtractor.add("Sulfide", , ["dustPlatinum", "dustOsmium", "dustIridium"], [200, 20, 15]); + +blastFurnace.addRecipe(, null, , null, 1200, 50, 2000); +blastFurnace.addRecipe(*4, null, , null, 1200, 60, 2000); +blastFurnace.addRecipe(*2, null, , null, 1200, 60, 2000); + +val platinumProcessing =[ + , + , +, +] as IItemStack[]; + +for item in platinumProcessing { +blastFurnace.addRecipe(, null, item, null, 1200, 60, 2000); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} +//////////////////////////////////////// +##Osmium +//////////////////////////////////////// +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [3.51F], *50); +ChemicalExtractor.add("Native", , ["dustOsmium", "dustIridium", "dustPlatinum"], [200, 20, 15]); + +blastFurnace.addRecipe(, null, , null, 1200, 40, 2500); +blastFurnace.addRecipe(*2, null, , null, 1200, 40, 2500); + +val osmiumProcessing =[ + , + , +, +] as IItemStack[]; + +for item in osmiumProcessing { +blastFurnace.addRecipe(, null, item, null, 1200, 60, 2500); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} +//////////////////////////////////////// +##Tungsten +//////////////////////////////////////// +MineralSizer.add(, [*2], [15]); +LeachingVat.add(, [*2], [5.13F], *50); +ChemicalExtractor.add("Sulfide", , ["dustTungsten", "dustTin", "dustGold"], [200, 20, 7]); + +blastFurnace.addRecipe(*2, null, , null, 1800, 100, 3000); +blastFurnace.addRecipe(, null, , null, 1800, 80, 3000); + +val tungstenProcessing =[ + , + , +, +] as IItemStack[]; + +for item in tungstenProcessing { +blastFurnace.addRecipe(, null, item, null, 1800, 80, 3000); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} +//////////////////////////////////////// +##Titanium +//////////////////////////////////////// +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [5.00F], *50); +ChemicalExtractor.add("Native", , ["dustTitanium", "dustGold", "dustCarbon"], [200, 30, 20]); + +blastFurnace.addRecipe(*2, null, , null, 1800, 100, 3000); +blastFurnace.addRecipe(, null, , null, 1800, 80, 3000); + +val titaniumProcessing =[ + , + , +, +] as IItemStack[]; + +for item in titaniumProcessing { +blastFurnace.addRecipe(, null, item, null, 1800, 80, 3000); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} + +LeachingVat.add(, [*8], [4.25F], *200); + +//////////////////////////////////////// +##Mana Metal +//////////////////////////////////////// + +blastFurnace.addRecipe(*2, null, , null, 1800, 100, 3000); +blastFurnace.addRecipe(, null, , null, 1800, 80, 3000); + +//////////////////////////////////////// +##Iridium +//////////////////////////////////////// +MineralSizer.add(, [*2], [4]); +LeachingVat.add(, [*2], [20.20F], *50); +ChemicalExtractor.add("Native", , ["dustIridium", "dustOsmium", "dustPlatinum"], [200, 25, 15]); + +blastFurnace.addRecipe(*2, null, , null, 2000, 500, 3500); +blastFurnace.addRecipe(, null, , null, 2000, 500, 3500); + +val iridiumProcessing =[ + , + , +] as IItemStack[]; + +for item in iridiumProcessing { +blastFurnace.addRecipe(, null, item, null, 2000, 500, 3500); +Crusher.addRecipe(, item, 1024, *2, 1); +Pulverizer.addRecipe(, item, 2000, *2); +} +//////////////////////////////////////// + +//New Ores +furnace.addRecipe(, , 0.0); +furnace.addRecipe(, , 0.0); +furnace.addRecipe(, , 0.0); + + +################################## +##### Ingot Tiers ###### +################################## + +//Furnace +val Tier1Ingots =[ +, +, +, +, +, +, +, +] as IItemStack[]; +for item in Tier1Ingots { +item.addTooltip(format.gray("等级1金属")); +} + +//Smeltery +val Tier2Ingots =[ +, +, +, +, +, +] as IItemStack[]; +for item in Tier2Ingots { +item.addTooltip(format.yellow("等级2金属")); +} + +//High Oven +val Tier3Ingots =[ +, +, +, +, +, +] as IItemStack[]; +for item in Tier3Ingots { +item.addTooltip(format.darkRed("等级3金属")); +} + +//Arc Furnace +val Tier4Ingots =[ +, +, +, +, +, +, +, +, +, +, +] as IItemStack[]; +for item in Tier4Ingots { +item.addTooltip(format.aqua("等级4金属")); +} + +//Blast Furnace / chap 5 +val Tier5Ingots =[ +, +, +, +, +, +, +, +, +, +, +] as IItemStack[]; +for item in Tier5Ingots { +item.addTooltip(format.gold("等级5金属")); +} + +//Ender Smeltery / chap 6 +val Tier6Ingots =[ +, +, +, +, +, +, +, +, +, +, +] as IItemStack[]; +for item in Tier6Ingots { +item.addTooltip(format.darkPurple("等级6金属")); +} +########################################################################################## +print("==================== end of metal Processing.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/applied_energestics.zs b/project/Multiblock Madness/1.2.1/scripts/applied_energestics.zs new file mode 100644 index 000000000..f89e54ed1 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/applied_energestics.zs @@ -0,0 +1,263 @@ +import mods.appliedenergistics2.Inscriber; +import mods.advancedrocketry.Crystallizer; +import crafttweaker.item.IItemStack; +import mods.threng.Aggregator; +import mods.techreborn.blastFurnace; +import crafttweaker.item.IIngredient; + +print("==================== loading applied.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//Resonating Crystal +Crystallizer.addRecipe(, 100, 5000, , , ); +Aggregator.removeRecipe(); + + +//Storage Thingies +val Certus as IIngredient = (|) as IIngredient; + +recipes.addShaped(, [[, Certus, ],[Certus, , Certus], [, Certus, ]]); +recipes.addShaped(*2, [[, Certus, ],[Certus, , Certus], [, Certus, ]]); +recipes.addShaped(*3, [[, Certus, ],[Certus, , Certus], [, Certus, ]]); + + +//interface +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); +recipes.addShapeless(, []); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + + +//inscribers +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShapedMirrored(, [[, , ],[, null, ], [, , ]]); + +//drives +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, null, ], [, , ]]); +recipes.addShapeless(, [, ,]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//p2p +val Fluix as IIngredient = (|) as IIngredient; + +recipes.addShaped(, [[null, , null], +[, , ], +[Fluix, Fluix, Fluix]]); + + +//busses +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(*2, [[null, , null], [, , ]]); +recipes.addShaped(, [[, , ], [null, , null]]); +recipes.addShaped(*2, [[, , ], [null, , null]]); + +//crafting unit +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//assembler +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//ender hat +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +//station +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//me chest +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +//condenser +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +//charger +recipes.addShapedMirrored(, [[, , ],[, , null], [, , ]]); + +//dense smart cable +recipes.addShaped(, [[, ],[, ]]); + +//spatial io port +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//io port +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//quantum ring +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//Patterns +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + +//Fluid I/O +recipes.addShaped(, [[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ], [, , ]]); +recipes.addShaped(, [[, , ], [, , ]]); +recipes.addShaped(*2, [[, , ], [, , ]]); + + +//moved to actually additions +//Inscriber.addRecipe(, , true, ); + +//fluix platinum + + +furnace.remove(); +blastFurnace.addRecipe(, null, , null, 1200, 60, 2000); + +.displayName = "福鲁伊克斯铂锭"; +Aggregator.removeRecipe(); +Aggregator.addRecipe(, , , ); + +.displayName = "福鲁伊克斯覆层铂锭"; +Inscriber.removeRecipe(); +Inscriber.addRecipe(, , false, , ); + +//fluix logic chip +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//upgrades from simple storage network +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(*2, [[null, , null], [, , ]]); +recipes.addShaped(, [[, , ], [null, , null]]); +recipes.addShaped( * 2, [[, , ], [null, , null]]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [, ]); + + +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 100, 1000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 100, 1000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 100, 1000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 200, 10000, , ,); +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 1200, 100000, , ,); + +mods.advancedrocketry.PrecisionAssembler.addRecipe(, 300, 10000, *4,,,); + +//Lazy Frame +recipes.addShaped(*4, [ + [, , ], + [, , ], + [, , ] +]); + +####### PACKAGED AUTO ################## + +//Component +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + +//ME Component +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +recipes.addShaped(*2, [ + [, , ], + [, , ], + [, , ] +]); + +//Pattern +recipes.addShaped(*2, [ + [, , ], + [, , ], + [, , ] +]); +recipes.addShaped(*4, [ + [, , ], + [, , ], + [, , ] +]); + +//packager +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +//packer extention +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); +//unpacker +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + +//encoder +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + + +//Terminal Converting +recipes.addShaped( * 64, [[, , ],[, , ], [, , ]]); +recipes.addShaped(.withTag({StoredTerminals: [{ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "wft:wft", Count: 1 as byte, Damage: 0 as short}, {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "wct:wct", Count: 1 as byte, Damage: 0 as short}], InfinityEnergy: 0, SelectedTerminal: 0, internalCurrentPower: 0.0}), [ + [, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +########################################################################################## +print("==================== end of applied.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/astral_sorcery.zs b/project/Multiblock Madness/1.2.1/scripts/astral_sorcery.zs new file mode 100644 index 000000000..a19ebaf2a --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/astral_sorcery.zs @@ -0,0 +1,157 @@ +import crafttweaker.item.IItemStack; +import mods.tconstruct.Casting; +import mods.tconstruct.Melting; +import mods.astralsorcery.LiquidInteraction; +import mods.thaumcraft.Infusion; +import mods.astralsorcery.Altar; +import mods.astralsorcery.LightTransmutation; +import mods.astralsorcery.StarlightInfusion; +import mods.enderio.SagMill; + +print("==================== loading Astral Sorcery ===================="); +########################################################################################## + +val itemstoRemove = +[ + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + +SagMill.addRecipe([,,], [1,0.5,0.1] , , "MULTIPLY_OUTPUT"); + +//.addTooltip(format.aqua("Drop any log into liquid Starlight to create")); +.addTooltip(format.aqua("由天体水晶簇生长而来")); + +//Wand with no starlight +recipes.addShaped(, [[null, , ],[null, , ], [, null, null]]); + + +//mods.astralsorcery.Lightwell.addLiquefaction(IItemStack input, ILiquidStack output, float productionMultiplier, float shatterMultiplier, int colorhex); + + +LightTransmutation.removeTransmutation(, true); +LightTransmutation.addTransmutation(, , 9); + +//1000 max starlight for first tier altar +Altar.addDiscoveryAltarRecipe("internal/altar/upgrade_tier2", , 950, 200, [ + + , , , + + , , , + + , , ]); + +//2000 max starlight 2nd tier + + +.add(); +.add(); +.add(); + +Altar.addAttunementAltarRecipe("internal/altar/illuminator", , 1500, 300, [ + , , , + , , , + , , , + , , , ]); + +Altar.addAttunementAltarRecipe("internal/altar/upgrade_tier3", , 1900, 400, [ + , null, , + , , , + , , , + , , , ]); + +Altar.addConstellationAltarRecipe("internal/altar/upgrade_tier4", , 3800, 500, [ + , , , + , , , + , , , + , , , , + , , + , , + , , + , ]); + +//Altar.addTraitAltarRecipe(string recipeLocation, IItemStack output, int starlight, int craftTickTime, IIngredient[] inputs, @optional String iRequiredConstellationFocusName); +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/beacon", , 5000, 400, [ + + , , , + , , , + , , , + , , , , + , , + , , + + , , + , , + + , , + , , + + //Outer Items, indices 25+ + + , , , + +]); + +//illumination powder +Altar.addDiscoveryAltarRecipe("internal/altar/illuminationpowder", *16, 250, 200, [ + + null, , null, + + , , , + + null, , null]); + + +/* +Altar.addAttunementAltarRecipe("multiblockmadness:shaped/internal/altar/runealtar", , 500, 300, [ + + , , , + + , , , + + , , , + + , , , ]); +*/ + +//Starmetal Block recipes +recipes.addShapeless( * 9, []); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +Melting.addRecipe( * 1296, ); +Casting.addBasinRecipe(, null, , 1296); + +.addTooltip(format.lightPurple("用来激活暮色传送门")); + +//Illumination Powder +StarlightInfusion.addInfusion(, *8, false, 0.5, 200); + +//Illumination Powder +StarlightInfusion.addInfusion(, *2, false, 0.75, 200); + +//Skystone +LightTransmutation.addTransmutation(, , 5); + +//LiquidInteraction.addInteraction(ILiquidStack liquidIn1, float chanceConsumption1, ILiquidStack liquidIn2, float chanceConsumption2, int weight, IItemStack output); +LiquidInteraction.addInteraction( * 50, 0.5, * 200, 0.5, 89, ); +LiquidInteraction.addInteraction( * 50, 0.5, * 200, 0.5, 10, ); +LiquidInteraction.addInteraction( * 50, 0.5, * 200, 0.5, 1, ); + + +Altar.removeAltarRecipe("astralsorcery:shaped/internal/altar/chalice"); + +Infusion.registerRecipe("chalice", "", +, 5, +[*150, *100, *100, *50], +, +[,, , , +,, , ]); + + + +########################################################################################## +print("==================== end of Astral Sorcery ===================="); \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/scripts/betweenlands.zs b/project/Multiblock Madness/1.2.1/scripts/betweenlands.zs new file mode 100644 index 000000000..4eb1fe780 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/betweenlands.zs @@ -0,0 +1,93 @@ +########################################################################################## + +#modloaded thebetweenlands + +print("==================== loading mods betweenlands.zs ===================="); +########################################################################################## + +val oreDictRubber = ; + +//oreDictEnt.add(IItemStack... item_items); +oreDictRubber.add( + +); + +### CRAFTING RECIPES ### + +//crafting the talisman +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//converting at very low rate +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//syrmorite TC material + +val syrmorite = mods.contenttweaker.tconstruct.MaterialBuilder.create("syrmorite"); +syrmorite.color = 0x294187; +syrmorite.craftable = false; +syrmorite.castable = true; +syrmorite.representativeItem = ; +syrmorite.addItem(); +syrmorite.liquid = ; +syrmorite.localizedName = "赛摩铜"; +syrmorite.addHeadMaterialStats(622, 6.45, 2.5, 2); +syrmorite.addHandleMaterialStats(1.6, -220); +syrmorite.addExtraMaterialStats(96); +syrmorite.addBowMaterialStats(0.65, 0.77, 0.33); +syrmorite.addProjectileMaterialStats(); +syrmorite.addMaterialTrait("magnetic1", "head"); +syrmorite.addMaterialTrait("heavy", "handle"); +syrmorite.register(); + +//octine TC material + +val octine = mods.contenttweaker.tconstruct.MaterialBuilder.create("octine"); +octine.color = 0xffb120; +octine.craftable = false; +octine.castable = true; +octine.representativeItem = ; +octine.addItem(); +octine.liquid = ; +octine.localizedName = "炽炎铁"; +octine.addHeadMaterialStats(777, 8.8, 8.5, 3); +octine.addHandleMaterialStats(0.7, 367); +octine.addExtraMaterialStats(-2); +octine.addBowMaterialStats(0.56, 0.42, 0.66); +octine.addProjectileMaterialStats(); +octine.addMaterialTrait("flammable", "head"); +octine.addMaterialTrait("autosmelt", "head"); +octine.addMaterialTrait("aridiculous", "handle"); +octine.register(); + +//valonite TC material + +val valonite = mods.contenttweaker.tconstruct.MaterialBuilder.create("valonite"); +valonite.color = 0xd8b8d8; +valonite.craftable = true; +valonite.castable = false; +valonite.representativeItem = ; +valonite.addItem(); +valonite.localizedName = "法罗钠"; +valonite.addHeadMaterialStats(146, 9, 9.5, 3); +valonite.addHandleMaterialStats(1.0, 12); +valonite.addExtraMaterialStats(146); +valonite.addBowMaterialStats(0.62, 0.58, 0.58); +valonite.addProjectileMaterialStats(); +valonite.addMaterialTrait("momentum", "head"); +valonite.addMaterialTrait("fractured", "handle"); +valonite.register(); +########################################################################################## +print("==================== end of mods betweenlands.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/blood_magic.zs b/project/Multiblock Madness/1.2.1/scripts/blood_magic.zs new file mode 100644 index 000000000..4722ff02f --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/blood_magic.zs @@ -0,0 +1,273 @@ +import crafttweaker.item.IItemStack; +import crafttweaker.item.IIngredient; +import mods.bloodmagic.TartaricForge; +import mods.bloodmagic.BloodAltar; +import mods.thaumcraft.Crucible; +import mods.thaumcraft.ArcaneWorkbench; +import mods.astralsorcery.Altar; +import mods.immersiveengineering.Squeezer; +import crafttweaker.block.IBlockState; +import mods.animus.AnimusPlugin; +import mods.bloodmagic.AlchemyTable; +import mods.techreborn.compressor; +import mods.nuclearcraft.Pressurizer; + + +print("==================== loading blood magic.zs ===================="); +########################################################################################## + +//Blood Altar +//InputStack, OutputStack, TierRequired, LPRequired, UsageRate, DrainRate + +val itemstoRemove = +[ + , + , + , + , + , +// , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +.addTooltip(format.gold("能够当作坠星标位仪式的催化物")); +.addTooltip(format.darkRed("需要你的宝珠里存有5,000,000 LP")); +.addTooltip(format.gold("能够当作坠星标位仪式的催化物")); +.addTooltip(format.darkRed("需要你的宝珠里存有1,000,000 LP")); +.addTooltip(format.gold("能够当作坠星标位仪式的催化物")); +.addTooltip(format.darkRed("需要你的宝珠里存有2,500,000 LP")); + +//Automating Blood +//mods.immersiveengineering.Mixer.addRecipe(*1000, .withTag({Potion: "minecraft:harming"})*1000, [], 1024); +//New Blood Recipe +mods.immersiveengineering.Mixer.addRecipe(*1000, *250, [], 512); + +Crucible.registerRecipe("BucketLife", "", + .withTag({FluidName: "lifeessence", Amount: 1000}), , + [ * 10, * 1, * 1] +); + +/* +val bloodOrb = [ + .withTag({orb: "bloodmagic:weak"}), + .withTag({orb: "bloodmagic:apprentice"}), + .withTag({orb: "bloodmagic:magician"}), + .withTag({orb: "bloodmagic:master"}), + .withTag({orb: "bloodmagic:archmage"}), + .withTag({orb: "bloodmagic:transcendent"}), +] as IItemStack[]; + +val bloodOrbLeast = [ + bloodOrb[0]|bloodOrb[1]|bloodOrb[2]|bloodOrb[3]|bloodOrb[4]|bloodOrb[5], + bloodOrb[1]|bloodOrb[2]|bloodOrb[3]|bloodOrb[4]|bloodOrb[5], + bloodOrb[2]|bloodOrb[3]|bloodOrb[4]|bloodOrb[5], + bloodOrb[3]|bloodOrb[4]|bloodOrb[5], + bloodOrb[4]|bloodOrb[5], + bloodOrb[5], +] as IIngredient[];*/ + +#--------------Weak blood orb +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({orb: "bloodmagic:weak"}), , 0, 2000, 12, 12); + +#--------------apprentice blood orb +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({orb: "bloodmagic:apprentice"}), , 1, 5000, 30, 20); + +#--------------magician blood orb +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({orb: "bloodmagic:magician"}), , 2, 20000, 100, 20); + + +//dawn inscription +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({uses: 10}), , 5, 200000, 400, 200); + + +//dusk inscription +mods.thermalexpansion.InductionSmelter.addRecipe(, , *8, 5000); +mods.techreborn.implosionCompressor.addRecipe(, null, *9, *16, 40, 50000); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.removeRecipe(); +mods.thermalexpansion.Pulverizer.addRecipe(*9, , 3000); + +BloodAltar.removeRecipe(); +BloodAltar.addRecipe(.withTag({uses: 10}), , 3, 50000, 200, 20); + + + + +//Blood Bronze +BloodAltar.addRecipe(, , 1, 2000, 12, 12); + + +# Blank Slate +.displayName = "石板块"; +/*.displayName = "Block of Reinforced Slates"; +.displayName = "Block of Imbued Slates"; +.displayName = "Block of Demonic Slates"; +.displayName = "Block of Ethereal Slates";*/ + BloodAltar.removeRecipe(); + BloodAltar.addRecipe(, , 0, 1000, 10, 10); + +.addTooltip(format.red("使用束缚之剑击杀怪物掉落")); +.addTooltip(format.red("使用感知之剑来收集意志")); + +//Hellfire Forge +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); +TartaricForge.removeRecipe([.withTag({}), ]); +//TartaricForge.addRecipe(IItemStack output, IItemStack[] inputs, double minSouls, double soulDrain); +TartaricForge.removeRecipe([, , , ]); +TartaricForge.addRecipe(,[, , , ], 64,10); + +.add(); +.add(); +.add(); +recipes.addShapeless(, [,]); + + + +recipes.addShaped(.withTag({ench: [{lvl: 2 as short, id: 20 as short}]}), [[null, , null],[null, , null], [null, , null]]); + +mods.thaumcraft.Crucible.registerRecipe("sentient_sword", "", + .withTag({ench: [{lvl: 3 as short, id: 21 as short}, {lvl: 1 as short, id: 70 as short}], RepairCost: 1}), .withTag({ench: [{lvl: 2 as short, id: 20 as short}]}), + [ * 30, * 15, * 30] +); +mods.thaumcraft.Crucible.registerRecipe("sacrificial_dagger", "", + , , + [ * 20, * 10, * 30] +); + +//mods.bloodmagic.AlchemyTable.addRecipe(IItemStack output, IItemStack[] inputs, int syphon, int ticks, int minTier); +mods.bloodmagic.AlchemyTable.addRecipe(, [, ], 500,200,0); + +//Binding Reagent +TartaricForge.removeRecipe([, , , ]); +TartaricForge.addRecipe(,[, , , ], 100,10); + +//Graveyard/glass combo +TartaricForge.addRecipe(,[, , , ], 150,20); +//mods.botania.ElvenTrade.addRecipe([], [,*9]); + +//Ash +TartaricForge.removeRecipe([, , , ]); +ArcaneWorkbench.registerShapedRecipe("CTAsh", "", 200, [,,], +, +[[, , ], +[, , ], +[, , ]] +); + +//crystl brik +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 4, [[, ],[, ]]); + + +//Altar.addTraitAltarRecipe(string recipeLocation, IItemStack output, int starlight, int craftTickTime, IIngredient[] inputs, @optional String iRequiredConstellationFocusName); + +TartaricForge.removeRecipe([, , , ]); +TartaricForge.removeRecipe([, , , ]); +TartaricForge.removeRecipe([, , , ]); +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/demon_crystallizer", , 5000, 400, [ + + , , , + , , , + , , , + + , , , , + null, null, + , , + null, null, + , , + null, null, + null, , + //Outer Items, indices 25+ + , , , , +]); + +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/demon_pylon", , 5000, 400, [ + + , , , + , , , + , , , + + null, null, , , + null, null, + , , + null, null, + , , + , null, + null, , + //Outer Items, indices 25+ + , , , , +]); + +Altar.addTraitAltarRecipe("mm:shaped/internal/altar/demon_crucible", , 5000, 400, [ + + , , , + , , , + , , , + + null, null, , , + , , + , , + null, null, + , , + null, null, + null, , + //Outer Items, indices 25+ + , , , , +]); + + +//Loose Traction +recipes.addShaped(.withTag({level: 0, key: "bloodmagic.upgrade.slippery"}), [[null, , null],[, .withTag({level: 9, key: "bloodmagic.upgrade.slowness"}).onlyWithTag({level: 9, key: "bloodmagic.upgrade.slowness"}), ], [null, , null]]); + +//Blank Runes +Squeezer.addRecipe(, *1000, * 4, 256); + +compressor.addRecipe(, *4, 600, 50); +Pressurizer.addRecipe(*4, ); + +//VOIDSTONE BOIIIIII +.addTooltip(format.darkPurple("元始虚空石(带有眼睛)用于第三级血之祭坛的柱顶")); +.addTooltip(format.darkPurple("用于第三级血之祭坛的柱顶")); +AlchemyTable.addRecipe( *4, [,,,,], 1000, 100, 2); +AnimusPlugin.removeComponentMapping(,"GLOWSTONE"); +AnimusPlugin.addComponentMapping(, "GLOWSTONE"); + + + + +/* +val runeUncrafting = +[ +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in runeUncrafting { +recipes.addShapeless(, [item]); +}*/ + + +print("==================== end of blood magic.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/botania.zs b/project/Multiblock Madness/1.2.1/scripts/botania.zs new file mode 100644 index 000000000..780b573b6 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/botania.zs @@ -0,0 +1,295 @@ +########################################################################################## +#modloaded botania +#priority 100 + +import crafttweaker.item.IItemStack; +import mods.botania.Apothecary; +import mods.botania.ElvenTrade; +import mods.botania.ManaInfusion; +import mods.botania.Orechid; +import mods.botania.OrechidIgnem; +import mods.botania.PureDaisy; +import mods.botania.RuneAltar; +import mods.botaniatweaks.Agglomeration; +import mods.inworldcrafting.FluidToItem; +import mods.thermalexpansion.Insolator; +import mods.thaumcraft.Infusion; +import mods.immersiveengineering.Crusher; +import mods.nuclearcraft.Manufactory; +import mods.techreborn.grinder; +import mods.enderio.SagMill; +import mods.thermalexpansion.Pulverizer; +import mods.nuclearcraft.Melter; + +print("==================== loading mods botania.zs ===================="); +########################################################################################## + +//mods.botania.ElvenTrade.addRecipe([], [,]); + +val remove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in remove { +recipes.remove(item); +} + + +.addTooltip(format.green("使用植物魔法辞典来搭建")); + +//Mana Gun +recipes.addShaped(, [[, , ],[null, , ], [null, null, ]]); + +//Enchanted Soil +recipes.addShapeless(, [,]); + +//mods.thermalexpansion.Insolator.addRecipe(IItemStack primaryOutput, IItemStack primaryInput, IItemStack secondaryInput, int energy, @Optional IItemStack secondaryOutput, @Optional int secondaryChance, @Optional int water); +## Black Lotus +Insolator.addRecipe(, , , 1000, , 100, 1000); +Insolator.addRecipe(*2, , , 7500, , 25, 2500); +Insolator.addRecipe(*3, , , 15000, , 5, 5000); + + +// living wood +PureDaisy.removeRecipe(); + +val livingWood = +[ + /* + , + , + , + , + , + */ + , + , + , +] + as IItemStack[]; + +for item in livingWood { +PureDaisy.addRecipe(item, ); +} + + +// living stone +val plantsformossy = +[ +, +, +, +, + +] + as IItemStack[]; +for item in plantsformossy { +.add(item); +} +PureDaisy.removeRecipe(); +PureDaisy.addRecipe(, ); + +FluidToItem.transform(, , [, ], true); + +/* Does not work with botania items for some reason +.displayName = "Manasilver Ingot"; +.displayName = "Manasilver Nugget"; +.displayName = "Block of Manasilver"; +.displayName = "Manasilver Essence"; +.displayName = "Manasilver Seeds"; +.displayName = "Molten Manasilver"; +.displayName = "Manasilver Rod"; +*/ + +### CRAFTING RECIPES ### +recipes.addShaped(, [[, , ],[null, , null], [, , ]]); + +//spreader +recipes.addShapedMirrored(, [[, , ],[, , null], [, , ]]); + + +mods.astralsorcery.Altar.addAttunementAltarRecipe("multiblockmadness:shaped/internal/altar/runealtar", , 1000, 300, [ + + , , , + + , , , + + , , , + + , , , ]); + +### INFUSION ### +//Mana Powder +ManaInfusion.removeRecipe(); +ManaInfusion.addInfusion(,,10000); +ManaInfusion.addInfusion(,,5000); +ManaInfusion.addInfusion(,,7500); + +//Essence of Mana +ManaInfusion.addInfusion(.withTag({Aspects: [{amount: 1, key: "praecantatio"}]}), , 1000); + +//Mana Steel +ManaInfusion.removeRecipe(); +ManaInfusion.removeRecipe(); + +ManaInfusion.addInfusion(,,10000); +ManaInfusion.addInfusion(*2,,10000); +ManaInfusion.addInfusion(,,100000); +ManaInfusion.addInfusion(*2,,100000); + +//Mana Diamond +ManaInfusion.removeRecipe(); +ManaInfusion.removeRecipe(); + +ManaInfusion.addInfusion(,,15000); +ManaInfusion.addInfusion(,,150000); + +ManaInfusion.addInfusion(,,1500); +ManaInfusion.addInfusion(,,15000); + + + +//Terrasteel +Agglomeration.removeRecipe(, [, , ]); + +Agglomeration.addRecipe(, +[, , ] +,500000,0x0000FF,0x00FF00, +,,); + +//mods.thaumcraft.Infusion.registerRecipe(String name, String research, IItemStack output, int instability, CTAspectStack[] aspects, IIngredient centralItem, IIngredient[] recipe); +//Glimering Wood +mods.astralsorcery.StarlightInfusion.addInfusion(, , false, 0.1, 100); +mods.astralsorcery.StarlightInfusion.addInfusion(, , false, 0.1, 100); + + + +//Nature Pylon +mods.thaumcraft.Infusion.registerRecipe("nature_pylon", "", +, 5, +[*200, *100, *50, *50], +, [,,, ,,, ,]); + +//Gateway Core +mods.thaumcraft.Infusion.registerRecipe("gateway_core", "", +, 10, +[*200, *100, *50, *50], +, +[,, , , +,, , ]); + + +Agglomeration.addRecipe(, [, , ,],250000,0x0000FF,0x8afff7,,,); + +RuneAltar.addRecipe(*4,[,,,,,,,], 10000); + +//RuneAltar.removeRecipe(IIngredient output); +RuneAltar.removeRecipe(); + +//mods.botania.RuneAltar.addRecipe(IItemStack output, IIngredient[] input, int mana); +RuneAltar.addRecipe(,[, , , , , ], 20000); + +val petalDupe as IItemStack[IItemStack] = { +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +:, +} as IItemStack[IItemStack]; + +for petal, dust in petalDupe { +Insolator.addRecipe(petal*2, petal, , 1500); +Insolator.addRecipe(petal*3, petal, , 3000); +Insolator.addRecipe(petal*5, petal, , 5000); + +Crusher.addRecipe(dust, petal, 2048, dust, 0.1); +Manufactory.addRecipe(petal, dust); +grinder.addRecipe(dust, petal, 300, 4); +Pulverizer.addRecipe(dust, petal, 1500, dust, 10); +SagMill.addRecipe([dust], [1] , petal, "MULTIPLY_OUTPUT"); +} + +val tinyDustMap as IItemStack[IItemStack] = { +} as IItemStack[IItemStack]; + +for tinyDust, material in tinyDustMap { + mods.fossils.recipes.addSifterOutput(material, tinyDust, 1); +} +//mods.thermalexpansion.Insolator.addRecipe(IItemStack primaryOutput, IItemStack primaryInput, IItemStack secondaryInput, int energy, @Optional IItemStack secondaryOutput, @Optional int secondaryChance, @Optional int water); + +//Shaped Quartz +//PureDaisy.addRecipe(, ); +PureDaisy.addRecipe(, ); + + + +mods.botania.ManaInfusion.removeRecipe(); + +//Spark augmets +recipes.addShapeless(, [,,,]); +recipes.addShapeless(, [,,,]); +recipes.addShapeless(, [,,,]); +recipes.addShapeless(, [,,,]); + +//Life FLower +//mods.botania.Apothecary.removeRecipe(IItemStack output); +mods.botania.Apothecary.removeRecipe(.withTag({type: "dandelifeon"})); +mods.botania.Apothecary.removeRecipe(.withTag({type: "munchdew"})); +mods.botania.Apothecary.removeRecipe(.withTag({type: "kekimurus"})); +mods.botania.Apothecary.removeRecipe(.withTag({type: "entropinnyum"})); + +mods.botania.Apothecary.addRecipe("dandelifeon", +[, , , , , , , ]); + +mods.botania.Apothecary.addRecipe("munchdew", +[,,,,]); + +mods.botania.Apothecary.addRecipe("kekimurus", +[,,,,,,]); + +mods.botania.Apothecary.addRecipe("entropinnyum", +[,,,,,,,,]); + + +.withTag({type: "endoflame"}).addTooltip(format.red("1小时后枯萎!")); +.withTag({type: "endoflame"}).addTooltip(format.red("1小时后枯萎!")); + + +//Third Eye +Infusion.registerRecipe("thirdeye", "", +, 5, +[*150, *100, *50], +, +[,, , , +,, , ]); + +//elementium +Melter.addRecipe(, ); + +########################################################################################## +print("==================== end of mods botania.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/creative_biz.zs b/project/Multiblock Madness/1.2.1/scripts/creative_biz.zs new file mode 100644 index 000000000..42d4c03b1 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/creative_biz.zs @@ -0,0 +1,335 @@ +import crafttweaker.item.IItemStack; + +import mods.thaumcraft.Infusion; +import mods.botaniatweaks.Agglomeration; +import mods.extendedcrafting.EnderCrafting; +import mods.enderio.Vat; +import mods.nuclearcraft.Crystallizer; + +print("==================== loading creative biz.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +val EXitemstoRemove = +[ + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in EXitemstoRemove { + mods.avaritia.ExtremeCrafting.remove(item); +} + +//Entasngled Singularities +mods.techreborn.implosionCompressor.addRecipe( * 2, null, , *2, 40, 500); + +//Luminessence +recipes.removeShapeless( * 2, [, , , ]); +Vat.removeRecipe(); +Vat.addRecipe(, 1, , +[,,,],[3,2,1.5,1], +[,,,],[1,1,2,3], 100000); +Crystallizer.addRecipe(*1000, , 1, 8); + + +//Ultime Ingot +Agglomeration.addRecipe(, +[, , , , ] +,1000000,0x004a80,0xa432a8, +,,, +null, , +); + +.displayName = "午夜金属锭"; +.displayName = "午夜金属块"; +.displayName = "午夜金属粒"; +.displayName = "午夜金属棒"; +.displayName = "午夜金属框架"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属灯"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属块(平衡过的)"; +.displayName = "午夜金属板"; +.displayName = "午夜金属块块(平衡过的)"; +.displayName = "午夜金属灯"; + +.displayName = "暮色金属粒"; +.displayName = "黄昏金属粒"; + + + +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); +.addTooltip(format.lightPurple("用催化剂潜行右键上一等级的合成桌")); + + +//New Neutronium Essence output +recipes.addShaped( * 3, [[, , ],[, , ], [, , ]]); + + +//mods.iceandfire.recipes.addFireDragonForgeRecipe(, , ); + +.addTooltip(format.lightPurple("在太空站用轨道激光站挖掘获得")); + +//AR Creative Power Plug +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Infinity ingot +mods.techreborn.fusionReactor.addRecipe(, *4, , 100000000, -25000000, 2400, 50); + + +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, , , , , , , , null], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [null, , , , , , , , null] +]); + +//Sponge +Infusion.registerRecipe("creative_flux_sponge", "", +, 20, +[*10, *200, *50], +, +[,, , , +,, , ]); + + +//午夜金属Block Uncrafting +recipes.addShapeless( * 9, []); + +//Twilight Ingot +.displayName = "暮色金属锭"; +.displayName = "暮色金属块"; +EnderCrafting.remove(); +EnderCrafting.addShaped(, +[[, , ], +[, , ], +[, , ]]); + +//Endest Star +.displayName = "终末之星"; +.displayName = "终末之星块"; +.displayName = "终末之星粒"; +EnderCrafting.remove(); +EnderCrafting.addShaped(, +[[null, , null], +[, , ], +[null, , null]]); + +//Cosmic Meatballs +mods.extendedcrafting.TableCrafting.addShapeless(0, *4, [, , , , +, , , , , +, , , , , +, , , , , , +, , , , , , +, , , , , , +, , , , , , +, , , , , , +, , , , ]); + +//Cosmic stew +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); + + +//Endest Pearl +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, , , , null, null, null], + [null, null, , , , , , null, null], + [null, , , , , , , , null], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [null, , , , , , , , null], + [null, null, , , , , , null, null], + [null, null, null, , , , null, null, null] +]); + +//Infinity Catalyst +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, null, , null, null, null, null], + [null, , null, null, , null, null, , null], + [null, null, , null, , null, , null, null], + [null, null, null, , , , null, null, null], + [.withTag({Material: "blood_infused_iron"}), , , , , , , , ], + [null, null, null, , , , null, null, null], + [null, null, , null, , null, , null, null], + [null, , null, null, , null, null, , null], + [null, null, null, null, , null, null, null, null] +]); + +//Guilty Pool +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null], + [, , , null, null, null, , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); +recipes.addShapeless(, [.withTag({mana: 500000, creative: 1 as byte})]); +recipes.addShapeless(.withTag({mana: 500000, creative: 1 as byte}), []); + +//Creative Tank +mods.extendedcrafting.TableCrafting.addShaped(0,.withTag({tier: 4}), [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); +/* +mods.extendedcrafting.TableCrafting.addShaped(0, .withTag({tier: 4}), [ + [, , , , , , , , ], + [, , , , .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), , , , ], + [, , .withTag({tier: 3}), , , , .withTag({tier: 3}), , ], + [, , , , , , , , ], + [, .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), , , , , , .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), ], + [, , , , , , , , ], + [, , .withTag({tier: 3}), , , , .withTag({tier: 3}), , ], + [, , , , .withTag({RSControl: 0 as byte, Creative: 0 as byte, Level: 4 as byte}), , , , ], + [, , , , , , , , ] +]); +*/ +recipes.addShapeless(.withTag({tier: 4}), [.withTag({RSControl: 0 as byte, Creative: 1 as byte, Level: 4 as byte})]); +recipes.addShapeless(.withTag({RSControl: 0 as byte, Creative: 1 as byte, Level: 4 as byte}), [.withTag({tier: 4})]); + +//Creative Essentia Cell +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); + +//Wireless Termanal +mods.extendedcrafting.TableCrafting.addShaped(0, .withTag({StoredTerminals: [{ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "wft:wft_creative", Count: 1 as byte, Damage: 0 as short}, {ForgeCaps: {"astralsorcery:cap_item_amulet_holder": {}}, id: "wct:wct_creative", Count: 1 as byte, Damage: 0 as short}], IsInRange: 0 as byte, SelectedTerminal: 0, internalCurrentPower: 1600000.0}), [ + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , , , , , ] +]); + +//COil +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null], + [null, null, , , , , , null, null], + [null, , , , , , , , null], + [, , .withTag({tier: 3}), , , , .withTag({tier: 3}), , ], + [null, , , , , , , , null], + [null, null, , , , , , null, null], + [null, null, null, null, null, null, null, null, null], + [null, null, null, null, null, null, null, null, null] +]); + +//Creative Cell +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , , , , , , , ], + [, , , , .reuse(), , , , ], + [, , , , , , , , ], + [, , , , , , , , ], + [, .withTag({tier: 4}).reuse(), , , , , , .reuse(), ], + [, , , , , , , , ], + [, , , , , , , , ], + [, , , , .reuse(), , , , ], + [, , , , , , , , ] +]); +recipes.addShapeless(, []); +recipes.addShapeless(, []); + + +//Creative Storage +mods.extendedcrafting.TableCrafting.addShaped(0, , [ + [, , .withTag({tier: 3}), , ], + [, , , , ], + [.withTag({tier: 3}), , , , .withTag({tier: 3})], + [, , , , ], + [, , .withTag({tier: 3}), , ] +]); + + +/*mods.qmd.target_chamber.addRecipe(IIngredient inputItem, IIngredient inputParticle, IIngredient outputItem, IIngredient outputParticle1, IIngredient outputParticle2, IIngredient outputParticle3, long maxEnergy, double crossSection, {long energyReleased, double processRadiation}) +Note: the input particles amount is the amount of particles needed to convert the item, Its energy is the minimum energy and its focus is the minimum focus. The output particles amount is the max amount/t released per input particle/t. The convention(i.e not required but recommended) is that positive particles are in outputParticle1, neutral particles in outputParticle2 and negitive particles in outputParticle3. This is because outputParticle2 can't be steered so will always come out the back of the chamber. +*/ + +//Neutronium +/* +mods.qmd.target_chamber.addRecipe(, ((*1000000)^50000)~2.0, , +null, null, null, 53000, 0.28, -100000, 0.001); +*/ + +recipes.addShapeless( * 9, []); +mods.extendedcrafting.CombinationCrafting.addRecipe(, 100000000, , +[,,,, +,,,, +,,,, +,,,]); + +mods.extendedcrafting.TableCrafting.remove(); +mods.extendedcrafting.TableCrafting.addShaped(3, , [ + [, , , , , , ], + [, , , , , , ], + [, , , , , , ], + [, , , , , , ] +]); +########################################################################################## +print("==================== end of creative biz.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/deep_mob_learning.zs b/project/Multiblock Madness/1.2.1/scripts/deep_mob_learning.zs new file mode 100644 index 000000000..a69bdc74f --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/deep_mob_learning.zs @@ -0,0 +1,76 @@ +import crafttweaker.item.IItemStack; +import mods.botania.ElvenTrade; +print("==================== loading Deep Mob Learning.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +.displayName = "炭灰外壳"; + +//No more free Nether Stars +recipes.removeShaped(, [[, , ],[, , ], [null, , null]]); + + + +//Sooty Plates +recipes.addShaped(, [[, , ], +[, , ], +[, , ]]); + +recipes.addShaped(*2, [[, , ], +[, , ], +[, , ]]); +//Sooty Casings +recipes.addShaped(*4, [[null, , null],[, null, ], [null, , null]]); + +//Keys +recipes.addShaped(, [[null, , ],[, , ], [, , null]]); + +//Extraction Chamber +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Agonizer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Sim Chamber +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + + + + +//Pre kill bosses +recipes.addShapeless(.withTag({tier: 1, killCount: 1, totalKillCount: 1}), [,]); +recipes.addShapeless(.withTag({tier: 1, killCount: 1, totalKillCount: 1}), [,]); + +//Glitch +ElvenTrade.addRecipe([], [,,*8]); +ElvenTrade.addRecipe([], [,,*5]); +ElvenTrade.addRecipe([], [,,*8]); +ElvenTrade.addRecipe([], [,,*7]); +ElvenTrade.addRecipe([], [,,*4]); + +########################################################################################## +print("==================== end of Deep Mob Learning.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/ebwizardry.zs b/project/Multiblock Madness/1.2.1/scripts/ebwizardry.zs new file mode 100644 index 000000000..39d7defe9 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/ebwizardry.zs @@ -0,0 +1,38 @@ +########################################################################################## +import crafttweaker.item.IItemStack; +import mods.botania.ManaInfusion; + +print("==================== loading mods ebwizardry.zs ===================="); +########################################################################################## + +### REMOVE RECIPES ### +val itemstoRemove = +[ + , + , + , + , + , + , + , + +] + as IItemStack[]; +for item in itemstoRemove { + recipes.remove(item); +} +### Add recipes ### +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +ManaInfusion.addInfusion(,,250000); +.addTooltip(format.aqua("将魔力水晶丢入至少有四分之一魔力的魔力池制作获得")); +########################################################################################## +print("==================== end of mods ebwizardry.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/embers.zs b/project/Multiblock Madness/1.2.1/scripts/embers.zs new file mode 100644 index 000000000..ab7a760e7 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/embers.zs @@ -0,0 +1,125 @@ +########################################################################################## +import mods.tconstruct.Alloy; +import mods.tconstruct.Melting; +import mods.tconstruct.Casting; +import crafttweaker.liquid.ILiquidStack; +import mods.embers.Mixer; +import mods.embers.EmberGeneration; +import crafttweaker.item.IItemStack; +import mods.thermalexpansion.Crucible; +print("==================== loading mods embers.zs ===================="); +########################################################################################## + +recipes.addShapeless( * 4, []); + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[null, , null], [, , ]]); + + +.addTooltip(format.red("使用灰烬晶体开采机从基岩中提取而来")); +.addTooltip(format.red("使用灰烬晶体开采机从基岩中提取而来")); +.addTooltip(format.red("使用灰烬晶体开采机从基岩中提取而来")); +.addTooltip(format.red("用灰烬炉烧制物品获得")); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[null, , ],[, , ], [, , ]]); + +//Cinder Plinth +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +//Beam Cannon +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Pedestal +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); + + +//Mixer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Dawnstone +Melting.addRecipe( * 1296, ); +Melting.addRecipe( * 576, ); +Melting.addRecipe( * 144, ); +Melting.addRecipe( * 144, ); + +Crucible.addRecipe( * 1296, , 10000); +Crucible.addRecipe( * 576, , 4000); +Crucible.addRecipe( * 144, , 1000); +Crucible.addRecipe( * 144, , 1000); + +Melting.addRecipe( * 100, ,1000); +Melting.addRecipe( * 600, ,2000); +Melting.addRecipe( * 2000, ,4000); +Melting.addRecipe( * 50, ,1000); +Mixer.remove( * 8); +Mixer.add( * 144,[ * 144, * 144, * 125]); + +EmberGeneration.addMetalCoefficient(,3); + +Casting.addTableRecipe(, , , 576, false, 250); +Casting.addTableRecipe(, , , 144, false, 100); +Casting.addTableRecipe(, , , 144, false, 100); +Casting.addBasinRecipe(, null, , 1296); + +mods.embers.Alchemy.add(, [,,,,], {"iron":48 to 64,"dawnstone":48 to 64}); +//mods.embers.Alchemy.remove(IItemStack ); + + +//Archaic Brick +Casting.addTableRecipe(, , , 144, true, 50); + +//inert metal +Mixer.add( * 72, [ * 72, * 36]); + + +recipes.addShaped(, [[, , ],[, , ], [, null, ]]); +recipes.addShaped(, [[null, null, null],[, null, ], [, , ]]); + + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +mods.inworldcrafting.FluidToItem.transform(, , [], true); +mods.inworldcrafting.FluidToItem.transform(, , [], true); +mods.inworldcrafting.FluidToItem.transform(, , [], true); + +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xcfcfcf); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xff9b4a); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xa6a6a6); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0x5c6f7a); +mods.astralsorcery.Lightwell.addLiquefaction(, , 1.2, 1.5, 0xe89e43); + + +//Glowstone Flows up :( +//mods.embers.Melter.add( * 250, ); +//mods.embers.Melter.add( * 1000, ); + + +########################################################################################## +print("==================== end of mods embers.zs ===================="); \ No newline at end of file diff --git a/project/Multiblock Madness/1.2.1/scripts/enderio.zs b/project/Multiblock Madness/1.2.1/scripts/enderio.zs new file mode 100644 index 000000000..9fee3eaf5 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/enderio.zs @@ -0,0 +1,180 @@ + +import crafttweaker.item.IItemStack; +import mods.tconstruct.Casting; +import mods.enderio.AlloySmelter; +import mods.thermalexpansion.InductionSmelter; +import mods.nuclearcraft.AlloyFurnace; +import mods.techreborn.grinder; +import mods.immersiveengineering.Crusher; + +print("==================== loading mods enderIO.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//Parts t2 +InductionSmelter.addRecipe(*4, *4, , 50000); +AlloySmelter.addRecipe(*4, [*4, ], 50000); +AlloyFurnace.addRecipe(*4, , *4); +//Parts t3 +InductionSmelter.addRecipe(*4, *4, , 50000); +AlloySmelter.addRecipe(*4, [*4, ], 50000); +AlloyFurnace.addRecipe(*4, , *4); + +//YETA +recipes.addShaped(, [[, null, ],[null, , null], [null, , null]]); + +//Probe +recipes.addShaped(, [[, null, ],[, , ], [, , ]]); + + +//Binder +.displayName = "通用粘合剂"; +recipes.addShapedMirrored(*8, [[, , ],[, , ], [, , ]]); +recipes.addShapeless(*4, [,]); +recipes.addShapeless(*8, [,,,]); + +//Travel Anchors +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//4x FAcad +recipes.addShaped( * 4, [[, , ],[, null, ], [, , ]]); + + +//Simple Chassis +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Cyclic Crafter +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Crafter +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//Painter +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Advanced Filter +.addTooltip(format.darkPurple("合成时不消耗")); +recipes.addShaped(, [[, , ],[, .reuse(), ], [, , ]]); + +//stone gear +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +//wood gear +recipes.addShaped(, [[null, , null],[, null, ], [null, , null]]); + +.add(); + +AlloySmelter.removeRecipe(); +mods.actuallyadditions.AtomicReconstructor.addRecipe(, , 5000); + +//pulsating crystal +Casting.removeTableRecipe(); +InductionSmelter.addRecipe(, , , 30000); +AlloyFurnace.addRecipe(, , ); + +Crusher.addRecipe(, , 1024); +grinder.addRecipe(, , 300, 4); + +//XP Obelisk +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); +recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); + + +//cant make frames the normal way +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +mods.enderio.AlloySmelter.removeRecipe(); +mods.enderio.AlloySmelter.removeRecipe(); + +//Redstone stuff +recipes.addShaped(, [[, , ]]); +recipes.addShaped(, [[, , ]]); +recipes.addShaped(, [[, null, null],[, , ], [, null, null]]); +recipes.addShaped(, [[, , ]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[null, , null], [null, , null]]); +recipes.addShaped(, [[, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); + +mods.jei.JEI.addItem(); +InductionSmelter.addRecipe(, *4, , 15000); + +//Conduits +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); + +//Cheaper stuff +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +########################################################################################## +print("==================== end of mods enderIO.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/enviromental_tech.zs b/project/Multiblock Madness/1.2.1/scripts/enviromental_tech.zs new file mode 100644 index 000000000..76f38b96f --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/enviromental_tech.zs @@ -0,0 +1,131 @@ +import crafttweaker.item.IItemStack; +import mods.advancedrocketry.Crystallizer; +import mods.rockhounding_chemistry.PullingCrucible; +import mods.advancedrocketry.PrecisionAssembler; +import crafttweaker.item.IIngredient; + +print("==================== loading mods enviromental tech.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +//, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//laser core +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(*4, [[, , ],[, , ], [, , ]]); + +/* Lunar Biz +//lunarvoltaic cell +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +*/ +val MinerTooltip = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in MinerTooltip { +item.addTooltip(format.green("潜行右键来改变模式")); +} + +//Photo cell +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Connector +PrecisionAssembler.addRecipe(, 600, 25000, , , , *2); + + +//Crystal Lens +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + +//Start of stuff for making the crystals +val crystals =[ + , + , + , + , + , + , +] as IItemStack[]; +for item in crystals { +item.addTooltip(format.gold("可制作")); +} + +//Litherite +Crystallizer.addRecipe(, 500, 10000, , ); +PullingCrucible.add(, , *4); + + +//Tier 2 +Crystallizer.addRecipe(, 200, 20000, *2, ); + +//Tier 3 +Crystallizer.addRecipe(, 300, 40000, *2, ); +//Blood Crystal +mods.nuclearcraft.Crystallizer.addRecipe(*1000, , 1, 4); + +//Tier 4 +Crystallizer.addRecipe(, 400, 60000, *2, ); + +//Tier 5 +Crystallizer.addRecipe(, 500, 80000, *2, ); + +//Tier 6 +Crystallizer.addRecipe(, 600, 100000, *2, ); + + + + + + + + + + + + + +########################################################################################## +print("==================== end of mods enviromental tech.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/fossils.zs b/project/Multiblock Madness/1.2.1/scripts/fossils.zs new file mode 100644 index 000000000..9a2eed3aa --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/fossils.zs @@ -0,0 +1,102 @@ +import crafttweaker.item.IItemStack; +import crafttweaker.liquid.ILiquidStack; +import crafttweaker.oredict.IOreDictEntry; +print("==================== loading mods Fossils.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +.addTooltip(format.green("种在一棵树下")); + +.maxDamage = 3000; +//.damage = 10; + +recipes.addShapeless(.withTag({ench: [{lvl: 5 as short, id: 47 as short}, {lvl: 3 as short, id: 45 as short}, {lvl: 1 as short, id: 70 as short}], RepairCost: 7, infench: [{lvl: 3 as short, id: 4 as short}]}),[,]); + +recipes.addShapeless(.withTag({ench: [{lvl: 5 as short, id: 47 as short}], RepairCost: 1}),[,]); +recipes.addShapeless(.withTag({ench: [{lvl: 5 as short, id: 47 as short}], RepairCost: 1}),[,]); +recipes.addShapeless(.withTag({ench: [{lvl: 4 as short, id: 21 as short}, {lvl: 3 as short, id: 20 as short}, {lvl: 5 as short, id: 16 as short}, {lvl: 4 as short, id: 34 as short}, {lvl: 1 as short, id: 70 as short}], RepairCost: 3}),[,]); + +//mods.fossils.recipes.removeWorktableRecipe(); +//mods.fossils.recipes.addWorktableRecipe(, , .withTag({ench: [{lvl: 1 as short, id: 27 as short}, {lvl: 5 as short, id: 36 as short}], RepairCost: 3})); + +mods.fossils.recipes.addAnalyzerOutput(, .withTag({ench: [{lvl: 1 as short, id: 27 as short}, {lvl: 5 as short, id: 36 as short}, {lvl: 5 as short, id: 92 as short}], RepairCost: 7}), 100); + + +val tinyDustMap as IItemStack[IItemStack] = { + /* Old Tiny Piles +: , +: , +: , +: , +: , +: , +: , +: , +: , +: , + +: , +: , +: , +: , +: , +: , +: , +: , + +: , +: , +: , +: , +: , +*/ + +: , +: , +: , +: , +: , +: , +: , +: , +: , +: , +: , + +: , +: , +: , +: , +: , +: , +: , +: , + + +: , +: , +: , +: , +: , +} as IItemStack[IItemStack]; + +for tinyDust, material in tinyDustMap { + mods.fossils.recipes.addSifterOutput(material, tinyDust, 1); +} + + + +########################################################################################## +print("==================== end of Fossils.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/modular_machines.zs b/project/Multiblock Madness/1.2.1/scripts/modular_machines.zs new file mode 100644 index 000000000..7e1388150 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/modular_machines.zs @@ -0,0 +1,900 @@ +import mods.modularmachinery.RecipePrimer; +import crafttweaker.item.IItemStack; +import mods.actuallyadditions.Empowerer; +import mods.extendedcrafting.CombinationCrafting; + +print("==================== loading modular machines.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ + , + , + , + , + , + , + , + , + , + , + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + +//Controller +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Casing +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + + + +//Vent +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Blueprints +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:mixer"}), [[, , ],[, , ], [, , ]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:minifield-crafter"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:darkness-collector"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:lowgravitydepositionchamber"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:heavens-forge"}), [[null, , null],[, , ], [null, , null]]); + +//Assembler Blueprints +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:assemblermkone"}), [[null, , null],[, , ], [null, , null]]); + +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:assemblermktwo"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShapeless(.withTag({dynamicmachine: "modularmachinery:assemblermktwo"}), [.withTag({dynamicmachine: "modularmachinery:assemblermkone"}).onlyWithTag({dynamicmachine: "modularmachinery:assemblermkone"}),]); + +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:assemblermkthree"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShapeless(.withTag({dynamicmachine: "modularmachinery:assemblermkthree"}), [.withTag({dynamicmachine: "modularmachinery:assemblermktwo"}).onlyWithTag({dynamicmachine: "modularmachinery:assemblermktwo"}),]); + +recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:assemblermkfour"}), [[null, , null],[, , ], [null, , null]]); +recipes.addShapeless(.withTag({dynamicmachine: "modularmachinery:assemblermkfour"}), [.withTag({dynamicmachine: "modularmachinery:assemblermkthree"}).onlyWithTag({dynamicmachine: "modularmachinery:assemblermkthree"}),]); + + +//recipes.addShaped(.withTag({dynamicmachine: "modularmachinery:assembler"}), [[null, , null],[, , ], [null, , null]]); +.withTag({dynamicmachine: "modularmachinery:assembler"}).addTooltip(format.red("Machine will be removed in upcoming updates, be sure to convert over to the new versions!")); + +//Energy input +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockenergyinputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockenergyinputhatch { +.add(item); +} + +//Energy output +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockenergyoutputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockenergyoutputhatch { +.add(item); +} + +//Fluid Input +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockfluidinputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockfluidinputhatch { +.add(item); +} + +//Fluid Output +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockfluidoutputhatch = +[ +, +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockfluidoutputhatch { +.add(item); +} + +//Item Output +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockoutputbus = +[ +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockoutputbus { +.add(item); +} + +//Item Input +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +val blockinputbus = +[ +, +, +, +, +, +, +, +] + as IItemStack[]; +for item in blockinputbus { +.add(item); +} + +//Reinforced Casing +Empowerer.addRecipe(, , , , +, , 25000, 400, [0.5, 0.3, 1]); +CombinationCrafting.addRecipe(, 1000000, , +[, , , ]); + +############################################## +## +## Mini Field Crafter +## +############################################## + +##Tech Reborn Basic Frame +val TRBasicFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-trbasicframe", "minifield-crafter", 400, 0); +TRBasicFrame.addEnergyPerTickInput(2000); +TRBasicFrame.addItemInput(); +TRBasicFrame.addItemInput(); +TRBasicFrame.addItemInput( * 6); +TRBasicFrame.addItemInput( * 20); +TRBasicFrame.addItemOutput(); +TRBasicFrame.build(); + +##Mekanism Steel Casing +val MekanismSteelCasing = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-mekanismsteelcasing", "minifield-crafter", 400, 0); +MekanismSteelCasing.addEnergyPerTickInput(4000); +MekanismSteelCasing.addItemInput(); +MekanismSteelCasing.addItemInput(); +MekanismSteelCasing.addItemInput( * 12); +MekanismSteelCasing.addItemInput( * 14); +MekanismSteelCasing.addItemOutput(); +MekanismSteelCasing.build(); + +val MekanismSteelCasing2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-mekanismsSteelcasing2", "minifield-crafter", 400, 0); +MekanismSteelCasing2.addEnergyPerTickInput(4000); +MekanismSteelCasing2.addItemInput(); +MekanismSteelCasing2.addItemInput(); +MekanismSteelCasing2.addItemInput( * 12); +MekanismSteelCasing2.addItemInput( * 14); +MekanismSteelCasing2.addItemOutput(*2); +MekanismSteelCasing2.build(); + +##Thermal Machine Frame +val ThermalFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermalframe", "minifield-crafter", 400, 0); +ThermalFrame.addEnergyPerTickInput(4000); +ThermalFrame.addItemInput(); +ThermalFrame.addItemInput(); +ThermalFrame.addItemInput( * 8); +ThermalFrame.addItemInput( * 6); +ThermalFrame.addItemInput( * 8); +ThermalFrame.addItemInput( * 4); +ThermalFrame.addItemOutput(); +ThermalFrame.build(); + +val ThermalFrame2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermalframe2", "minifield-crafter", 400, 0); +ThermalFrame2.addEnergyPerTickInput(4000); +ThermalFrame2.addItemInput(); +ThermalFrame2.addItemInput(); +ThermalFrame2.addItemInput( * 8); +ThermalFrame2.addItemInput( * 6); +ThermalFrame2.addItemInput( * 8); +ThermalFrame2.addItemInput( * 4); +ThermalFrame2.addItemOutput(*2); +ThermalFrame2.build(); + +##Industruial Machine Chassis +val IndustruialChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-industruialchassis", "minifield-crafter", 400, 0); +IndustruialChassis.addEnergyPerTickInput(6000); +IndustruialChassis.addItemInput(.withTag({Aspects: [{amount: 10, key: "machina"}]})); +IndustruialChassis.addItemInput(); +IndustruialChassis.addItemInput( * 18); +IndustruialChassis.addItemInput( * 8); +IndustruialChassis.addItemOutput(); +IndustruialChassis.build(); + +val IndustruialChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-industruialchassis2", "minifield-crafter", 400, 0); +IndustruialChassis2.addEnergyPerTickInput(6000); +IndustruialChassis2.addItemInput(.withTag({Aspects: [{amount: 10, key: "machina"}]})); +IndustruialChassis2.addItemInput(); +IndustruialChassis2.addItemInput( * 18); +IndustruialChassis2.addItemInput( * 8); +IndustruialChassis2.addItemOutput(*2); +IndustruialChassis2.build(); + +##Soul Machine Chassis +val SoulChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-soulchassis", "minifield-crafter", 400, 0); +SoulChassis.addEnergyPerTickInput(6000); +SoulChassis.addItemInput(.withTag({Aspects: [{amount: 10, key: "spiritus"}]})); +SoulChassis.addItemInput(); +SoulChassis.addItemInput( * 18); +SoulChassis.addItemInput( * 8); +SoulChassis.addItemOutput(); +SoulChassis.build(); + +val SoulChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-soulchassis2", "minifield-crafter", 400, 0); +SoulChassis2.addEnergyPerTickInput(6000); +SoulChassis2.addItemInput(.withTag({Aspects: [{amount: 10, key: "spiritus"}]})); +SoulChassis2.addItemInput(); +SoulChassis2.addItemInput( * 18); +SoulChassis2.addItemInput( * 8); +SoulChassis2.addItemOutput(*2); +SoulChassis2.build(); + +##Enhanced Machine Chassis +val EnhancedChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-Enhancedchassis", "minifield-crafter", 400, 0); +EnhancedChassis.addEnergyPerTickInput(10000); +EnhancedChassis.addItemInput(.withTag({Aspects: [{amount: 10, key: "alienis"}]})); +EnhancedChassis.addItemInput(); +EnhancedChassis.addItemInput( * 18); +EnhancedChassis.addItemInput( * 8); +EnhancedChassis.addItemOutput(); +EnhancedChassis.build(); + +val EnhancedChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-Enhancedchassis2", "minifield-crafter", 400, 0); +EnhancedChassis2.addEnergyPerTickInput(10000); +EnhancedChassis2.addItemInput(.withTag({Aspects: [{amount: 10, key: "alienis"}]})); +EnhancedChassis2.addItemInput(); +EnhancedChassis2.addItemInput( * 18); +EnhancedChassis2.addItemInput( * 8); +EnhancedChassis2.addItemOutput(*2); +EnhancedChassis2.build(); + + +##Advanced Rockety Frame +val ARFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-arframe", "minifield-crafter", 400, 0); +ARFrame.addEnergyPerTickInput(3000); +ARFrame.addItemInput(); +ARFrame.addItemInput( * 18); +ARFrame.addItemInput( * 9); +ARFrame.addItemOutput(); +ARFrame.build(); + +val ARFrame2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-arframe2", "minifield-crafter", 400, 0); +ARFrame2.addEnergyPerTickInput(3000); +ARFrame2.addItemInput(); +ARFrame2.addItemInput( * 18); +ARFrame2.addItemInput( * 9); +ARFrame2.addItemOutput(*2); +ARFrame2.build(); + +##Actually Additions Iron Casing +val AAIronCasing = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aaironaasing", "minifield-crafter", 400, 0); +AAIronCasing.addEnergyPerTickInput(1000); +AAIronCasing.addItemInput( * 20); +AAIronCasing.addItemInput(*6); +AAIronCasing.addItemInput(); +AAIronCasing.addItemInput(); +AAIronCasing.addItemOutput(); +AAIronCasing.build(); + +##Profiling Bench +val RHBench = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-rhbench", "minifield-crafter", 400, 0); +RHBench.addEnergyPerTickInput(1000); +RHBench.addItemInput( * 8); +RHBench.addItemInput( * 4); +RHBench.addItemInput(); +RHBench.addItemInput(); +RHBench.addItemInput(); +RHBench.addItemOutput(); +RHBench.build(); + +##Energy Acceptor +val AEAcceptor = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aeacceptor", "minifield-crafter", 400, 0); +AEAcceptor.addEnergyPerTickInput(1000); +AEAcceptor.addItemInput( * 8); +AEAcceptor.addItemInput(); +AEAcceptor.addItemInput(); +AEAcceptor.addItemInput( * 6); +AEAcceptor.addItemInput( * 12); +AEAcceptor.addItemOutput(); +AEAcceptor.build(); + +##ME Controller +val MEController = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-mecntroller", "minifield-crafter", 400, 0); +MEController.addEnergyPerTickInput(5000); +MEController.addItemInput(); +MEController.addItemInput(*8); +MEController.addItemInput(*12); +MEController.addItemInput( * 6); +MEController.addItemInput(); +MEController.addItemOutput(); +MEController.build(); + + +##Small Crate +val AASmallCrate = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aasmallcrate", "minifield-crafter", 400, 0); +AASmallCrate.addEnergyPerTickInput(1000); +AASmallCrate.addItemInput(); +AASmallCrate.addItemInput( * 2); +AASmallCrate.addItemInput( * 24); +AASmallCrate.addItemOutput(); +AASmallCrate.build(); + +##Medium Crate +val AAMediumCrate = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aamediumcrate", "minifield-crafter", 400, 0); +AAMediumCrate.addEnergyPerTickInput(2000); +AAMediumCrate.addItemInput(); +AAMediumCrate.addItemInput(); +AAMediumCrate.addItemInput( * 2); +AAMediumCrate.addItemInput( * 24); +AAMediumCrate.addItemOutput(); +AAMediumCrate.build(); + +##Large Crate +val AALargeCrate = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-aalargecrate", "minifield-crafter", 400, 0); +AALargeCrate.addEnergyPerTickInput(4000); +AALargeCrate.addItemInput(); +AALargeCrate.addItemInput(); +AALargeCrate.addItemInput( * 2); +AALargeCrate.addItemInput( * 24); +AALargeCrate.addItemOutput(); +AALargeCrate.build(); + +##Thermal Tank +val ThermalTank = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermaltank", "minifield-crafter", 400, 0); +ThermalTank.addEnergyPerTickInput(1000); +ThermalTank.addItemInput(, 12); +ThermalTank.addItemInput( * 2); +ThermalTank.addItemInput( * 12); +ThermalTank.addItemInput(); +ThermalTank.addItemOutput(); +ThermalTank.build(); + +##Nuclearcraft Chassis +val NCChassis = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-ncchassis", "minifield-crafter", 400, 0); +NCChassis.addEnergyPerTickInput(4000); +NCChassis.addItemInput( * 8); +NCChassis.addItemInput( * 18); +NCChassis.addItemInput(); +NCChassis.addItemInput(); +NCChassis.addItemOutput(); +NCChassis.build(); + +##Nuclearcraft Chassis2 +val NCChassis2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-ncchassis2", "minifield-crafter", 400, 0); +NCChassis2.addEnergyPerTickInput(4000); +NCChassis2.addItemInput( * 8); +NCChassis2.addItemInput( * 18); +NCChassis2.addItemInput(); +NCChassis2.addItemInput(); +NCChassis2.addItemOutput(*2); +NCChassis2.build(); + +##RF Tools Frame +val RFToolsFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-rftoolsframe", "minifield-crafter", 400, 0); +RFToolsFrame.addEnergyPerTickInput(3000); +RFToolsFrame.addItemInput( * 18); +RFToolsFrame.addItemInput( * 8); +RFToolsFrame.addItemInput(); +RFToolsFrame.addItemInput(); +RFToolsFrame.addItemOutput(); +RFToolsFrame.build(); + +##RF Tools Frame 2 +val RFToolsFrame2 = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-rftoolsframe2", "minifield-crafter", 400, 0); +RFToolsFrame2.addEnergyPerTickInput(3000); +RFToolsFrame2.addItemInput( * 18); +RFToolsFrame2.addItemInput( * 8); +RFToolsFrame2.addItemInput(); +RFToolsFrame2.addItemInput(); +RFToolsFrame2.addItemOutput(); +RFToolsFrame2.build(); + +##Embers Core +val EmbersCore = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-emberscore", "minifield-crafter", 400, 0); +EmbersCore.addEnergyPerTickInput(1000); +EmbersCore.addItemInput(); +EmbersCore.addItemInput( * 12); +EmbersCore.addItemInput( * 8); +EmbersCore.addItemInput(); +EmbersCore.addItemOutput(); +EmbersCore.build(); + +##Compact Machine Wall +val MachineWall = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machinewall", "minifield-crafter", 100, 0); +MachineWall.addEnergyPerTickInput(1000); +MachineWall.addItemInput(); +MachineWall.addItemInput(*2); +MachineWall.addItemOutput(*16); +MachineWall.build(); + +##Compact Machine 1 +val MachineOne = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machineone", "minifield-crafter", 200, 0); +MachineOne.addEnergyPerTickInput(1000); +MachineOne.addItemInput(*26); +MachineOne.addItemInput(); +MachineOne.addItemOutput(); +MachineOne.build(); + +##Compact Machine 2 +val MachineTwo = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machinetwo", "minifield-crafter", 300, 0); +MachineTwo.addEnergyPerTickInput(2000); +MachineTwo.addItemInput(*26); +MachineTwo.addItemInput(); +MachineTwo.addItemInput(); +MachineTwo.addItemOutput(); +MachineTwo.build(); + +##Compact Machine 3 +val MachineThree = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-machinethree", "minifield-crafter", 600, 0); +MachineThree.addEnergyPerTickInput(4000); +MachineThree.addItemInput(*26); +MachineThree.addItemInput(); +MachineThree.addItemInput(); +MachineThree.addItemOutput(); +MachineThree.build(); + +##TCconstruct +val TCconstruct = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-tcconstruct", "minifield-crafter", 400, 0); +TCconstruct.addEnergyPerTickInput(2000); +TCconstruct.addItemInput(); +TCconstruct.addItemInput(*8); +TCconstruct.addItemInput(*12); +TCconstruct.addItemInput(*6); +TCconstruct.addItemInput(); +TCconstruct.addItemOutput(*3); +TCconstruct.build(); + +##SootyFrame +val SootyFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-SootyFrame", "minifield-crafter", 400, 0); +SootyFrame.addEnergyPerTickInput(2000); +SootyFrame.addItemInput( * 20); +SootyFrame.addItemInput( * 6); +SootyFrame.addItemInput(); +SootyFrame.addItemInput(); +SootyFrame.addItemOutput(); +SootyFrame.build(); +/* +##Thermal Device Frame +val ThermalDeviceFrame = mods.modularmachinery.RecipeBuilder.newBuilder("minifield-crafter-thermaldeviceframe", "minifield-crafter", 1000, 0); +ThermalDeviceFrame.addEnergyPerTickInput(100); +ThermalDeviceFrame.addItemInput(); +ThermalDeviceFrame.addItemInput( * 6); +ThermalDeviceFrame.addItemInput( * 8); +ThermalDeviceFrame.addItemInput( * 12); +ThermalDeviceFrame.addItemInput(); +ThermalDeviceFrame.addItemOutput(); +ThermalDeviceFrame.build(); +*/ + + + + + +############################################## +## +## Mixer +## +############################################## + + +##Brass +val dustBrass = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-brass", "mixer", 20, 0); +dustBrass.addEnergyPerTickInput(500); +dustBrass.addItemInput(); +dustBrass.addItemInput( * 2); +dustBrass.addItemOutput( * 3); +dustBrass.addItemOutput().setChance(0.5); +dustBrass.build(); + + +##Bronze +val dustBronze = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-bronze", "mixer", 20, 0); +dustBronze.addEnergyPerTickInput(500); +dustBronze.addItemInput(); +dustBronze.addItemInput( * 3); +dustBronze.addItemOutput( * 4); +dustBronze.addItemOutput().setChance(0.5); +dustBronze.build(); + +##Steel +val carbonforSteel = ; +carbonforSteel.add(); +carbonforSteel.add(); +carbonforSteel.add(); +carbonforSteel.add(); + +val dustSteel = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-steel", "mixer", 20, 0); +dustSteel.addEnergyPerTickInput(500); +dustSteel.addItemInput(); +dustSteel.addItemInput(); +dustSteel.addItemOutput(); +dustSteel.addItemOutput().setChance(0.5); +dustSteel.build(); + +##Electrum +val dustElectrum = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-electrum", "mixer", 20, 0); +dustElectrum.addEnergyPerTickInput(500); +dustElectrum.addItemInput(); +dustElectrum.addItemInput(); +dustElectrum.addItemOutput( * 2); +dustElectrum.addItemOutput().setChance(0.5); +dustElectrum.build(); + +##Energetic +val dustEnergetic = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-energetic", "mixer", 20, 0); +dustEnergetic.addEnergyPerTickInput(500); +dustEnergetic.addItemInput(); +dustEnergetic.addItemInput(); +dustEnergetic.addItemOutput( * 2); +dustEnergetic.addItemOutput().setChance(0.5); +dustEnergetic.build(); + +##Dimentional +val dustDimentional = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-dimentional", "mixer", 20, 0); +dustDimentional.addEnergyPerTickInput(500); +dustDimentional.addItemInput( * 4); +dustDimentional.addItemInput(); +dustDimentional.addItemOutput( * 2); +dustDimentional.addItemOutput().setChance(0.5); +dustDimentional.build(); + +##Invar +val dustInvar = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-invar", "mixer", 20, 0); +dustInvar.addEnergyPerTickInput(500); +dustInvar.addItemInput( * 2); +dustInvar.addItemInput(); +dustInvar.addItemOutput( * 3); +dustInvar.addItemOutput().setChance(0.5); +dustInvar.build(); + +##CarbonManganese +val dustCarbonManganese = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-carbonmanganese", "mixer", 20, 0); +dustCarbonManganese.addEnergyPerTickInput(500); +dustCarbonManganese.addItemInput(); +dustCarbonManganese.addItemInput(); +dustCarbonManganese.addItemOutput( * 2); +dustCarbonManganese.addItemOutput().setChance(0.5); +dustCarbonManganese.build(); + +##Flux Dust +val dustFlux = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-flux", "mixer", 20, 0); +dustFlux.addEnergyPerTickInput(500); +dustFlux.addItemInput( * 4); +dustFlux.addItemInput( * 4); +dustFlux.addItemInput( * 4); +dustFlux.addItemOutput(*2); +dustFlux.addItemOutput().setChance(0.5); +dustFlux.build(); + +##RichSlag +val RichSlag = mods.modularmachinery.RecipeBuilder.newBuilder("mixer-richslag", "mixer", 100, 0); +RichSlag.addEnergyPerTickInput(1000); +RichSlag.addItemInput(*32); +RichSlag.addItemInput(); +RichSlag.addItemInput(); +RichSlag.addFluidInput(* 800); +RichSlag.addItemOutput(*32); +RichSlag.build(); + +############################################## +## +## Assembler +## +############################################## + +##TechBasicCircuit +val TechBasicCircuit = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-techbasiccircuit", "assembler", 10, 0); +TechBasicCircuit.addEnergyPerTickInput(1000); +TechBasicCircuit.addItemInput(*4); +TechBasicCircuit.addItemInput(*2); +TechBasicCircuit.addItemInput(); +TechBasicCircuit.addItemOutput(); +TechBasicCircuit.build(); + +##ModularCircut +val assemblerModularCircutBlock = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-circutblock", "assembler", 400, 0); +assemblerModularCircutBlock.addEnergyPerTickInput(10000); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addItemInput(); +assemblerModularCircutBlock.addFluidInput(*2000); +assemblerModularCircutBlock.addItemOutput(); +assemblerModularCircutBlock.build(); + +##HighlyAdvancedFrame +val assemblerHighlyAdvancedFrameBlock = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-highlyadvancedframe", "assembler", 400, 0); +assemblerHighlyAdvancedFrameBlock.addEnergyPerTickInput(10000); +assemblerHighlyAdvancedFrameBlock.addItemInput(); +assemblerHighlyAdvancedFrameBlock.addItemInput(*4); +assemblerHighlyAdvancedFrameBlock.addItemInput(*4); +assemblerHighlyAdvancedFrameBlock.addFluidInput(*4000); +assemblerHighlyAdvancedFrameBlock.addItemOutput(); +assemblerHighlyAdvancedFrameBlock.build(); + +##BasicCoils +val assemblerBasicCoils = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Basiccoils", "assembler", 10, 0); +assemblerBasicCoils.addEnergyPerTickInput(1000); +assemblerBasicCoils.addItemInput(*4); +assemblerBasicCoils.addItemInput(); +assemblerBasicCoils.addItemOutput(*4); +assemblerBasicCoils.build(); + +##BasicCoils2 +val assemblerBasicCoils2 = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Basiccoils2", "assembler", 10, 0); +assemblerBasicCoils2.addEnergyPerTickInput(1000); +assemblerBasicCoils2.addItemInput(*4); +assemblerBasicCoils2.addItemInput(); +assemblerBasicCoils2.addItemOutput(*2); +assemblerBasicCoils2.build(); + +##BasicCoils3 +val assemblerBasicCoils3 = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Basiccoils3", "assembler", 10, 0); +assemblerBasicCoils3.addEnergyPerTickInput(1000); +assemblerBasicCoils3.addItemInput(*4); +assemblerBasicCoils3.addItemInput(); +assemblerBasicCoils3.addItemOutput(); +assemblerBasicCoils3.build(); + +##AdvancedCoils +val assemblerAdvancedCoils = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-Advancedcoils", "assembler", 20, 0); +assemblerAdvancedCoils.addEnergyPerTickInput(2000); +assemblerAdvancedCoils.addItemInput(*4); +assemblerAdvancedCoils.addItemInput(); +assemblerAdvancedCoils.addItemOutput(); +assemblerAdvancedCoils.build(); + +##QuarryCard +val assemblerQuarryCard = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-quarrycard", "assembler", 500, 0); +assemblerQuarryCard.addEnergyPerTickInput(4000); +assemblerQuarryCard.addItemInput(); +assemblerQuarryCard.addItemInput(*4); +assemblerQuarryCard.addItemInput(*4); +assemblerQuarryCard.addItemInput(*4); +assemblerQuarryCard.addFluidInput(*4000); +assemblerQuarryCard.addItemOutput(); +assemblerQuarryCard.build(); + +##LaserAcceptor +val assemblerLaserAcceptorBlock = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-laseracceptor", "assembler", 500, 0); +assemblerLaserAcceptorBlock.addEnergyPerTickInput(15000); +assemblerLaserAcceptorBlock.addItemInput(); +assemblerLaserAcceptorBlock.addItemInput(*2); +assemblerLaserAcceptorBlock.addItemInput(*2); +assemblerLaserAcceptorBlock.addItemInput(*4); +assemblerLaserAcceptorBlock.addFluidInput(*4000); +assemblerLaserAcceptorBlock.addItemOutput(); +assemblerLaserAcceptorBlock.build(); + +##LapatronCrystal +val assemblerLapatronCrystal = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-LapatronCrystal", "assembler", 10, 0); +assemblerLapatronCrystal.addEnergyPerTickInput(25000); +assemblerLapatronCrystal.addItemInput(); +assemblerLapatronCrystal.addItemInput(); +assemblerLapatronCrystal.addFluidInput(*4000); +assemblerLapatronCrystal.addItemOutput(*4); +assemblerLapatronCrystal.build(); + +##lapotronicorb +val assemblerlapotronicorb = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-lapotronicorb", "assembler", 20, 0); +assemblerlapotronicorb.addEnergyPerTickInput(50000); +assemblerlapotronicorb.addItemInput(,8); +assemblerlapotronicorb.addItemInput(); +assemblerlapotronicorb.addFluidInput(*8000); +assemblerlapotronicorb.addItemOutput(*4); +assemblerlapotronicorb.build(); + +##componentEVCapacitor +val assemblercomponentEVCapacitor = mods.modularmachinery.RecipeBuilder.newBuilder("assembler-modular-componentEVCapacitor", "assembler", 40, 0); +assemblercomponentEVCapacitor.addEnergyPerTickInput(1000000); +assemblercomponentEVCapacitor.addItemInput(,6); +assemblercomponentEVCapacitor.addItemInput(,2); +assemblercomponentEVCapacitor.addItemInput(); +assemblercomponentEVCapacitor.addFluidInput(*2000); +assemblercomponentEVCapacitor.addItemOutput(*4); +assemblercomponentEVCapacitor.build(); + +############################################## +## +## Shadow Condensor +## +############################################## + +.addTooltip(format.darkPurple("暗影冷凝器流体强化方块")); +.addTooltip(format.darkPurple("暗影冷凝器物品强化方块")); +.addTooltip(format.darkPurple("暗影冷凝器速度强化方块")); +.addTooltip(format.darkPurple("暗影冷凝器2倍输出强化方块")); +.addTooltip(format.darkPurple("暗影冷凝器3倍输出强化方块")); +.addTooltip(format.darkPurple("暗影冷凝器4倍输出强化方块")); +.addTooltip(format.darkPurple("暗影冷凝器5倍输出强化方块")); + +val MidnightIngot = mods.modularmachinery.RecipeBuilder.newBuilder("midnight-ingot", "darkness-collector", 2000, 0); +//MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addItemInput(); +MidnightIngot.addFluidInput(*4000); +MidnightIngot.addItemOutput(); +MidnightIngot.addDimensionRequirement([10]); +MidnightIngot.build(); + +val VoidSeed = mods.modularmachinery.RecipeBuilder.newBuilder("void-seed", "darkness-collector", 2000, 0); +//VoidSeed.addItemInput(); +VoidSeed.addItemInput(); +VoidSeed.addFluidInput(*4000); +VoidSeed.addItemOutput(); +VoidSeed.addDimensionRequirement([10]); +VoidSeed.build(); + + + +############################################## +## +## Forge of the Heavens +## +############################################## + +.addTooltip(format.aqua("天堂锻炉流体强化方块")); + +##CyrstaltineIngot +val CyrstaltineIngot = mods.modularmachinery.RecipeBuilder.newBuilder("forge-cyrstaltineingot", "heavens-forge", 400, 0); +CyrstaltineIngot.addMekanismLaserInput(50000000); +CyrstaltineIngot.addItemInput(); +CyrstaltineIngot.addItemInput(); +CyrstaltineIngot.addItemInput(*4); +CyrstaltineIngot.addItemInput(*8); +CyrstaltineIngot.addItemInput(*4); +CyrstaltineIngot.addFluidInput(* 10000); +CyrstaltineIngot.addFluidInput(* 10000); +CyrstaltineIngot.addItemOutput(); +CyrstaltineIngot.build(); + +##PositiveDispositionMatrix +val PositiveDispositionMatrix = mods.modularmachinery.RecipeBuilder.newBuilder("forge-positivedispositionmatrix", "heavens-forge", 400, 0); +PositiveDispositionMatrix.addMekanismLaserInput(100000000); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addItemInput(); +PositiveDispositionMatrix.addFluidInput(* 5000); +PositiveDispositionMatrix.addItemOutput(); +PositiveDispositionMatrix.build(); + +##NegitiveDispositionMatrix +val NegitiveDispositionMatrix = mods.modularmachinery.RecipeBuilder.newBuilder("forge-negitivedispositionmatrix", "heavens-forge", 400, 0); +NegitiveDispositionMatrix.addMekanismLaserInput(100000000); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addItemInput(); +NegitiveDispositionMatrix.addFluidInput(* 5000); +NegitiveDispositionMatrix.addItemOutput(); +NegitiveDispositionMatrix.build(); + +##NeutroniumNugget +val NeutroniumNugget = mods.modularmachinery.RecipeBuilder.newBuilder("forge-neutroniumnugget", "heavens-forge", 100, 0); +NeutroniumNugget.addMekanismLaserInput(1000000); +NeutroniumNugget.addItemInput(*9); +NeutroniumNugget.addFluidInput(* 1000); +NeutroniumNugget.addItemOutput(); +NeutroniumNugget.build(); + +##NeutroniumIngot +val NeutroniumIngot = mods.modularmachinery.RecipeBuilder.newBuilder("forge-neutroniumingot", "heavens-forge", 200, 0); +NeutroniumIngot.addMekanismLaserInput(100000000); +NeutroniumIngot.addItemInput(*9); +NeutroniumIngot.addGasInput("fusionfuel", 10000); +NeutroniumIngot.addItemOutput(); +NeutroniumIngot.build(); + +##MignightLampLuminessence +val MignightLampLuminessence = mods.modularmachinery.RecipeBuilder.newBuilder("forge-mignightlampluminessence", "heavens-forge", 300, 0); +MignightLampLuminessence.addMekanismLaserInput(10000000); +MignightLampLuminessence.addItemInput(); +MignightLampLuminessence.addItemInput(); +MignightLampLuminessence.addFluidInput(* 10000); +MignightLampLuminessence.addItemOutput(); +MignightLampLuminessence.build(); + +##MignightLampGlowstone +val MignightLampGlowstone = mods.modularmachinery.RecipeBuilder.newBuilder("forge-mignightlampglowstone", "heavens-forge", 300, 0); +MignightLampGlowstone.addMekanismLaserInput(10000000); +MignightLampGlowstone.addItemInput(); +MignightLampGlowstone.addItemInput(); +MignightLampGlowstone.addFluidInput(* 10000); +MignightLampGlowstone.addItemOutput(); +MignightLampGlowstone.build(); +########################################################################################## +print("==================== end of modular machines.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/mystical_agriculture.zs b/project/Multiblock Madness/1.2.1/scripts/mystical_agriculture.zs new file mode 100644 index 000000000..c9f0e133d --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/mystical_agriculture.zs @@ -0,0 +1,121 @@ +import crafttweaker.item.IItemStack; +import mods.thermalexpansion.InductionSmelter; + +print("==================== loading mystical agriculture.zs ===================="); +########################################################################################## + + + +val removerecipes = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] +as IItemStack[]; +for item in removerecipes { + recipes.remove(item); +} + +//Fix ingots +recipes.addShaped( * 2, [[, , ],[, null, ], [, , ]]); +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); +recipes.addShaped( * 4, [[, , ],[, null, ], [, , ]]); + + +//seeds +/* +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +*/ + +//Hide base seeds + mods.jei.JEI.removeAndHide(); + +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless(, [,]); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); +recipes.addShapeless( * 2, []); + + +.addTooltip(format.darkPurple("在章节1的任务奖励中获得")); +.addTooltip(format.red("不可合成")); +.addTooltip(format.red("不可合成")); +.addTooltip(format.red("不可合成")); +.addTooltip(format.red("不可合成")); +.addTooltip(format.red("不可合成")); + +.add(); +.add(); +.add(); +//.add(); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +mods.astralsorcery.Altar.addConstellationAltarRecipe("mypackname:shaped/internal/altar/master_infusion_crystal", , 2000, 100, [ + + , , , + + , , , + + , , , + + , , + , , + , , + , , + , , + , ]); + +//Tier 2 Metal +InductionSmelter.addRecipe(, , *4, 5000); + +//Tier 3 metal +InductionSmelter.addRecipe(, , *4, 10000); +mods.immersiveengineering.ArcFurnace.addRecipe(, , null, 300, 1024, [*4], "Alloying"); + +//Tier 4 metal +mods.techreborn.blastFurnace.addRecipe(, null, , *4, 600, 100, 1500); + +//Tier 5 metal +mods.techreborn.blastFurnace.addRecipe(, null, , *4, 1200, 150, 2500); + +//Tier 6 metal +mods.techreborn.blastFurnace.addRecipe(, null, , *4, 2400, 200, 3500); + +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); +recipes.addShaped(*2, [[null, , null],[, , ], [null, , null]]); + + +recipes.addShaped( * 16, [[, , ],[, null, ], [, , ]]); + +//Fiery Ingot +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +########################################################################################## +print("==================== end of mystical agriculture.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/nuclearcraft.zs b/project/Multiblock Madness/1.2.1/scripts/nuclearcraft.zs new file mode 100644 index 000000000..03ced9173 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/nuclearcraft.zs @@ -0,0 +1,61 @@ + +import crafttweaker.item.IItemStack; +import mods.techreborn.blastFurnace; +import mods.nuclearcraft.IngotFormer; +print("==================== loading nuclearcraft.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + +.addTooltip(format.green("请查阅核电工程师章节")); + +//sink +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Steel Chassis +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +##Manufactory +##------------ + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped( * 4, [[null, , null],[, null, ], [null, , null]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//mods.nuclearcraft.pressurizer.addRecipe([itemInput, itemOutput, @Optional double timeMultiplier, @Optional double powerMultiplier, @Optional double processRadiation]); +//mods.nuclearcraft.pressurizer.addRecipe([, , 5, 10]); + +recipes.remove(); +mods.extendedcrafting.TableCrafting.addShaped(, [ + [, , , , ], + [, , , , ], + [, , , , ], + [, , , , ], + [, , , , ] +]); + +//Ender Pearl +IngotFormer.addRecipe(*250, ); + + +blastFurnace.addRecipe(, null, , null, 200, 80, 1500); + +//Solanoid +recipes.addShaped( * 2, [[null, , ],[, , ], [, , null]]); + +########################################################################################## +print("==================== end of nuclearcraft.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/rockhounding.zs b/project/Multiblock Madness/1.2.1/scripts/rockhounding.zs new file mode 100644 index 000000000..96161db6c --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/rockhounding.zs @@ -0,0 +1,478 @@ +import crafttweaker.item.IItemStack; +import mods.rockhounding_chemistry.MaterialCabinet; +import mods.rockhounding_chemistry.Transposer; + + +print("==================== loading mods rockhounding.zs ===================="); +########################################################################################## + +val EletrochemicalCTSR = ; +val ChemicalExtractor = ; +val itemstoRemove = +[ + , + EletrochemicalCTSR, + ChemicalExtractor, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +//Sag mill cheating +mods.enderio.SagMill.addRecipe([,], [0.15,0.1], ); +mods.enderio.SagMill.addRecipe([,], [0.20,0.15], ); +mods.enderio.SagMill.addRecipe([,], [0.25,0.1], ); + +.add(); + +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +//Fly Ash Balls +recipes.remove(); +recipes.addShaped(, [[, , ],[, *1000, ], [, , ]]); + +//gas Pipes +recipes.remove(); + +recipes.addShaped( * 16, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + + +//Item Detector +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//logic chips (might change idk) +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Advanced Logic Chip +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Heating Element +recipes.addShaped(*2, [[, , ],[, null, ], [, , ]]); +recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + +// Remove Iron Casings ============================================================= +//.displayName = "TAIGA Casing"; + + +// Remove Unused Graphite Ingots ============================================================= +//mods.jei.JEI.removeAndHide(); + +// Remove Unused wrong Titanium Plate ============================================================= +//mods.jei.JEI.removeAndHide(); + +// Sodium Hydroxid through Alcheical Imbuer ===================================================================================================================================================================== +//mods.thermalexpansion.Imbuer.addRecipe( * 500, * 3, * 1000, 2048); +//mods.thermalexpansion.Imbuer.addRecipe( * 2500, * 3, * 1000, 2048); + + +// Remove and Replace Gas Pipe ============================================================= +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); +//mods.rockhounding_chemistry.ProfilingBench.add(, *4, 1); + +// Remove and Replace Iron Casings ============================================================= +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); +//mods.rockhounding_chemistry.ProfilingBench.add(, *8, 5); + +// Vapor Distilation Plant ============================================================= +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + + +##======================================================= +##LAB BLENDER +##======================================================= +// Lab Blend Controller ============================================================= +//recipes.remove(); +//**Note 1: input will be extended to their oredicts. Plans to improve this. +//input array: the list of ingredients with their quantity +//output stack: the resulting mixture and its quantity +//mods.rockhounding_chemistry.LabBlender.add([*9, *4, *2], *9); +//output stack: the output to remove +//mods.rockhounding_chemistry.LabBlender.remove(); + + +recipes.addShaped(EletrochemicalCTSR, [[, , ],[, , ], [, , ]]); + + +// Power Station ============================================================= +//recipes.remove(); + +// Gas Condenser ============================================================= +//recipes.remove(); + +// Pressure Vessel ============================================================= +//recipes.remove(); + +// Evaporation Tank ============================================================= +//recipes.remove(); + +// Seasonal Rack ============================================================= +//recipes.remove(); + +// Slurry Pond ============================================================= +//recipes.remove(); + +// Transposer ============================================================= +//recipes.remove(); + +// Heat Exchanger ============================================================= +//recipes.remove(); + +// Fluid Tank ============================================================= +//recipes.remove(); + +// Gas Pressurizer ============================================================= +//recipes.remove(); + +// Expansion Chambre ============================================================= +//recipes.remove(); + +// Catalyst Regenerator ============================================================= +//recipes.remove(); + +## Air Compressor ============================================================= +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +// Gas Holder ============================================================= +//recipes.remove(); + +##======================================================= +##MINERAL SIZER +##======================================================= + +//Note 1: the script with a single output does not need comminution +//Note 2: output arrays can be also made of 1 element only +//input stack: the item to crush +//output stack: the crushed item + + +//input stack: the item to crush +//output array: the list of possible outputs +//comminution array: the comminution for each output (values: min 0, max 15) + +//mods.rockhounding_chemistry.MineralSizer.add(, [, , , , ], [5, 10, 12, 6, 4]); +//mods.rockhounding_chemistry.MineralSizer.add("oreUninspected", [, , , , ], [5, 10, 12, 6, 4]); + +//input stack: the input to remove +//mods.rockhounding_chemistry.MineralSizer.removeByInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.MineralSizer.removeByOredict("oreUninspected"); + +// Server ============================================================= +//recipes.remove(); + +// Compressing Unit ============================================================= +//recipes.remove(); + +// GAN Controller ============================================================= +//recipes.remove(); + +##======================================================= +##LEACHING VAT +##======================================================= +//input stack: the item to be analyzed +//output array: the list of extracted items +//gravity array: the gravity of each extracted items +//leachate: the fluid byproduct (optional) +//input stack: the input to remove +//mods.rockhounding_chemistry.LeachingVat.removeByInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.LeachingVat.removeByOredict("slimeball"); + +#======================================================= +#CHEMICAL EXTRACTOR +#======================================================= + +recipes.addShaped(ChemicalExtractor, [ + [, , ], + [, , ], + [, , ]]); + +//categoty: the category of the input +//input stack: the item to decompose +//output array: the list of elements oredict composing the input +//quantity array: the list of quantities expressed in PartsPerCraft for each element +//mods.rockhounding_chemistry.ChemicalExtractor.add("Sulfate", , ["dustCalcium", "dustSulfur", "dustCarbon", "dustIron", "dustTin"], [20, 13, 5, 4, 3]); + + + + +mods.rockhounding_chemistry.ChemicalExtractor.add("Rare Earth", , +["dustVanadium", "dustScandium", "dustMolybdenum", "dustYttrium", "dustNeodymium"], [56, 42, 37, 25, 20]); +//input stack: the input to remove +//mods.rockhounding_chemistry.ChemicalExtractor.removebyInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.ChemicalExtractor.removeByOredict("oreIron"); +//inhibited element: element not being extracted +//mods.rockhounding_chemistry.InhibitElements.inhibit("dustZirconium"); + +##======================================================= +##MATERIAL CABINET +##======================================================= +//symbol: a 2 chars symbol appearing on screen +//oredict: the element oredict to be added +//name: the display name of the added element +MaterialCabinet.add("Sy", "dustSyrmorite", "Syrmorite"); +MaterialCabinet.add("Oc", "dustOctine", "Octine"); + +MaterialCabinet.add("Ar", "dustArdite", "Ardite"); +MaterialCabinet.add("Gl", "dustGlowstone", "Glowstone"); +MaterialCabinet.add("Bz", "dustBlaze", "Blaze Powder"); + +MaterialCabinet.add("Ad", "dustAdamantine", "Adamantine"); +MaterialCabinet.add("Or", "dustOrichalcum", "Orichalcum"); +MaterialCabinet.add("Pl", "dustPalladium", "Palladium"); +MaterialCabinet.add("St", "dustAstralStarmetal", "Starmetal"); + +MaterialCabinet.add("Hf", "dustHafnium", "Hafnium"); + + + +//oredict: the oredict to remove +//mods.rockhounding_chemistry.MaterialCabinet.remove("dustDraconium"); + +#======================================================= +#METAL ALLOYER +#======================================================= +//input array: list of oredicts composing the alloy +//quantity array: quantity expressed in PartsPerCraft for each element +//output stack: the resulting alloy + +//Kanthal +mods.rockhounding_chemistry.MetalAlloyer.add(["dustIron", "dustChromium", "dustAluminum", "dustSilicon", "dustManganese", "dustCarbon"], [67, 23, 6, 2, 1, 1], ); + + + +//Nichrome +mods.rockhounding_chemistry.MetalAlloyer.remove(); +//mods.rockhounding_chemistry.MetalAlloyer.add(["dustNickel", "dustChromium", "dustIron", "dustSilicon", "dustManganese", "dustMolybdenum"], [70, 20, 1, 2, 3, 4], ); + +// Transposer echanges ============================================================= +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +Transposer.add(*1000, *1000); +//Transposer.add(*1000, *1000); not sure what liquid:hydrogenchloride should be, its not a fluid + + +#======================================================= +#PROFILING BENCH +#======================================================= +//input stack: the specific item to be shaped +//output stack: the reshaped item +//pattern: the casting pattern (0:generic, 1:coil, 2:rod, 3:foil, 4:arm, 5:casing, 6:gear, 7:ingot, 8:gauze, 9:coin, 10:plate ) +recipes.remove(); +##Moved to 3D craft +//recipes.addShaped(, [[, , ],[, null, ], [, , ]]); + + +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎8组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎16组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎32组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎64组"); + +mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +mods.rockhounding_chemistry.CrushingGears.add(); +.addTooltip("粉碎128组"); + +/* +recipes.addShaped(.withTag({ench: [{lvl: 1 as short, id: 34 as short}], RepairCost: 1}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({ench: [{lvl: 2 as short, id: 34 as short}], RepairCost: 1}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({ench: [{lvl: 3 as short, id: 34 as short}], RepairCost: 1}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({ench: [{lvl: 4 as short, id: 34 as short}]}), [[null, , null],[, , ], [, , ]]); +recipes.addShaped(.withTag({Unbreakable: 1 as byte}), [[null, , null],[, , ], [, , ]]); +*/ + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌8组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌16组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌32组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + +mods.rockhounding_chemistry.ProfilingBench.add(, *4, 2); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌64组"); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); + + +//mods.rockhounding_chemistry.ProfilingBench.add(, , 6); +recipes.addShaped(, [[null, , null],[, , ], [, , ]]); +mods.rockhounding_chemistry.SlurryAgitators.add(); +.addTooltip("搅拌128组"); + + +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); +mods.rockhounding_chemistry.ProfilingBench.add(, *8, 3); + +mods.thermalexpansion.Compactor.addStorageRecipe( * 4, , 1500); +mods.thermalexpansion.Compactor.addStorageRecipe( * 4, , 1500); +mods.rockhounding_chemistry.ProfilingBench.add(, *20, 5); +mods.rockhounding_chemistry.ProfilingBench.add(, *20, 5); + +//input stack: the oredict-based items to be shaped +//mods.rockhounding_chemistry.ProfilingBench.add("blockGlass", *4, 0); + +//input stack: the input to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByInput(); +//input oredict: the oredict to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByOredict("blockGlass"); +//output stack: the output to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByOutput(); +//casting pattern: the pattern to remove +//mods.rockhounding_chemistry.ProfilingBench.removeByPattern(3); + +##======================================================= +##CRYSTAL PULLING CRUCIBLE +##======================================================= +recipes.remove(); +recipes.remove(); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//base input: the base ingredient +//dopant: the dopant element +//output: the grown crystal +mods.rockhounding_chemistry.PullingCrucible.add(, , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, , ); +mods.rockhounding_chemistry.PullingCrucible.add(, , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, , ); + +mods.rockhounding_chemistry.PullingCrucible.add(, *3, *3); + +//mods.rockhounding_chemistry.PullingCrucible.add("nuggetIron", , ); +//mods.rockhounding_chemistry.PullingCrucible.add(, "dustGlowstone", ); +//mods.rockhounding_chemistry.PullingCrucible.add("nuggetIron", "dustGlowstone", ); +//input stack: the input to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByInput(); +//input oredict: the input oredict to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByInputOredict("nuggetIron"); +//dopant stack: the dopant to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByDopant(); +//dopant oredict: the dopant oredict to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByDopantOredict("dustGlowstone"); +//output stack: the output to remove +//mods.rockhounding_chemistry.PullingCrucible.removeByOutput(); + + +val lowColorName = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, + +] + as IItemStack[]; + +for item in lowColorName { +(item).addTooltip(format.darkGreen("低级过滤碎片")); +} + +val mediumColorName = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, + +] + as IItemStack[]; + +for item in mediumColorName { +(item).addTooltip(format.darkGreen("中级过滤碎片")); +} + +val highColorName = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, + +] + as IItemStack[]; + +for item in highColorName { +(item).addTooltip(format.darkGreen("高级过滤碎片")); +} +########################################################################################## +print("==================== end of mods rockhounding.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/rockhounding_alloytips.zs b/project/Multiblock Madness/1.2.1/scripts/rockhounding_alloytips.zs new file mode 100644 index 000000000..09adaf601 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/rockhounding_alloytips.zs @@ -0,0 +1,235 @@ +import crafttweaker.item.IItemStack; + +//Thanks Hacatu! + +val alloyComponentStrsMap as string[][IItemStack] = { +.firstItem: +[ +"96 ppc 铜", +"3 ppc 铍", +"1 ppc 钴" +], +.firstItem: +[ +"98 ppc 铝", +"2 ppc 钪" +], +.firstItem: +[ +"76 ppc 铝", +"15 ppc 镁", +"3 ppc 硼", +"3 ppc 锂", +"3 ppc 硅" +], +.firstItem: +[ +"57 ppc 钴", +"28 ppc 铬", +"11 ppc 钨", +"2 ppc 碳", +"1 ppc 硅", +"1 ppc 钼" +], +.firstItem: +[ +"63 ppc 铜", +"30 ppc 镍", +"2 ppc 铬", +"1 ppc 硅", +"1 ppc 锰", +"1 ppc 铁", +"1 ppc 钛", +"1 ppc 锆" +], +.firstItem: +[ +"50 ppc 镍", +"21 ppc 铬", +"20 ppc 钴", +"6 ppc 钼", +"2 ppc 钛", +"1 ppc 铝" +], +.firstItem: +[ +"55 ppc 镍", +"16 ppc 钼", +"15 ppc 铬", +"5 ppc 铁", +"4 ppc 钨", +"3 ppc 钴", +"1 ppc 锰", +"1 ppc 铌" +], +.firstItem: +[ +"86 ppc 铜", +"11 ppc 镍", +"2 ppc 铁", +"1 ppc 锰" +], +.firstItem: +[ +"77 ppc 铝", +"12 ppc 镁", +"1 ppc 锰" +], +.firstItem: +[ +"95 ppc 铁", +"2 ppc 铬", +"1 ppc 碳", +"1 ppc 钒", +"1 ppc 硅" +], +.firstItem: +[ +"82 ppc 碳化钨化合物", +"13 ppc 钴", +"5 ppc 碳" +], +.firstItem: +[ +"94 ppc 钽", +"5 ppc 钨", +"1 ppc 铌" +], +.firstItem: +[ +"70 ppc 镍", +"30 ppc 铝" +], +.firstItem: +[ +"48 ppc 镍", +"22 ppc 铬", +"19 ppc 钴", +"4 ppc 钛", +"2 ppc 钨", +"2 ppc 铝", +"2 ppc 钽", +"1 ppc 铌" +], +://zircaloy +[ +"98 ppc 锆", +"4 ppc 锡", +"1 ppc 铌", +"1 ppc 铁", +"1 ppc 铬" +], +.firstItem: +[ +"50 ppc 铈", +"29 ppc 镧", +"15 ppc 钕", +"5 ppc 镨", +"1 ppc 铁" +], +.firstItem: +[ +"75 ppc 金", +"22 ppc 铜", +"3 ppc 银" +], +.firstItem: +[ +"75 ppc 金", +"18 ppc 银", +"5 ppc 铜", +"2 ppc 镉" +], +.firstItem: +[ +"75 ppc 金", +"10 ppc 铂", +"10 ppc 镍", +"5 ppc 锌" +], +://shibuchi +[ +"70 ppc 铜", +"20 ppc 银", +"10 ppc 金" +], +.firstItem: +[ +"75 ppc 铜", +"20 ppc 锌", +"5 ppc 砷" +], +.firstItem: +[ +"90 ppc 锡", +"6 ppc 锑", +"2 ppc 铜", +"1 ppc 铋", +"1 ppc 铅" +], +.firstItem: +[ +"93 ppc 铁", +"1 ppc 镍", +"1 ppc 硅", +"1 ppc 铬", +"1 ppc 磷", +"1 ppc 锰", +"1 ppc 铜", +"1 ppc 钒" +], +.firstItem: +[ +"90 ppc 铜", +"10 ppc 金" +], +.firstItem: +[ +"80 ppc 金", +"20 ppc 铝" +], +.firstItem: +[ +"65 ppc 铁", +"30 ppc 钕", +"2 ppc 硼", +"1 ppc 铌", +"1 ppc 镝", +"1 ppc 镨" +], +.firstItem: +[ +"50 ppc 钴", +"25 ppc 钐", +"18 ppc 铁", +"5 ppc 铜", +"2 ppc 锆" +], +://didymium brick +[ +"46 ppc 镧", +"34 ppc 钕", +"11 ppc 镨", +"5 ppc 钐", +"4 ppc 钆", +"60 ppc 过滤过的砂子", +"(makes 8)" +], +.firstItem: +[ +"67 ppc 铁", +"23 ppc 铬", +"6 ppc 铝", +"2 ppc 硅", +"1 ppc 锰", +"1 ppc 碳" +] +} as string[][IItemStack]; + +for alloyItem, componentStrs in alloyComponentStrsMap { + alloyItem.addTooltip(format.gold("按住shift查看合金成分:")); + for str in componentStrs { + alloyItem.addShiftTooltip(format.blue(str)); + } +} + diff --git a/project/Multiblock Madness/1.2.1/scripts/simple_storage.zs b/project/Multiblock Madness/1.2.1/scripts/simple_storage.zs new file mode 100644 index 000000000..b5326a7d1 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/simple_storage.zs @@ -0,0 +1,56 @@ +import crafttweaker.item.IItemStack; +print("==================== loading simple storage.zs ===================="); +########################################################################################## + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, + +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +.addTooltip(format.aqua("可以配置优先级和过滤")); + +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 8, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); +recipes.addShapedMirrored( * 2, [[, , ],[, , ], [, , ]]); + +//remotes +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped("remotetwo", , [[, , ],[, .marked("sncontroller"), ], [, , ]], + function(out, ins, cInfo) { + return out.withTag(ins.sncontroller.tag); + }, null); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped("remotethree", , [[, , ],[, .marked("sncontroller"), ], [, , ]], + function(out, ins, cInfo) { + return out.withTag(ins.sncontroller.tag); + }, null); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +recipes.addShaped("remotefour", , [[, , ],[, .marked("sncontroller"), ], [, , ]], + function(out, ins, cInfo) { + return out.withTag(ins.sncontroller.tag); + }, null); +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +########################################################################################## +print("==================== end of simple storage.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/tech_reborn.zs b/project/Multiblock Madness/1.2.1/scripts/tech_reborn.zs new file mode 100644 index 000000000..f20493571 --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/tech_reborn.zs @@ -0,0 +1,270 @@ + +import mods.techreborn.rollingMachine; +import crafttweaker.item.IItemStack; +import mods.actuallyadditions.Empowerer; +import mods.techreborn.blastFurnace; +import mods.thermalexpansion.Transposer; +import mods.thermalexpansion.Centrifuge; +import mods.techreborn.fusionReactor; +import mods.techreborn.scrapbox; +import mods.techreborn.assemblingMachine; +import mods.techreborn.fluidReplicator; +import mods.techreborn.industrialElectrolyzer; + +print("==================== loading mods techreborn.zs ===================="); +########################################################################################## + + +val itemstoRemove = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +//, +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + +val itemstoHide = +[ +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +, +] + as IItemStack[]; + +for item in itemstoHide { + mods.jei.JEI.removeAndHide(item); +} + + + +/* +//Data Circuit +val GreenGems as IIngredient = (|) as IIngredient; +recipes.addShaped(, [[null, GreenGems, null],[GreenGems, , GreenGems], [null, GreenGems, null]]); +*/ + +//Don't use ender dust +industrialElectrolyzer.removeInputRecipe(); + +/* Bugged idk +//Diamond Plating +recipes.addShaped(, [[, ],[, ], [, ]]); +recipes.removeShapeless( * 5, [ ]); +recipes.addShapeless( * 5, []); +*/ + +recipes.addShaped( * 16, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 6, [[, , ],[, , ], [, , ]]); +recipes.addShaped( * 2, [[, , ],[, , ], [, , ]]); + + +//Rockcutter +recipes.addShaped(.withTag({ench: [{lvl: 1 as short, id: 33 as short}], energy: 0}), [[, , null],[, , null], [, , ]]); + + +//UU Matter +.addTooltip(format.darkPurple("用物质机收集而得")); + +//Overclocker +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null], [, , ]]); +recipes.addShaped(, [[null, , null], [, , ]]); + +Transposer.addFillRecipe(, .withTag({Fluid: {FluidName: "water", Amount: 1000}}), * 250, 5000); + +//Data Control +recipes.addShaped(*4, [[, , ],[, , ], [, , ]]); + +//UGE tank +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//refined iron +furnace.remove(); +blastFurnace.removeRecipe(); +mods.immersiveengineering.ArcFurnace.addRecipe(*2, , , 400, 512, [, ], "Alloying"); +mods.immersiveengineering.ArcFurnace.addRecipe(, , , 300, 512, [], "Alloying"); +mods.thermalexpansion.InductionSmelter.addRecipe(, , , 10000, , 25); +blastFurnace.addRecipe(*2, , , , 1800, 100, 1000); + +//Grinder +recipes.addShaped(, [[, , ],[, , ], [null, , null]]); +//Chem Reactor +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//Rolling Machine +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//Wire Mill +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//electrolyzer +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +### Assembling Machine ### +/* +//Gold Cable +assemblingMachine.addRecipe(, , , 100, 32); +*/ + +### Rolling Machine ### + + + +//heating coils +rollingMachine.removeRecipe(); +rollingMachine.removeRecipe(); +rollingMachine.removeRecipe(); +rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); +rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); + + +//Terrasteel coil +//rollingMachine.addShaped(*4, [[,,],[,null,],[,,]]); + + + +//Blast Furnace +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + +//Cupronickel/Constantan Heating Coil + +.displayName = "康铜加热线圈"; +.add(); +mods.techreborn.rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); + +//mods.techreborn.rollingMachine.addShaped(*2, [[,,],[,null,],[,,]]); + +//Advanced Frame +//recipes.addShaped(, [[, , ],[, , ], [, , ]]); +Empowerer.addRecipe(, , , , , , 250000, 400, [0.9, 0.1, 0.2]); +.addTooltip(format.darkPurple("制作消耗1,000,000 RF")); + +//1st Tier Casing +recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); + +//2nd tier casing +recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); +//recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); + +//3rd Tier Casing +recipes.addShaped(, [[, , ],[, , ], [, , ]]); +//recipes.addShaped( * 4, [[, , ],[, , ], [, , ]]); + +//SOlar Panel +recipes.addShaped(, [[, , ],[, , ], [, , ]]); + + +//Reinforced Glass +blastFurnace.addRecipe(*2, null, *2, , 1200, 50, 2000); + + +//Plutonium +blastFurnace.addRecipe(, null, , null, 800, 100, 2500); + +### Ginder ### +mods.techreborn.industrialGrinder.addRecipe(, , , null, , null, *500, 200, 512); + +//Reflectors +recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + + +############################################ +############## CENTERIFUGE ############### +############################################ + +//mods.thermalexpansion.Centrifuge.addRecipe(WeightedItemStack[] outputs, IItemStack input, ILiquidStack fluid, int energy); + + +//Rubber Wood +Centrifuge.addRecipe([ % 50, % 25, % 33], , *100, 4000); + +//lapis dust +Centrifuge.addRecipe([ % 75, % 50, % 25, % 25], , null, 10000); + +//Redstone +Centrifuge.addRecipe([ % 10, % 30, % 50], , *100, 10000); + +//glowstone +Centrifuge.addRecipe([ % 25, % 25], , *100, 10000); + +//endstone +Centrifuge.addRecipe([ % 5, % 25], , *100, 10000); + +//netherrack +Centrifuge.addRecipe([ % 25, % 5, % 5, % 5], , *10, 10000); + +//Remove cell recipes +fusionReactor.removeRecipe(.withTag({Fluid: {FluidName: "fluidheliumplasma", Amount: 1000}})); +fusionReactor.removeRecipe(.withTag({Fluid: {FluidName: "fluidhelium3", Amount: 1000}})); + +//More Helium +recipes.addShaped(, [[null, , null],[, .withTag({Fluid: {FluidName: "helium", Amount: 1000}}).onlyWithTag({Fluid: {FluidName: "helium", Amount: 1000}}), ], [null, , null]]); + +scrapbox.addScrapboxDrop(); +scrapbox.removeRecipe(); + +############################################ +############## Fluid Replicator ########## +########################################### + +//Remove liquid recipes +fluidReplicator.removeRecipe(); +fluidReplicator.removeRecipe(); + +//Heavy water +fluidReplicator.addRecipe(2,,10, 1000); +//Enderium +fluidReplicator.addRecipe(2,,100, 1000); +//liquid helium +fluidReplicator.addRecipe(2,,10, 1000); +//Iridium +fluidReplicator.addRecipe(64,,1000, 10000); +//water +fluidReplicator.addRecipe(1,*10000 ,10, 1000); +//lava +fluidReplicator.addRecipe(1,,10, 1000); + +//TOO MUCH TNT +mods.techreborn.implosionCompressor.addRecipe(, *4, , , 20, 32); + +########################################################################################## +print("==================== end of mods techreborn.zs ===================="); diff --git a/project/Multiblock Madness/1.2.1/scripts/thaumcraft.zs b/project/Multiblock Madness/1.2.1/scripts/thaumcraft.zs new file mode 100644 index 000000000..6a02d4f5b --- /dev/null +++ b/project/Multiblock Madness/1.2.1/scripts/thaumcraft.zs @@ -0,0 +1,277 @@ +########################################################################################## +#modloaded thaumcraft +#priority 100 + +import mods.thaumcraft.ArcaneWorkbench; +import mods.thaumcraft.Crucible; +import mods.thaumcraft.Infusion; +import crafttweaker.item.IItemStack; +import mods.arcanearchives.GCT; +import mods.thaumcraft.SalisMundus; +import mods.botania.PureDaisy; + +print("==================== loading mods thaumcraft.zs ===================="); +########################################################################################## + + +val itemstoRemove = +[ + , + , + , + , + , +] + as IItemStack[]; + +for item in itemstoRemove { + recipes.remove(item); +} + + + +Crucible.removeRecipe(); + +/* +val primalAspects = [ +"aer", + ] as string[]; + +for essentiaType in primalAspects { +Crucible.registerRecipe("vis_seed_" + essentiaType, "", + .withTag({Aspect: essentiaType}), , + [ * 20, * 10] +); +} +*/ + + +Crucible.registerRecipe("vis_seed_aer", "", + .withTag({agri_analyzed: 0 as byte, agri_strength: 1 as byte, agri_gain: 1 as byte, agri_seed: "thaumadditions:aer_vis_plant", Aspect: "aer", agri_growth: 1 as byte}), , + [ * 20, * 10] +); +Crucible.registerRecipe("vis_seed_ordo", "", + .withTag({agri_analyzed: 0 as byte, agri_strength: 1 as byte, agri_gain: 1 as byte, agri_seed: "thaumadditions:ordo_vis_plant", Aspect: "ordo", agri_growth: 1 as byte}), , + [ * 20, * 10] +); +Crucible.registerRecipe("vis_seed_aqua", "", + .withTag({agri_analyzed: 0 as byte, agri_strength: 1 as byte, agri_gain: 1 as byte, agri_seed: "thaumadditions:aqua_vis_plant", Aspect: "aqua", agri_growth: 1 as byte}), , + [ * 20, * 10] +); +Crucible.registerRecipe("vis_seed_perditio", "", + .withTag({agri_analyzed: 0 as byte, agri_strength: 1 as byte, agri_gain: 1 as byte, agri_seed: "thaumadditions:perditio_vis_plant", Aspect: "perditio", agri_growth: 1 as byte}), , + [ * 20, * 10] +); +Crucible.registerRecipe("vis_seed_terra", "", + .withTag({agri_analyzed: 0 as byte, agri_strength: 1 as byte, agri_gain: 1 as byte, agri_seed: "thaumadditions:terra_vis_plant", Aspect: "terra", agri_growth: 1 as byte}), , + [ * 20, * 10] +); +Crucible.registerRecipe("vis_seed_ignis", "", + .withTag({agri_analyzed: 0 as byte, agri_strength: 1 as byte, agri_gain: 1 as byte, agri_seed: "thaumadditions:ignis_vis_plant", Aspect: "ignis", agri_growth: 1 as byte}), , + [ * 20, * 10] +); + + +ArcaneWorkbench.removeRecipe(); + +val preciousGems = ; +preciousGems.add(); +preciousGems.add(); +preciousGems.add(); +preciousGems.add(); +preciousGems.add(); +//preciousGems.add(); +//preciousGems.add(); +//preciousGems.add(); + + .setAspects( * 15); + +.addTooltip(format.gold("放在物品栏内会自动照亮周围区域")); +.addTooltip(format.darkPurple("炸毁裂缝得到")); +### CRAFTING RECIPES ### + +// thaumometer +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapedRecipe("CTThaumometer", "", 20, + [], + , [ + [, , ], + [, , ], + [, , ] + ] +); + +ArcaneWorkbench.registerShapedRecipe("VisMeal", "", 25, + [], + *2, + [[, , ], + [, , ], + [, , ]] +); +.addTooltip(format.gold("露天下对着石头使用时,有概率生长出元素水晶")); + +// arcane stone +//ArcaneWorkbench.removeRecipe(); +/*ArcaneWorkbench.registerShapedRecipe("CTArcaneStone", "", 10, + [], + * 8, [ + [, , ], + [, , ], + [, , ] + ] +);*/ +ArcaneWorkbench.registerShapedRecipe("CTArcaneStone", "", 10, [], + * 8, [ + [, , ], + [, , ], + [, , ] + ] +); + +//Quartz Slivers +GCT.addRecipe("nuggets", , []); + +//Plate for research +recipes.addShaped(, [[.reuse().transformDamage(10)],[]]); +recipes.addShaped(, [[.reuse().transformDamage(10)],[]]); +recipes.addShaped(, [[.reuse().transformDamage(10)],[]]); + + + + +PureDaisy.addRecipe(, ); + +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapedRecipe("CTBrassSmelter", "", 50, [], +, +[[, , ], +[, , ], +[, , ]] +); + +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapedRecipe("CTVoidSmelter", "", 750, [*3], +, +[[, , ], +[, , ], +[, , ]] +); + +ArcaneWorkbench.registerShapedRecipe("essentia_component_64k", "", 10, [], , [[, , ],[, , ], [, , ]]); +ArcaneWorkbench.registerShapedRecipe("essentia_component_16k", "", 10, [], , [[, , ],[, , ], [, , ]]); +ArcaneWorkbench.registerShapedRecipe("essentia_component_4k", "", 10, [], , [[, , ],[, , ], [, , ]]); +ArcaneWorkbench.registerShapedRecipe("essentia_component_1k", "", 10, [], , [[, , ],[, , ], [, , ]]); + + +Crucible.removeRecipe(); +Crucible.registerRecipe("CTThaumium", "", + , , + [ * 5, * 5] +); +Crucible.registerRecipe("CTThaumium2", "", + *2, , + [ * 5, * 5] +); +Crucible.registerRecipe("SkullVoidstone", "", + , , + [ * 10] +); + +Crucible.removeRecipe(); +Crucible.registerRecipe("AstralNitor", "", + , , + [ * 10, * 10, * 10] +); +/* +Crucible.registerRecipe("GreatwoodLog", "", + , , + [ * 20, * 5, * 5] +); +*/ +Crucible.registerRecipe("GreatwoodSapling", "", + , , + [ * 20, * 5, * 5] +); +Crucible.removeRecipe(); +Crucible.registerRecipe("Alumentum", "", + , , + [ * 10, * 10, * 5] +); +furnace.setFuel(, 6400); +// runic matrix +ArcaneWorkbench.removeRecipe(); +ArcaneWorkbench.registerShapelessRecipe("matrixforresearch", "", 0, [], , []); + +//add aspects + //.setAspects( * 10, * 10, * 10); + //.setAspects( * 10, * 10, * 10); + .setAspects(*40,*40); + .setAspects(*40,*40); + +.add(); + + +//primordial_pearl +mods.astralsorcery.Altar.addAttunementAltarRecipe("mm:shaped/internal/thaumcraft/primordial_pearl", , 1500, 300, [ + + , , , + , , , + , , , + + , , , ]); + + + +/* +.removeAspects(*8,*10); +.removeAspects(*30,*30,*10,*10,*3); +//,*/ + +## GREATWOOD STIXS +//recipes.addShaped(, [[null, null, ],[null, , null], [, null, null]]); +//recipes.addShaped(, [[null, , null],[, , ], [null, , null]]); + +.addTooltip(format.lightPurple("对着宏伟之木原木使用世界盐,一次可制作2根")); +SalisMundus.addSingleConversion(.block, *2); + +//Knight Metal +Crucible.registerRecipe("ArmorShard", "", + * 3, , + [ * 5, * 5] +); + +//Fabric +Crucible.registerRecipe("Fabric", "", + , , + [ * 5] +); + +//mithrillium +Infusion.removeRecipe(); +Infusion.registerRecipe("mithrillium", "", +, 12, +[*30, *30, *15, *10, *10], +, +[,, , , , +,, , , ]); + +//adaminite +Infusion.removeRecipe(); +Infusion.registerRecipe("adaminite", "", +, 13, +[*120, *100, *100, *100, *40, *40, *30, *20,*20], +, +[, , +, ]); + +//mithminite +Infusion.removeRecipe(); +Infusion.registerRecipe("mithminite", "", +, 20, +[*120,*90,*60,*10], +, +[, , +, ]); + +########################################################################################## +print("==================== end of mods thaumcraft.zs ===================="); diff --git a/project/Project Ozone 3/3.3.61/config/betterquesting/DefaultQuests.json b/project/Project Ozone 3/3.3.61/config/betterquesting/DefaultQuests.json new file mode 100644 index 000000000..e3e1b522a --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/betterquesting/DefaultQuests.json @@ -0,0 +1,97183 @@ +{ + "format:8": "2.0.0", + "questDatabase:9": { + "0:10": { + "questID:3": 0, + "preRequisites:11": [], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Random Act of Kindness", + "desc:8": "认识一下RAK吧!\n\nRAK \u003d Random Act of Kindness" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:diamond", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:sapling", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:dirt", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1:10": { + "questID:3": 1, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:log", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "砍树人", + "desc:8": "砍树获得木头和苹果,做钩子钩树叶获得蚕,???,就很熟悉.jpg" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:log", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "logWood" + }, + "1:10": { + "id:8": "minecraft:sapling", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "treeSapling" + }, + "2:10": { + "id:8": "minecraft:apple", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "cropApple" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "exnihilocreatio:crook_wood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:glass_bottle", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tp:juicer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "2:10": { + "questID:3": 2, + "preRequisites:11": [ + 10 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:block_sieve", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "筛网", + "desc:8": "用筛子筛特定方块是刚开始获得资源的方式。可以将筛网放到8x8的筛子里一次性筛一组的物品。\n\n能够按照以下路线锤出\uff1a压缩圆石 \u003e 压缩沙砾 \u003e 压缩沙子 \u003e 压缩尘土。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:block_sieve", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "3:10": { + "questID:3": 3, + "preRequisites:11": [ + 2 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:block_auto_sifter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "自动筛制", + "desc:8": "水车和水,但并不像IE的水车。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:block_auto_sifter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "exnihilocreatio:block_waterwheel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "exnihilocreatio:block_axle_stone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "exnihilocreatio:block_waterwheel", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "4:10": { + "questID:3": 4, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:block_crucible_wood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "将水变成粘土", + "desc:8": "木坩埚不需要热源就可以将树叶或树苗转换成水。\n\n将尘土对着装满水的木桶右键就可以获得粘土。\n如果你现在还没有桶,你也可以用玻璃瓶把水运到木桶里。\n\n不要尝试把粘土放进木坩埚里,不会有用的。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:block_crucible_wood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "exnihilocreatio:block_barrel0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:clay", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "5:10": { + "questID:3": 5, + "preRequisites:11": [ + 4 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:block_crucible", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生产熔岩", + "desc:8": "熔炼圆石就能获得熔岩,你可以在JEI里查看坩埚可用的热源。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:block_crucible", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "6:10": { + "questID:3": 6, + "preRequisites:11": [ + 11 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:iron_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "圆石生产 2", + "desc:8": "比上一个等级更快" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:iron_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "7:10": { + "questID:3": 7, + "preRequisites:11": [ + 2 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "燧石筛网", + "desc:8": "比线做的筛网更好" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "8:10": { + "questID:3": 8, + "preRequisites:11": [ + 7 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁筛网", + "desc:8": "比燧石做的更好" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "9:10": { + "questID:3": 9, + "preRequisites:11": [ + 8 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石筛网", + "desc:8": "比铁做的更好" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:item_mesh", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "10:10": { + "questID:3": 10, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "exnihilocreatio:item_material", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "线", + "desc:8": "感染树叶以获得线,线可以制作筛网,你愿意的话,还可以做张床。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "exnihilocreatio:item_material", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:string", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "11:10": { + "questID:3": 11, + "preRequisites:11": [ + 5 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "圆石生产 1", + "desc:8": "自动生产圆石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "12:10": { + "questID:3": 12, + "preRequisites:11": [ + 655 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:blank_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "升级熔炉", + "desc:8": "Furnace Overhaul有一些能够增强熔炉功能的升级。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:efficiency_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:speed_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:liquid_fuel_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:electric_fuel_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:ore_processing_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "furnaceoverhaul:processing_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "13:10": { + "questID:3": 13, + "preRequisites:11": [ + 6 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:diamond_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "圆石生产 3", + "desc:8": "比上一级更快" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:diamond_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "14:10": { + "questID:3": 14, + "preRequisites:11": [ + 13 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:blaze_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "圆石生产 4", + "desc:8": "比上一级更快" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:blaze_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "15:10": { + "questID:3": 15, + "preRequisites:11": [ + 14 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:emerald_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "圆石生产 5", + "desc:8": "比上一级更快" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:emerald_cobblegen_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "16:10": { + "questID:3": 16, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:pattern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "模板", + "desc:8": "制作匠魂工具的基础" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:pattern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "pattern" + }, + "1:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "minecraft:planks", + "Count:1": 0, + "Damage:2": 0 + }, + "astralsorcery:10": {} + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "tag:10": { + "textureBlock:10": { + "id:8": "minecraft:log", + "Count:1": 0, + "Damage:2": 0 + }, + "astralsorcery:10": {} + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "5:10": { + "id:8": "tconstruct:tooltables", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "17:10": { + "questID:3": 17, + "preRequisites:11": [ + 872, + 873, + 1044, + 1045, + 1047, + 1063, + 1066, + 1068, + 1070, + 1071, + 1072, + 1073, + 1092, + 1093, + 1094, + 1100, + 1101, + 1102, + 1103, + 1104 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:chaos_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Titan模式毕业", + "desc:8": "毕业PO3Titan模式。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "18:10": { + "questID:3": 18, + "preRequisites:11": [ + 19 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:soil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "我就是渣渣!", + "desc:8": "能烧成焦黑石头" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:soil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "19:10": { + "questID:3": 19, + "preRequisites:11": [ + 16 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tcomplement:porcelain_melter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "简陋的冶炼炉", + "desc:8": "不能双倍矿物或者用于合金,但需要用它获得冶炼炉" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tcomplement:porcelain_melter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "tcomplement:porcelain_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "PorcelainTank" + }, + "2:10": { + "id:8": "ceramics:faucet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tcomplement:porcelain_casting", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "tcomplement:porcelain_casting", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "20:10": { + "questID:3": 20, + "preRequisites:11": [ + 18 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:smeltery_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级的冶炼炉", + "desc:8": "冶炼炉可以双倍矿物,也可以用来合金,所以请留心你放进去的金属会不会与其他金属发生点\u2642什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:seared_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "SearedTank" + }, + "1:10": { + "id:8": "tconstruct:smeltery_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "tconstruct:smeltery_io", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "tconstruct:faucet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "tconstruct:seared", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "blockSeared" + }, + "5:10": { + "id:8": "tconstruct:casting", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "tconstruct:casting", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "21:10": { + "questID:3": 21, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:cobblestone", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "你会用连点器吗", + "desc:8": "潜行右键草方块或泥土可以获得石子,石子可以做成圆石。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:cobblestone", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "22:10": { + "questID:3": 22, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:orecrystalb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础水晶", + "desc:8": "你可以在暮色森林、挖矿维度(Mining dimension)找到水晶矿,如果你游玩的是默认世界类型,也可以在主世界找到。在Lordcraft的书中可以了解更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_neutral", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "lordcraft:knowledge_book", + "Count:3": 1, + "tag:10": { + "tile_unlocked_17:1": 0, + "tile_unlocked_16:1": 0, + "tile_unlocked_19:1": 0, + "tile_unlocked_18:1": 0, + "tile_unlocked_31:1": 0, + "tile_unlocked_30:1": 0, + "tile_unlocked_11:1": 0, + "tile_unlocked_33:1": 0, + "tile_unlocked_10:1": 0, + "tile_unlocked_32:1": 0, + "tile_unlocked_13:1": 0, + "tile_unlocked_35:1": 0, + "tile_unlocked_12:1": 0, + "tile_unlocked_34:1": 0, + "tile_unlocked_15:1": 0, + "tile_unlocked_14:1": 0, + "tile_unlocked_8:1": 0, + "tile_unlocked_7:1": 0, + "tile_unlocked_9:1": 0, + "tile_unlocked_4:1": 0, + "tile_unlocked_3:1": 0, + "tile_unlocked_6:1": 0, + "tile_unlocked_5:1": 0, + "tile_unlocked_0:1": 0, + "tile_unlocked_28:1": 0, + "tile_unlocked_27:1": 0, + "tile_unlocked_2:1": 0, + "tile_unlocked_1:1": 0, + "tile_unlocked_29:1": 0, + "tile_unlocked_20:1": 0, + "tile_unlocked_22:1": 0, + "tile_unlocked_21:1": 0, + "tile_unlocked_24:1": 0, + "tile_unlocked_23:1": 0, + "tile_unlocked_26:1": 0, + "research_prog:3": -1, + "tile_unlocked_25:1": 0, + "research_ord:3": -1 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "23:10": { + "questID:3": 23, + "preRequisites:11": [ + 528 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红色大背包", + "desc:8": "§c与开放式方块的Dev/Null类似,并有着更大容量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "24:10": { + "questID:3": 24, + "preRequisites:11": [ + 23 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝色大背包", + "desc:8": "§9有更大的容量§r" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "25:10": { + "questID:3": 25, + "preRequisites:11": [ + 24 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "白色大背包", + "desc:8": "§r§7§f有更大的容量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "26:10": { + "questID:3": 26, + "preRequisites:11": [ + 25 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄色大背包", + "desc:8": "§e有更大的容量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "27:10": { + "questID:3": 27, + "preRequisites:11": [ + 26 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青色大背包", + "desc:8": "§b有更大的容量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "28:10": { + "questID:3": 28, + "preRequisites:11": [ + 27 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿色大背包", + "desc:8": "§a有更大的容量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "danknull:dank_null_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "29:10": { + "questID:3": 29, + "preRequisites:11": [ + 23 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "danknull:danknull_dock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "扩展坞", + "desc:8": "§r用来从/Dank/Null中提取物品,在/dank/null的GUI中Ctrl左键一个物品,会更改这个物品的提取模式。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "danknull:danknull_dock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "30:10": { + "questID:3": 30, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:basicdrawers", + "Count:3": 1, + "tag:10": { + "material:8": "oak" + }, + "Damage:2": 0, + "OreDict:8": "drawerBasic" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础抽屉", + "desc:8": "能存储大量同种物品,并且有多个版本,最多可以一次存储4种不同的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:basicdrawers", + "Count:3": 1, + "tag:10": { + "material:8": "oak" + }, + "Damage:2": 0, + "OreDict:8": "drawerBasic" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "31:10": { + "questID:3": 31, + "preRequisites:11": [ + 30 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "抽屉管理器", + "desc:8": "右键它可以自动将背包中的物品归类到连接的抽屉上。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "32:10": { + "questID:3": 32, + "preRequisites:11": [ + 30 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:compdrawers", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压缩抽屉", + "desc:8": "根据其内物品的配方自动压缩分解并存储。(比如9粒变1锭,1锭变9粒)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:compdrawers", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "33:10": { + "questID:3": 33, + "preRequisites:11": [ + 30 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:controllerslave", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "管理器传动", + "desc:8": "与抽屉管理器功能相同,但不会增加可连接抽屉的范围。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:controllerslave", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "34:10": { + "questID:3": 34, + "preRequisites:11": [ + 30 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:drawer_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "戴锁", + "desc:8": "将抽屉上锁,可以理解为将一种物品标记到抽屉上,使其只与这种物品交互。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:drawer_key", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "35:10": { + "questID:3": 35, + "preRequisites:11": [ + 30 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑曜石升级", + "desc:8": "2倍容量升级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "36:10": { + "questID:3": 36, + "preRequisites:11": [ + 35 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁质升级", + "desc:8": "4倍容量升级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "37:10": { + "questID:3": 37, + "preRequisites:11": [ + 36 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金质升级", + "desc:8": "8倍容量升级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "38:10": { + "questID:3": 38, + "preRequisites:11": [ + 37 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石升级", + "desc:8": "16倍容量升级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "39:10": { + "questID:3": 39, + "preRequisites:11": [ + 38 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石升级", + "desc:8": "32倍容量升级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_storage", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "40:10": { + "questID:3": 40, + "preRequisites:11": [ + 30 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "storagedrawers:upgrade_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空升级", + "desc:8": "将超过抽屉最大容量的物品销毁,在刷怪场里很实用。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "storagedrawers:upgrade_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "41:10": { + "questID:3": 41, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:skull", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "刷怪场", + "desc:8": "杀死一只僵尸,一只骷髅,一只苦力怕和一只远古傀儡。" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092896, + "4:6": 1.9500000476837158, + "5:6": 0.30000001192092896 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 20.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.23000000417232513, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 2.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 35.0, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 3.0, + "Name:8": "generic.attackDamage" + }, + "16:10": { + "Base:6": 0.08201230943253741, + "Name:8": "zombie.spawnReinforcements" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 1000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "minecraft:zombie", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6641059948641101042, + "Health:5": 20.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 5.8985214, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 8477990142179885883, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "CanBreakDoors:1": 0, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "minecraft:zombie", + "subtypes:1": 1 + }, + "1:10": { + "ignoreNBT:1": 1, + "index:3": 1, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092896, + "4:6": 1.9900000095367432, + "5:6": 0.30000001192092896 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 20.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.25, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 2.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 1000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "minecraft:skeleton", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -8823907181473237260, + "Health:5": 20.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 4.8260317, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 8337201659352794199, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "minecraft:skeleton", + "subtypes:1": 0 + }, + "2:10": { + "ignoreNBT:1": 1, + "index:3": 2, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092896, + "4:6": 1.7000000476837158, + "5:6": 0.30000001192092896 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 20.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.25, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 2.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 1000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "minecraft:creeper", + "Fuse:2": 30, + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -6602752552432128427, + "Health:5": 20.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "ignited:1": 0, + "Rotation:9": { + "0:5": 0.68628055, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 4580074641849862084, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0, + "ExplosionRadius:1": 3 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "minecraft:creeper", + "subtypes:1": 0 + }, + "3:10": { + "ignoreNBT:1": 1, + "index:3": 3, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092896, + "4:6": 1.7999999523162842, + "5:6": 0.30000001192092896 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 40.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 1.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.5, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 32.0, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 6.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 2000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "embers:ancient_golem", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -8736543820940018932, + "Health:5": 40.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 1.980029, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 6642940041729756652, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "embers:ancient_golem", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "42:10": { + "questID:3": 42, + "preRequisites:11": [ + 41 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ancient_motive_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "古代法典", + "desc:8": "击杀远古傀儡可以获得制作古代法典的材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:codex", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "43:10": { + "questID:3": 43, + "preRequisites:11": [ + 42 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:tinker_hammer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "余烬之锤", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:tinker_hammer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "44:10": { + "questID:3": 44, + "preRequisites:11": [ + 43 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ember_bore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "余烬挖掘机", + "desc:8": "古代法典中有你需要的所有信息。在Y=5附近工作,就算没有基岩。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_bore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "45:10": { + "questID:3": 45, + "preRequisites:11": [ + 44 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:crystal_ember", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "固态余烬", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:shard_ember", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:crystal_ember", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "46:10": { + "questID:3": 46, + "preRequisites:11": [ + 42 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:brick_caminite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "方镁矾砖", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:brick_caminite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "47:10": { + "questID:3": 47, + "preRequisites:11": [ + 44 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ember_activator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灰烬能量催化器", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_activator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "48:10": { + "questID:3": 48, + "preRequisites:11": [ + 42 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:ember_detector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大气能量测量表", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:ember_detector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "49:10": { + "questID:3": 49, + "preRequisites:11": [ + 43 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:item_dropper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "余烬管道", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:pipe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:item_pipe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "embers:item_pump", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "embers:item_dropper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "50:10": { + "questID:3": 50, + "preRequisites:11": [ + 42 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:fluid_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "余烬表盘", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:fluid_gauge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "51:10": { + "questID:3": 51, + "preRequisites:11": [ + 44 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ember_emitter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "操控余烬", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ember_emitter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:ember_receiver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "52:10": { + "questID:3": 52, + "preRequisites:11": [ + 51 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:copper_cell", + "Count:3": 1, + "tag:10": { + "emberCapacity:6": 24000.0, + "ember:6": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铜质电池", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:copper_cell", + "Count:3": 1, + "tag:10": { + "emberCapacity:6": 24000.0, + "ember:6": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "53:10": { + "questID:3": 53, + "preRequisites:11": [ + 46 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:stamp_flat", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "余烬模具", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:stamp_bar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:stamp_flat", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:stamp_plate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "54:10": { + "questID:3": 54, + "preRequisites:11": [ + 46 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:block_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "熔炼炉", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:block_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "55:10": { + "questID:3": 55, + "preRequisites:11": [ + 54 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:stamper_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压印", + "desc:8": "古代法典中有你需要的所有信息。所有压印锤的配方都有效,只是为了停止无止尽的重命名配方工作,所以在JEI中全部隐藏了。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:stamper_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:stamper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "56:10": { + "questID:3": 56, + "preRequisites:11": [ + 54 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:large_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "储罐", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:large_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:stone_edge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:mech_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "57:10": { + "questID:3": 57, + "preRequisites:11": [ + 54 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:mixer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "搅拌机", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:mixer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "58:10": { + "questID:3": 58, + "preRequisites:11": [ + 57 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黎明石", + "desc:8": "金铜合金。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:ingot_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "59:10": { + "questID:3": 59, + "preRequisites:11": [ + 47 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:boiler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高压激发", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:boiler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "60:10": { + "questID:3": 60, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:cinder_plinth", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灰烬", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:cinder_plinth", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "61:10": { + "questID:3": 61, + "preRequisites:11": [ + 60 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:alchemy_pedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "火焰炼金术", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:alchemy_pedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:alchemy_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:beam_cannon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "62:10": { + "questID:3": 62, + "preRequisites:11": [ + 58 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:aspectus_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "元素象征", + "desc:8": "古代法典中有你需要的所有信息。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:aspectus_lead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "embers:aspectus_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "embers:aspectus_dawnstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "embers:aspectus_copper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "embers:aspectus_iron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "63:10": { + "questID:3": 63, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:tile", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铭文", + "desc:8": "用于这个mod的研究部分。书中你可以看到所有研究条目,一旦你点击了一种元素的研究,你会发现其他元素的研究都会被锁上,直到你解锁了特定的研究。可以在书中看到更多信息。\n\n§l根据你一开始选择的元素研究种类,即完成对应种类的任务,会影响你任务书中的发展线。\n\n例如:§l§r 星辉魔法是纯净水晶(Pure crystal)的发展线,而其他魔法的发展线则是由其他元素水晶开启的。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:tile", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "64:10": { + "questID:3": 64, + "preRequisites:11": [ + 63 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:arcaneinscriberb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "提笔刻字", + "desc:8": "将空白铭文(Inscription Tile)刻成有符号的铭文,这些铭文可以用于lordcraft模组的研究。在书中了解更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:arcaneinscriberb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "65:10": { + "questID:3": 65, + "preRequisites:11": [ + 63 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:arcanetableb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Lordcraft工作台", + "desc:8": "基础的合成台。可以在书中了解相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:arcanetableb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "66:10": { + "questID:3": 66, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_water", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Damp Crystal", + "desc:8": "蕴含水元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_water", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "67:10": { + "questID:3": 67, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_earth", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Dense Crystal", + "desc:8": "蕴含地元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_earth", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "68:10": { + "questID:3": 68, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_fire", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Searing Crystal", + "desc:8": "蕴含火元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_fire", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "69:10": { + "questID:3": 69, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_air", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Floating Crystal", + "desc:8": "蕴含气元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_air", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "70:10": { + "questID:3": 70, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_cosmic", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Spacious Crystal", + "desc:8": "蕴含虚空元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_cosmic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "71:10": { + "questID:3": 71, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_lightning", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Pure Crystal", + "desc:8": "蕴含纯净元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_lightning", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "72:10": { + "questID:3": 72, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_nature", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Verdant Crystal", + "desc:8": "蕴含自然元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_nature", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "73:10": { + "questID:3": 73, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_light", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Bright Crystal", + "desc:8": "蕴含光元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_light", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "74:10": { + "questID:3": 74, + "preRequisites:11": [ + 22 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:crystal_basic_dark", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Dull Crystal", + "desc:8": "蕴含黑暗元素的水晶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:crystal_basic_dark", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "75:10": { + "questID:3": 75, + "preRequisites:11": [ + 8 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:crushing_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粉碎桌", + "desc:8": "搭配MagnetiCraft模组的锤可以制作金属板。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:crushing_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "76:10": { + "questID:3": 76, + "preRequisites:11": [ + 63 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:dust_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔粉尘", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:dust_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "77:10": { + "questID:3": 77, + "preRequisites:11": [ + 76 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:cyclicforgeb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Lordcraft锻炉", + "desc:8": "在书中了解相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:cyclicforgeb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "78:10": { + "questID:3": 78, + "preRequisites:11": [ + 65, + 80 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:arcanetable_advb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级Lordcraft工作台", + "desc:8": "基本就是个工作台。在书中了解相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:arcanetable_advb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "79:10": { + "questID:3": 79, + "preRequisites:11": [ + 77, + 80 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:cyclicforge_advb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级Lordcraft锻炉", + "desc:8": "在书中了解相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:cyclicforge_advb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "80:10": { + "questID:3": 80, + "preRequisites:11": [ + 77 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:ingot_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔锭", + "desc:8": "§4Thermal Foundation模组的蕴魔锭与Lordcraft模组的注魔锭(Mana Infused Ingot)并不享有相同的矿辞。§f 合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:ingot_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "81:10": { + "questID:3": 81, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:shelving_unit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "货架", + "desc:8": "每个货架可以放置8个原版的箱子。右键将投影放置到地面上以开始搭建多方块结构。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:shelving_unit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 14, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "82:10": { + "questID:3": 82, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:water_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无限水", + "desc:8": "每个面都可以自动输出水。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:water_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "83:10": { + "questID:3": 83, + "preRequisites:11": [ + 11 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "dimensionaledibles:nether_cake", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下界", + "desc:8": "你可以搭建一个原版的地狱门前往下界,也可以食用下界蛋糕(使用黑曜石补充)前往下界,在下界食用主世界蛋糕(使用树苗补充)即可返回主世界。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "dimensionaledibles:overworld_cake", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "dimensionaledibles:nether_cake", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "dimensionaledibles:overworld_apple", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "84:10": { + "questID:3": 84, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:twilight_sapling", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "暮色森林", + "desc:8": "在2x2的水池周围放上一圈花,然后向水中丢入微光水晶。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "embers:glimmer_shard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "lordcraft:crystal_basic_neutralb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "85:10": { + "questID:3": 85, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wit:wit", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无线终端", + "desc:8": "在外访问你的ME系统。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wit:wit", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "86:10": { + "questID:3": 86, + "preRequisites:11": [ + 485 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "冶金", + "desc:8": "这台机器用来制作Mekanism模组的大部分合成用材料。也可以制作一些合金。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "87:10": { + "questID:3": 87, + "preRequisites:11": [ + 76 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:mana_batteryb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空接口", + "desc:8": "用来存储魔力,使用相应的水晶右键它即可获得魔力。在书中了解相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:mana_batteryb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "88:10": { + "questID:3": 88, + "preRequisites:11": [ + 87 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:water_siphon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "siphon" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔力虹吸", + "desc:8": "使用它右键虚空接口(Void Interface)来开始存储魔力(可以使用更多的虹吸管来获得更大的魔力存储)。在书中了解相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:water_siphon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "siphon" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "89:10": { + "questID:3": 89, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "融合机", + "desc:8": "将矿粉与圆石融合来制作矿石。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "90:10": { + "questID:3": 90, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锇压缩机", + "desc:8": "用来将锇注入到其他合成用材料中。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "91:10": { + "questID:3": 91, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "富集仓", + "desc:8": "用于许多合成,也是某些机器的合成材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "92:10": { + "questID:3": 92, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粉碎机", + "desc:8": "用于粉碎物品,例如锭。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "93:10": { + "questID:3": 93, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能冶炼炉", + "desc:8": "像熔炉那样处理物品,但用的是电。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "94:10": { + "questID:3": 94, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:enrichedalloy", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "富集金属", + "desc:8": "合成用材料,在冶金灌注机里使用铁与红石制成。拥有高级版本。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:enrichedalloy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "95:10": { + "questID:3": 95, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础控制电路", + "desc:8": "合成用材料,在冶金灌注机里使用锇和红石制成。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "96:10": { + "questID:3": 96, + "preRequisites:11": [ + 95 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 64, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级控制电路", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "97:10": { + "questID:3": 97, + "preRequisites:11": [ + 96 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 64, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精英控制电路", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "98:10": { + "questID:3": 98, + "preRequisites:11": [ + 97 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 64, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极控制电路", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:controlcircuit", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "99:10": { + "questID:3": 99, + "preRequisites:11": [ + 94 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:reinforcedalloy", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化合金", + "desc:8": "合成用材料,在冶金灌注机里使用钻石和富集合金制成。可以将高级管道升级成精英管道。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:reinforcedalloy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "100:10": { + "questID:3": 100, + "preRequisites:11": [ + 99 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:atomicalloy", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "原子合金", + "desc:8": "合成用材料,在冶金灌注机里使用强化合金和强化黑曜石制成。能够将精英管道升级成终极管道。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:atomicalloy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "101:10": { + "questID:3": 101, + "preRequisites:11": [ + 91 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "加压反应室", + "desc:8": "将固体,流体和气体处理成另一种固体和气体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "102:10": { + "questID:3": 102, + "preRequisites:11": [ + 92 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:biofuel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生物燃料", + "desc:8": "一些机器的加工材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:biofuel", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "103:10": { + "questID:3": 103, + "preRequisites:11": [ + 91 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:compressedcarbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "更划算", + "desc:8": "处理一些可用于冶金灌注机的材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:compressedcarbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:compressedredstone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mekanism:compresseddiamond", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "mekanism:compressedobsidian", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "104:10": { + "questID:3": 104, + "preRequisites:11": [ + 91 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "回旋式气液转换机", + "desc:8": "将流体处理成气体,反之亦可。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "105:10": { + "questID:3": 105, + "preRequisites:11": [ + 101, + 104, + 108 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:polyethene", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "HDPE小球", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:polyethene", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "106:10": { + "questID:3": 106, + "preRequisites:11": [ + 102 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生物能发电机", + "desc:8": "使用生物燃料发电。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "107:10": { + "questID:3": 107, + "preRequisites:11": [ + 90 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精益求精", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "ingotRefinedObsidian" + }, + "1:10": { + "id:8": "mekanism:ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "ingotRefined荧石" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "108:10": { + "questID:3": 108, + "preRequisites:11": [ + 91 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电解分离器", + "desc:8": "将一种气体分解成另外两种气体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "109:10": { + "questID:3": 109, + "preRequisites:11": [ + 95 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础安装器", + "desc:8": "基础工厂" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "110:10": { + "questID:3": 110, + "preRequisites:11": [ + 94, + 96, + 109 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级安装器", + "desc:8": "高级工厂" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "111:10": { + "questID:3": 111, + "preRequisites:11": [ + 97, + 99, + 110 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精英安装器", + "desc:8": "精英工厂" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:tierinstaller", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "112:10": { + "questID:3": 112, + "preRequisites:11": [ + 98, + 115 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock3", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子传送装置", + "desc:8": "可以跨维度传输物品、流体、气体和能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock3", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "113:10": { + "questID:3": 113, + "preRequisites:11": [ + 100 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:robit", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "机器人", + "desc:8": "一个宠物机器人。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:robit", + "Count:3": 1, + "tag:10": { + "mekData:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "114:10": { + "questID:3": 114, + "preRequisites:11": [ + 113, + 115 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "数字开采", + "desc:8": "可以在32半径内自动挖掘你指定的任何方块。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "115:10": { + "questID:3": 115, + "preRequisites:11": [ + 100 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:teleportationcore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传送核心", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:teleportationcore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "116:10": { + "questID:3": 116, + "preRequisites:11": [ + 95 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock", + "Count:3": 20, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "动态储罐", + "desc:8": "多方块流体储罐。Cazador很喜欢它。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mekanism:basicblock", + "Count:3": 36, + "Damage:2": 9, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mekanism:basicblock", + "Count:3": 2, + "Damage:2": 11, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mekanism:basicblock", + "Count:3": 20, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "117:10": { + "questID:3": 117, + "preRequisites:11": [ + 120 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "AE模板", + "desc:8": "能够在陨石里找到,也可以通过Mystical Agriculture模组制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "3:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "118:10": { + "questID:3": 118, + "preRequisites:11": [ + 117 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压印器", + "desc:8": "使用模板制作电路板。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "119:10": { + "questID:3": 119, + "preRequisites:11": [ + 118 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ae2stuff:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级压印器", + "desc:8": "更方便于自动化。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ae2stuff:inscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "120:10": { + "questID:3": 120, + "preRequisites:11": [ + 2 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "赛特斯石英", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "121:10": { + "questID:3": 121, + "preRequisites:11": [ + 123 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:quartz_growth_accelerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "加速晶体生长", + "desc:8": "加速AE种子的生长。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:quartz_growth_accelerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "122:10": { + "questID:3": 122, + "preRequisites:11": [ + 121 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ae2stuff:grower", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶体催生仓", + "desc:8": "拥有晶体催生器的所有功能,但只需要一格空间,并且能够在无水环境下制作福鲁伊克斯水晶。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ae2stuff:grower", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "123:10": { + "questID:3": 123, + "preRequisites:11": [ + 120 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "福鲁伊克斯水晶", + "desc:8": "将充能赛特斯石英水晶、红石和石英扔进同一格水中,反应时间很短。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "crystalFluix" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "124:10": { + "questID:3": 124, + "preRequisites:11": [ + 118 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压制电路板", + "desc:8": "由最好的压印器制成的电路板。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 23, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:choice", + "index:3": 0, + "choices:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 22, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 24, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 16, + "Damage:2": 23, + "OreDict:8": "" + } + } + }, + "1:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "125:10": { + "questID:3": 125, + "preRequisites:11": [ + 124 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 43, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "两种核心", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 43, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 44, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "126:10": { + "questID:3": 126, + "preRequisites:11": [ + 121 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高纯水晶", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "127:10": { + "questID:3": 127, + "preRequisites:11": [ + 123 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "福鲁伊克斯珍珠", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "pearlFluix" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "128:10": { + "questID:3": 128, + "preRequisites:11": [ + 120 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "dustCertusQuartz" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水晶粉", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "2:10": { + "id:8": "actuallyadditions:item_dust", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "dustQuartz" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "129:10": { + "questID:3": 129, + "preRequisites:11": [ + 128 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:quartz_glass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "石英玻璃", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:quartz_glass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "130:10": { + "questID:3": 130, + "preRequisites:11": [ + 125 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 260, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "AE接口", + "desc:8": "将物品输入或输出金ME网络。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 260, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 240, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "131:10": { + "questID:3": 131, + "preRequisites:11": [ + 132 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "ME线缆", + "desc:8": "福鲁伊克斯色线缆会与其他颜色的线缆连接。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 56, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 76, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "132:10": { + "questID:3": 132, + "preRequisites:11": [ + 128 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 64, + "Damage:2": 140, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "石英纤维", + "desc:8": "仅用于传输能量,不会传输频道。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 140, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "133:10": { + "questID:3": 133, + "preRequisites:11": [ + 129 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:energy_acceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "能量接收器", + "desc:8": "接收来自\"大多数\"模组的能量并为ME系统所用。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:energy_acceptor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "134:10": { + "questID:3": 134, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:drive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "ME驱动器", + "desc:8": "十个元件插槽,一堆存储空间。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:drive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "135:10": { + "questID:3": 135, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Me控制器", + "desc:8": "可以替代能源接收器。ME控制器每个面都拥有32个频道,所以推荐使用密集线缆链接,并且将所有东西都连到这些密集线缆上。\n\n§c如果控制器变红,则说明控制器太多或至少有2个控制器没有连接到一起。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "136:10": { + "questID:3": 136, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 360, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Me合成接口", + "desc:8": "可以用来在ME系统中合成物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 360, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "137:10": { + "questID:3": 137, + "preRequisites:11": [ + 135 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:security_station", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "ME安全终端", + "desc:8": "把ME系统变成只有你(和你的朋友)可以访问,无线终端也需要它。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:security_station", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "138:10": { + "questID:3": 138, + "preRequisites:11": [ + 120 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:charger", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能器", + "desc:8": "为你的无线ME终端和赛特斯石英充能。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:charger", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "139:10": { + "questID:3": 139, + "preRequisites:11": [ + 137 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:wireless_access_point", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "获得无线", + "desc:8": "通向无线之路会需要的一些物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:wireless_access_point", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 41, + "OreDict:8": "" + }, + "2:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 42, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "140:10": { + "questID:3": 140, + "preRequisites:11": [ + 139 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "ae2stuff:wireless", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "部署无线系统", + "desc:8": "按如下说明使用 - 放置2个无线接入器,然后使用无线设置工具右键它们\n \n连接是点对点的 - 所以你不能连接超过2个方块\n\n每个方块会使用10+距离 AE/t的能量(可配置)\n\n能量只需要向其中一个提供\n\n如果任何一个的网络中有安全终端 - 就需要为连接建立权限\n\n连接最多能够传输32个频道\n\n无线接入器可以直接连接到密集线缆上" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "ae2stuff:wireless", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2stuff:wireless_kit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "141:10": { + "questID:3": 141, + "preRequisites:11": [ + 73 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:fertilizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "花肥", + "desc:8": "阅读植魔辞典获取更多相关内容。神秘花不会自然生成。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:fertilizer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "142:10": { + "questID:3": 142, + "preRequisites:11": [ + 141 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "纯洁的花", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "puredaisy" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "143:10": { + "questID:3": 143, + "preRequisites:11": [ + 142 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "endoflame" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "烧然产魔", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "endoflame" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "144:10": { + "questID:3": 144, + "preRequisites:11": [ + 142 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "arcanerose" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "经验产魔", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "arcanerose" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "145:10": { + "questID:3": 145, + "preRequisites:11": [ + 142 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:livingrock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "活石", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:livingrock", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "146:10": { + "questID:3": 146, + "preRequisites:11": [ + 142 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:livingwood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "活木", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:livingwood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "147:10": { + "questID:3": 147, + "preRequisites:11": [ + 145 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔力池", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "148:10": { + "questID:3": 148, + "preRequisites:11": [ + 146 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:spreader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔力发射器", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:spreader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "149:10": { + "questID:3": 149, + "preRequisites:11": [ + 145 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:runealtar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "符文祭坛", + "desc:8": "用于制作各种符文" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:runealtar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "150:10": { + "questID:3": 150, + "preRequisites:11": [ + 146 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:turntable", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔力发射器旋转台", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:turntable", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "151:10": { + "questID:3": 151, + "preRequisites:11": [ + 147, + 148 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔材料", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "152:10": { + "questID:3": 152, + "preRequisites:11": [ + 151 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:terraplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "泰拉钢", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:spark", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:terraplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:livingrock", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:lapis_block", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "153:10": { + "questID:3": 153, + "preRequisites:11": [ + 154 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "与精灵交易", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "154:10": { + "questID:3": 154, + "preRequisites:11": [ + 152 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:livingwood", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精灵门", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:livingwood", + "Count:3": 3, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:livingwood", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:alfheimportal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "155:10": { + "questID:3": 155, + "preRequisites:11": [ + 149 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "元素符文", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "156:10": { + "questID:3": 156, + "preRequisites:11": [ + 149 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "季节符文", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "157:10": { + "questID:3": 157, + "preRequisites:11": [ + 149 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "七宗罪符文", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "1:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "2:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "4:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "5:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "6:10": { + "id:8": "botania:rune", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "158:10": { + "questID:3": 158, + "preRequisites:11": [ + 147 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:alchemycatalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炼金催化器", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:alchemycatalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "159:10": { + "questID:3": 159, + "preRequisites:11": [ + 153 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:conjurationcatalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炼造催化器", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:conjurationcatalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "160:10": { + "questID:3": 160, + "preRequisites:11": [ + 142 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "orechid" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "凝矿兰", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "orechid" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "161:10": { + "questID:3": 161, + "preRequisites:11": [ + 142 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "jadedAmaranthus" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "翡翠苋", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:specialflower", + "Count:3": 1, + "tag:10": { + "type:8": "jadedAmaranthus" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "162:10": { + "questID:3": 162, + "preRequisites:11": [ + 153 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:gaiahead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "盖亚守卫", + "desc:8": "阅读植魔辞典获取更多相关内容." + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "playerCount:3": 0, + "RelativeAABB:9": { + "0:6": -0.30000001192092896, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092896, + "4:6": 1.7999999523162842, + "5:6": 0.30000001192092896 + }, + "invulTime:3": 0, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 320.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 1.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.4, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 16.0, + "Name:8": "generic.followRange" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "hardMode:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 16000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "botania:doppleganger", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "mobSpawnTicks:3": 0, + "sourceX:3": 0, + "sourceY:3": 0, + "Leashed:1": 0, + "UUIDLeast:4": -7672141722484558791, + "Health:5": 320.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 2.9085798, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 913766098019961241, + "sourcesZ:3": 0, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "aggro:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "botania:doppleganger", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "163:10": { + "questID:3": 163, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:skull", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "给我头,球球了", + "desc:8": "击杀凋零骷髅并获得它们的头" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:skull", + "Count:3": 3, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "164:10": { + "questID:3": 164, + "preRequisites:11": [ + 163 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:stuff", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "凋灵", + "desc:8": "蹭个眼熟而已" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:nether_star", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "netherStar" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "165:10": { + "questID:3": 165, + "preRequisites:11": [ + 41 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mob_grinding_utils:spikes", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Mob Grinding Utlilities", + "desc:8": "自动杀怪" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mob_grinding_utils:spikes", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "mob_grinding_utils:absorption_hopper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "mob_grinding_utils:fan", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "mob_grinding_utils:tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "166:10": { + "questID:3": 166, + "preRequisites:11": [ + 165 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mob_grinding_utils:saw", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "怪物捣碎器", + "desc:8": "伤害靠近的怪物。可以用特定的升级来增强其功能。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mob_grinding_utils:saw", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "167:10": { + "questID:3": 167, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:sluice_box", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水力筛子", + "desc:8": "需要水来使用它。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:sluice_box", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "168:10": { + "questID:3": 168, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "热力框架", + "desc:8": "制作TE机器的必需品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "169:10": { + "questID:3": 169, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石炉", + "desc:8": "消耗能量的熔炉。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "170:10": { + "questID:3": 170, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "磨粉机", + "desc:8": "粉碎物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "171:10": { + "questID:3": 171, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "感应炉", + "desc:8": "可以输入两种物品的机器,用于合金或烧炼物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "172:10": { + "questID:3": 172, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "熔岩炉", + "desc:8": "将物品熔成流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "173:10": { + "questID:3": 173, + "preRequisites:11": [ + 172 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流体转置机", + "desc:8": "控制流体或存储流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "174:10": { + "questID:3": 174, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "造石机", + "desc:8": "混合冷热流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "175:10": { + "questID:3": 175, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "打包机", + "desc:8": "打包物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "176:10": { + "questID:3": 176, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "离心机", + "desc:8": "将物品分离。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 3, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "177:10": { + "questID:3": 177, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 2, + 3, + 3, + 3, + 3 + ], + "Level:1": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流体精炼机", + "desc:8": "将流体精炼成其他产物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 2, + 3, + 3, + 3, + 3 + ], + "Level:1": 0 + }, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "178:10": { + "questID:3": 178, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "冷冻机", + "desc:8": "将流体冰冻成固体。可以防止你找不到冰原群系而无法获得雪或冰。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:machine", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 0, + "Energy:3": 0, + "SideCache:7": [ + 1, + 1, + 2, + 2, + 2, + 2 + ], + "Level:1": 0 + }, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "179:10": { + "questID:3": 179, + "preRequisites:11": [ + 175 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:augment", + "Count:3": 1, + "Damage:2": 336, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "货币升级", + "desc:8": "压缩机的升级,可以将金属压制成货币。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:augment", + "Count:3": 1, + "Damage:2": 336, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "180:10": { + "questID:3": 180, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "殷钢升级", + "desc:8": "基础 \u003e 硬化" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "181:10": { + "questID:3": 181, + "preRequisites:11": [ + 180 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金升级", + "desc:8": "硬化 \u003e 强化" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "182:10": { + "questID:3": 182, + "preRequisites:11": [ + 181 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "信素升级", + "desc:8": "强化 \u003e 信素" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "183:10": { + "questID:3": 183, + "preRequisites:11": [ + 182 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影升级", + "desc:8": "信素 \u003e 谐振" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "184:10": { + "questID:3": 184, + "preRequisites:11": [ + 181 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 33, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金转换", + "desc:8": "立即升级到强化等级。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 33, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "185:10": { + "questID:3": 185, + "preRequisites:11": [ + 184 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "信素转换", + "desc:8": "立即升级到信素等级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "186:10": { + "questID:3": 186, + "preRequisites:11": [ + 185 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影转换", + "desc:8": "立即升级到谐振等级。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:upgrade", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "187:10": { + "questID:3": 187, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:augment", + "Count:3": 1, + "Damage:2": 129, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "第二输出升级", + "desc:8": "按住shift查看它有什么用(标题已经很明显了)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:augment", + "Count:3": 1, + "Damage:2": 129, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "188:10": { + "questID:3": 188, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:augment", + "Count:3": 1, + "Damage:2": 128, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "速度升级", + "desc:8": "按住shift查看它有什么用(标题已经很明显了)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:augment", + "Count:3": 1, + "Damage:2": 128, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "189:10": { + "questID:3": 189, + "preRequisites:11": [ + 2 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "shardProsperity" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础精华", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "190:10": { + "questID:3": 190, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础精华种子", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "191:10": { + "questID:3": 191, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:tier1_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下级精华种子", + "desc:8": "给予1个下级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:tier1_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "192:10": { + "questID:3": 192, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下级精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "essenceInferium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "193:10": { + "questID:3": 193, + "preRequisites:11": [ + 190 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "一级合成种子", + "desc:8": "用来合成1级种子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "194:10": { + "questID:3": 194, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "二级合成种子", + "desc:8": "用来合成2级种子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "195:10": { + "questID:3": 195, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "三级合成种子", + "desc:8": "用来合成3级种子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "196:10": { + "questID:3": 196, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "四级合成种子", + "desc:8": "用来合成4级种子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "197:10": { + "questID:3": 197, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 21, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "五级合成种子", + "desc:8": "用来合成5级种子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 21, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "198:10": { + "questID:3": 198, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "六级合成种子", + "desc:8": "用来合成6级种子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "199:10": { + "questID:3": 199, + "preRequisites:11": [ + 191 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:tier2_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "初级精华种子", + "desc:8": "给予2个下级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:tier2_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "200:10": { + "questID:3": 200, + "preRequisites:11": [ + 199 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:tier3_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中级精华种子", + "desc:8": "给予3个下级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:tier3_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "201:10": { + "questID:3": 201, + "preRequisites:11": [ + 200 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:tier4_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级精华种子", + "desc:8": "给予4个下级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:tier4_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "202:10": { + "questID:3": 202, + "preRequisites:11": [ + 201 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:tier5_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极精华种子", + "desc:8": "给予5个下级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:tier5_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "203:10": { + "questID:3": 203, + "preRequisites:11": [ + 202 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:tier6_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "究极精华种子", + "desc:8": "给予6个下级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:tier6_inferium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "204:10": { + "questID:3": 204, + "preRequisites:11": [ + 1062 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:infusion_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灌注", + "desc:8": "将所有精华变为更高级的精华,消耗耐久。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:infusion_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "205:10": { + "questID:3": 205, + "preRequisites:11": [ + 192 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "初级精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "206:10": { + "questID:3": 206, + "preRequisites:11": [ + 205 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中级精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "207:10": { + "questID:3": 207, + "preRequisites:11": [ + 206 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "208:10": { + "questID:3": 208, + "preRequisites:11": [ + 207 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超级精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "209:10": { + "questID:3": 209, + "preRequisites:11": [ + 208 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "究极精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:insanium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "210:10": { + "questID:3": 210, + "preRequisites:11": [ + 204 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:master_infusion_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大师灌注", + "desc:8": "拥有无限耐久。究极精华 -\u003e 创造" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:master_infusion_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "211:10": { + "questID:3": 211, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:dirt_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "泥土种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:dirt_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "212:10": { + "questID:3": 212, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:nature_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "自然种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:nature_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "213:10": { + "questID:3": 213, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:stone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "石头种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:stone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "214:10": { + "questID:3": 214, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:wood_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "木头种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:wood_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "215:10": { + "questID:3": 215, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:zombie_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "僵尸种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:zombie_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "216:10": { + "questID:3": 216, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:water_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:water_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "217:10": { + "questID:3": 217, + "preRequisites:11": [ + 193 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:ice_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "冰种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:ice_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "218:10": { + "questID:3": 218, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:fire_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "火种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:fire_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "219:10": { + "questID:3": 219, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:dye_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "染料种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:dye_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "220:10": { + "questID:3": 220, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:nether_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下界种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:nether_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "221:10": { + "questID:3": 221, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:coal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "煤炭种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:coal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "222:10": { + "questID:3": 222, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:pig_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "猪种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:pig_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "223:10": { + "questID:3": 223, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:chicken_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "鸡种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:chicken_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "224:10": { + "questID:3": 224, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:sheep_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "羊种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:sheep_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "225:10": { + "questID:3": 225, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:slime_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "史莱姆种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:slime_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "226:10": { + "questID:3": 226, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:silicon_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硅种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:silicon_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "227:10": { + "questID:3": 227, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:sulfur_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硫磺种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:sulfur_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "228:10": { + "questID:3": 228, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:aluminum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铝种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:aluminum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "229:10": { + "questID:3": 229, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:copper_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铜种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:copper_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "230:10": { + "questID:3": 230, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:aluminum_brass_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铝黄铜种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:aluminum_brass_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "231:10": { + "questID:3": 231, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:cow_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "牛种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:cow_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "232:10": { + "questID:3": 232, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:mystical_flower_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神秘花种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:mystical_flower_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "233:10": { + "questID:3": 233, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:limestone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "石灰石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:limestone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "234:10": { + "questID:3": 234, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:basalt_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "玄武岩种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:basalt_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "235:10": { + "questID:3": 235, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:marble_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大理石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:marble_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "236:10": { + "questID:3": 236, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:redstone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:redstone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "237:10": { + "questID:3": 237, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:glowstone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "荧石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:glowstone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "238:10": { + "questID:3": 238, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:nether_quartz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下界石英种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:nether_quartz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "239:10": { + "questID:3": 239, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:obsidian_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑曜石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:obsidian_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "240:10": { + "questID:3": 240, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:skeleton_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "骷髅种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:skeleton_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "241:10": { + "questID:3": 241, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "242:10": { + "questID:3": 242, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:creeper_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "苦力怕种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:creeper_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "243:10": { + "questID:3": 243, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:spider_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蜘蛛种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:spider_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "244:10": { + "questID:3": 244, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:rabbit_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "兔子种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:rabbit_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "245:10": { + "questID:3": 245, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:guardian_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "守卫者种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:guardian_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "246:10": { + "questID:3": 246, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:saltpeter_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硝石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:saltpeter_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "247:10": { + "questID:3": 247, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:tin_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锡种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:tin_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "248:10": { + "questID:3": 248, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:blizz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "暴雪人种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:blizz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "249:10": { + "questID:3": 249, + "preRequisites:11": [ + 192 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精华水壶", + "desc:8": "理论上拥有无限的水,范围1x1。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "250:10": { + "questID:3": 250, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:blitz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "狂风人种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:blitz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "251:10": { + "questID:3": 251, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:knightslime_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "骑士史莱姆种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:knightslime_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "252:10": { + "questID:3": 252, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:basalz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "岩石人种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:basalz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "253:10": { + "questID:3": 253, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:silver_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "银种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:silver_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "254:10": { + "questID:3": 254, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:bronze_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青铜种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:bronze_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "255:10": { + "questID:3": 255, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:lead_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铅种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:lead_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "256:10": { + "questID:3": 256, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:ardite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "阿迪特种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:ardite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "257:10": { + "questID:3": 257, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:black_quartz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "焦黑石英种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:black_quartz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "258:10": { + "questID:3": 258, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:manasteel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔力钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:manasteel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "259:10": { + "questID:3": 259, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:steeleaf_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢叶种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:steeleaf_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "260:10": { + "questID:3": 260, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:aquamarine_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "海蓝宝石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:aquamarine_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "261:10": { + "questID:3": 261, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:ender_biotite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影云母种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:ender_biotite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "262:10": { + "questID:3": 262, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:ironwood_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁木种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:ironwood_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "263:10": { + "questID:3": 263, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:sky_stone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "陨石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:sky_stone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "264:10": { + "questID:3": 264, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:certus_quartz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "赛特斯种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:certus_quartz_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "265:10": { + "questID:3": 265, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:lapis_lazuli_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青金石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:lapis_lazuli_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "266:10": { + "questID:3": 266, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:gold_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:gold_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "267:10": { + "questID:3": 267, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:end_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末地种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:end_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "268:10": { + "questID:3": 268, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:experience_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "经验种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:experience_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "269:10": { + "questID:3": 269, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:blaze_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "烈焰人种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:blaze_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "270:10": { + "questID:3": 270, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:ghast_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恶魂种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:ghast_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "271:10": { + "questID:3": 271, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:enderman_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影人种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:enderman_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "272:10": { + "questID:3": 272, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "273:10": { + "questID:3": 273, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:nickel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "镍种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:nickel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "274:10": { + "questID:3": 274, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:signalum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "信素种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:signalum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "275:10": { + "questID:3": 275, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:lumium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流明种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:lumium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "276:10": { + "questID:3": 276, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:cobalt_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钴种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:cobalt_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "277:10": { + "questID:3": 277, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:constantan_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "康铜种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:constantan_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "278:10": { + "questID:3": 278, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:electrum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:electrum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "279:10": { + "questID:3": 279, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:invar_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "殷钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:invar_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "280:10": { + "questID:3": 280, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:mithril_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "秘银种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:mithril_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "281:10": { + "questID:3": 281, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:elementium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "源质钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:elementium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "282:10": { + "questID:3": 282, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:osmium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锇种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:osmium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "283:10": { + "questID:3": 283, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:glowstone_ingot_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化荧石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:glowstone_ingot_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "284:10": { + "questID:3": 284, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:knightmetal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "骑士金属种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:knightmetal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "285:10": { + "questID:3": 285, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:fiery_ingot_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炽铁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:fiery_ingot_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "286:10": { + "questID:3": 286, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:starmetal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星辉锭种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:starmetal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "287:10": { + "questID:3": 287, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:fluix_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "福鲁伊克斯种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:fluix_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "288:10": { + "questID:3": 288, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:uranium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铀种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:uranium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "289:10": { + "questID:3": 289, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:platinum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铂种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:platinum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "290:10": { + "questID:3": 290, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:iridium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铱种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:iridium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "291:10": { + "questID:3": 291, + "preRequisites:11": [ + 249 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tp:watering_can", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水壶", + "desc:8": "理论上有无限的水,范围3x3" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tp:watering_can", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "292:10": { + "questID:3": 292, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:wither_skeleton_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "凋零骷髅种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:wither_skeleton_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "293:10": { + "questID:3": 293, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:emerald_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:emerald_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "294:10": { + "questID:3": 294, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:diamond_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:diamond_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "295:10": { + "questID:3": 295, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:enderium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:enderium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "296:10": { + "questID:3": 296, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:manyullyn_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "马玉灵种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:manyullyn_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "297:10": { + "questID:3": 297, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:terrasteel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "泰拉钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:terrasteel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "298:10": { + "questID:3": 298, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:rock_crystal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水晶石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:rock_crystal_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "299:10": { + "questID:3": 299, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:refined_obsidian_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化黑曜石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:refined_obsidian_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "300:10": { + "questID:3": 300, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:draconium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "龙种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:draconium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "301:10": { + "questID:3": 301, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:yellorium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄铀种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:yellorium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "302:10": { + "questID:3": 302, + "preRequisites:11": [ + 198, + 305 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:awakened_draconium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "觉醒龙种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:awakened_draconium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "303:10": { + "questID:3": 303, + "preRequisites:11": [ + 198, + 304 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:nether_star_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下界之星种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:nether_star_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "304:10": { + "questID:3": 304, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下界之星核心", + "desc:8": "放置在种植下界之星种子的耕地下。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "305:10": { + "questID:3": 305, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "觉醒龙核心", + "desc:8": "放置在种植觉醒龙种子的耕地下。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "306:10": { + "questID:3": 306, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础精华锭", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "307:10": { + "questID:3": 307, + "preRequisites:11": [ + 306 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "离魂锭", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:crafting", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "308:10": { + "questID:3": 308, + "preRequisites:11": [ + 306 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:seed_reprocessor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "种子再处理器", + "desc:8": "将种子转换成对应产物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:seed_reprocessor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "309:10": { + "questID:3": 309, + "preRequisites:11": [ + 135 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumstorage:quantum_storage_unit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子存储", + "desc:8": "容量超级大的一格存储容器。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumstorage:quantum_storage_unit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "310:10": { + "questID:3": 310, + "preRequisites:11": [ + 309 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumstorage:quantum_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子储罐", + "desc:8": "容量超级大的流体储罐" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumstorage:quantum_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "311:10": { + "questID:3": 311, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "1K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 35, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "312:10": { + "questID:3": 312, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 54, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "1K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 54, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "313:10": { + "questID:3": 313, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "1K气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "314:10": { + "questID:3": 314, + "preRequisites:11": [ + 311 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "4K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "315:10": { + "questID:3": 315, + "preRequisites:11": [ + 314 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "16K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "316:10": { + "questID:3": 316, + "preRequisites:11": [ + 315 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "64K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "317:10": { + "questID:3": 317, + "preRequisites:11": [ + 316 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "256K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "318:10": { + "questID:3": 318, + "preRequisites:11": [ + 317 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "1024K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "319:10": { + "questID:3": 319, + "preRequisites:11": [ + 318 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "4096K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "320:10": { + "questID:3": 320, + "preRequisites:11": [ + 319 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "16384K物品存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "321:10": { + "questID:3": 321, + "preRequisites:11": [ + 312 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 55, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "4K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 55, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "322:10": { + "questID:3": 322, + "preRequisites:11": [ + 321 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 56, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "16K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 56, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "323:10": { + "questID:3": 323, + "preRequisites:11": [ + 322 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 57, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "64K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:material", + "Count:3": 1, + "Damage:2": 57, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "324:10": { + "questID:3": 324, + "preRequisites:11": [ + 323 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "256K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "325:10": { + "questID:3": 325, + "preRequisites:11": [ + 324 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "1024K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "326:10": { + "questID:3": 326, + "preRequisites:11": [ + 313 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "4K气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "327:10": { + "questID:3": 327, + "preRequisites:11": [ + 326 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "16k气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "328:10": { + "questID:3": 328, + "preRequisites:11": [ + 327 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "64K气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "329:10": { + "questID:3": 329, + "preRequisites:11": [ + 328 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "256K气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "330:10": { + "questID:3": 330, + "preRequisites:11": [ + 329 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "1024K气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "331:10": { + "questID:3": 331, + "preRequisites:11": [ + 325 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "4096K流体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "332:10": { + "questID:3": 332, + "preRequisites:11": [ + 330 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "4096K气体存储", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:storage.component", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "333:10": { + "questID:3": 333, + "preRequisites:11": [ + 134 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:part.base", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "更平的ME驱动器", + "desc:8": "更少的占地,更少的元件插槽" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:part.base", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "334:10": { + "questID:3": 334, + "preRequisites:11": [ + 134 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extracells:hardmedrive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "防爆ME驱动器", + "desc:8": "更少的元件插槽,占地不变,但可以防爆。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extracells:hardmedrive", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "335:10": { + "questID:3": 335, + "preRequisites:11": [ + 139 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:wireless_terminal", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无线终端", + "desc:8": "随时随地访问你的ME网络。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "appliedenergistics2:wireless_terminal", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "336:10": { + "questID:3": 336, + "preRequisites:11": [ + 335 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无线合成终端", + "desc:8": "随时随地打开ME网络合成物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:3": 1, + "tag:10": { + "InfinityEnergy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "337:10": { + "questID:3": 337, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "appliedenergistics2:creative_energy_cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒电池", + "desc:8": "无限AE能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "appliedenergistics2:creative_energy_cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "338:10": { + "questID:3": 338, + "preRequisites:11": [ + 347 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒魔力池", + "desc:8": "无限魔力" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "botania:pool", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "339:10": { + "questID:3": 339, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extrautils2:passivegenerator", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒发电机", + "desc:8": "无限GP" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extrautils2:passivegenerator", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "340:10": { + "questID:3": 340, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "compacter:cobbler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒圆石生产", + "desc:8": "比绿宝石造石机还要快" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "compacter:cobbler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "341:10": { + "questID:3": 341, + "preRequisites:11": [ + 347 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "embers:creative_ember_source", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒余烬", + "desc:8": "无限的余烬能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "embers:creative_ember_source", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "342:10": { + "questID:3": 342, + "preRequisites:11": [ + 343 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:turbinecreativesteamgenerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒蒸汽机", + "desc:8": "在涡轮机内产生无限的蒸汽" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:turbinecreativesteamgenerator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "343:10": { + "questID:3": 343, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:reactorcreativecoolantport", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒冷却端口", + "desc:8": "无限为反应堆提供水" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:reactorcreativecoolantport", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "344:10": { + "questID:3": 344, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "overloaded:creative_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒能源", + "desc:8": "无限RF能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "overloaded:creative_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "345:10": { + "questID:3": 345, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tconstruct:materials", + "Count:3": 1, + "Damage:2": 50, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒强化", + "desc:8": "为你的匠魂工具增加强化槽" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tconstruct:materials", + "Count:3": 1, + "Damage:2": 50, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "346:10": { + "questID:3": 346, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 4, + "mekData:10": {} + }, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒储罐", + "desc:8": "产生无限流体的储罐" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 4 + }, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "347:10": { + "questID:3": 347, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:crafting_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔法与科技的碰撞", + "desc:8": "基座必须在同一高度,最大间隔为3格。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:crafting_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "extendedcrafting:pedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "348:10": { + "questID:3": 348, + "preRequisites:11": [ + 349 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础合成部件", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "349:10": { + "questID:3": 349, + "preRequisites:11": [ + 350 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石合成部件", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "350:10": { + "questID:3": 350, + "preRequisites:11": [ + 351 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石合成部件", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "351:10": { + "questID:3": 351, + "preRequisites:11": [ + 352 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金合成部件", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "352:10": { + "questID:3": 352, + "preRequisites:11": [ + 1061 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁合成部件", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "353:10": { + "questID:3": 353, + "preRequisites:11": [ + 1061 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁合成催化剂", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "354:10": { + "questID:3": 354, + "preRequisites:11": [ + 353 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金合成催化剂", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "355:10": { + "questID:3": 355, + "preRequisites:11": [ + 354 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石合成催化剂", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "356:10": { + "questID:3": 356, + "preRequisites:11": [ + 355 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石合成催化剂", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "357:10": { + "questID:3": 357, + "preRequisites:11": [ + 356 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础合成催化剂", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "358:10": { + "questID:3": 358, + "preRequisites:11": [ + 357 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极合成催化剂", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "359:10": { + "questID:3": 359, + "preRequisites:11": [ + 348 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极合成部件", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "360:10": { + "questID:3": 360, + "preRequisites:11": [ + 352, + 353 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:table_basic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "3x3扩展合成", + "desc:8": "支持9个物品合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:table_basic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "361:10": { + "questID:3": 361, + "preRequisites:11": [ + 360 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:table_advanced", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "5x5扩展合成", + "desc:8": "支持25个物品合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:table_advanced", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "362:10": { + "questID:3": 362, + "preRequisites:11": [ + 361 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:table_elite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "7x7扩展合成", + "desc:8": "支持49个物品合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:table_elite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "363:10": { + "questID:3": 363, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:table_ultimate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "9x9扩展合成", + "desc:8": "支持81个物品合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:table_ultimate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "364:10": { + "questID:3": 364, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "量子压缩机", + "desc:8": "将金属块超级压缩成奇点。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "365:10": { + "questID:3": 365, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_ultimate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极奇点", + "desc:8": "万物归一" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_ultimate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 35, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "366:10": { + "questID:3": 366, + "preRequisites:11": [ + 361 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:interface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "扩展合成自动化", + "desc:8": "扩展合成的自动化。\n\n§b如果扩展合成桌拒绝合成某个配方,使用自动接口来强制让它合成。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:interface", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "367:10": { + "questID:3": 367, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶素锭", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 24, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "368:10": { + "questID:3": 368, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极锭", + "desc:8": "终极一定少于无限吗?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "369:10": { + "questID:3": 369, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 66, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "马玉灵奇点", + "desc:8": "马玉灵块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 66, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "370:10": { + "questID:3": 370, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 65, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钴奇点", + "desc:8": "钴块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 65, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "371:10": { + "questID:3": 371, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 64, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "阿迪特奇点", + "desc:8": "阿迪特块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 64, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "372:10": { + "questID:3": 372, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 50, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影钢奇点", + "desc:8": "末影钢奇点" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 50, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "373:10": { + "questID:3": 373, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 49, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流明奇点", + "desc:8": "流明块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 49, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "374:10": { + "questID:3": 374, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 48, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "信素奇点", + "desc:8": "信素块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 48, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "375:10": { + "questID:3": 375, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 35, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铱奇点", + "desc:8": "铱块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 35, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "376:10": { + "questID:3": 376, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 22, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "银奇点", + "desc:8": "银块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 22, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "377:10": { + "questID:3": 377, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 34, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铂奇点", + "desc:8": "铂块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 34, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "378:10": { + "questID:3": 378, + "preRequisites:11": [ + 1060 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 53, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灵魂框架", + "desc:8": "用于灵魂绑定器和头颅装配机。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 53, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "379:10": { + "questID:3": 379, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 20, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锌奇点", + "desc:8": "锌块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 20, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "380:10": { + "questID:3": 380, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青铜奇点", + "desc:8": "青铜块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "381:10": { + "questID:3": 381, + "preRequisites:11": [ + 194 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:grains_of_infinity_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基岩粉种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:grains_of_infinity_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "382:10": { + "questID:3": 382, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 32, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铀奇点", + "desc:8": "铀块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 32, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "383:10": { + "questID:3": 383, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 31, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钛奇点", + "desc:8": "钛块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 31, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "384:10": { + "questID:3": 384, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石奇点", + "desc:8": "钻石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "385:10": { + "questID:3": 385, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青金石奇点", + "desc:8": "青金石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "386:10": { + "questID:3": 386, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁奇点", + "desc:8": "铁块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "387:10": { + "questID:3": 387, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "煤炭奇点", + "desc:8": "煤炭块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "388:10": { + "questID:3": 388, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 30, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钨奇点", + "desc:8": "钨块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 30, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "389:10": { + "questID:3": 389, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锡奇点", + "desc:8": "锡块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "390:10": { + "questID:3": 390, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铜奇点", + "desc:8": "铜块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "391:10": { + "questID:3": 391, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铝奇点", + "desc:8": "铝块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "392:10": { + "questID:3": 392, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石奇点", + "desc:8": "绿宝石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "393:10": { + "questID:3": 393, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金奇点", + "desc:8": "金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "394:10": { + "questID:3": 394, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "荧石奇点", + "desc:8": "荧石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "395:10": { + "questID:3": 395, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石奇点", + "desc:8": "红石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "396:10": { + "questID:3": 396, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 29, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "秘银奇点", + "desc:8": "秘银块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 29, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "397:10": { + "questID:3": 397, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 28, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "殷钢奇点", + "desc:8": "殷钢块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 28, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "398:10": { + "questID:3": 398, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 27, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金奇点", + "desc:8": "琥珀金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 27, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "399:10": { + "questID:3": 399, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 26, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "康铜奇点", + "desc:8": "康铜块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 26, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "400:10": { + "questID:3": 400, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 25, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "镍奇点", + "desc:8": "镍块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 25, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "401:10": { + "questID:3": 401, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 24, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢奇点", + "desc:8": "钢块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 24, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "402:10": { + "questID:3": 402, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 23, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铅奇点", + "desc:8": "铅块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity", + "Count:3": 64, + "Damage:2": 23, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "403:10": { + "questID:3": 403, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:tree_fluid_extractor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "树液提取器", + "desc:8": "从原木中提取树液" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:tree_fluid_extractor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "404:10": { + "questID:3": 404, + "preRequisites:11": [ + 403 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:latex_processing_unit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "胶乳加工机", + "desc:8": "将树液处理成橡胶" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:latex_processing_unit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "405:10": { + "questID:3": 405, + "preRequisites:11": [ + 404 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:animal_resource_harvester", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "牧场主", + "desc:8": "从动物身上提取资源" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:animal_resource_harvester", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "406:10": { + "questID:3": 406, + "preRequisites:11": [ + 404 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:crop_sower", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "种植机", + "desc:8": "在一定范围内自动种植作物" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:crop_sower", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "407:10": { + "questID:3": 407, + "preRequisites:11": [ + 404 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:mob_relocator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粉碎怪物", + "desc:8": "自动击杀前方一定范围内的怪物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:mob_relocator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "408:10": { + "questID:3": 408, + "preRequisites:11": [ + 407 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:mob_slaughter_factory", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "屠宰场", + "desc:8": "粉史莱姆生产第一人" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:mob_slaughter_factory", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "409:10": { + "questID:3": 409, + "preRequisites:11": [ + 406 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:crop_recolector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "收获之日", + "desc:8": "自动收获前方一定范围内的作物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:crop_recolector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "410:10": { + "questID:3": 410, + "preRequisites:11": [ + 409 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:sludge_refiner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精炼污泥", + "desc:8": "将污泥转换成其他有用的?东西。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:sludge_refiner", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "411:10": { + "questID:3": 411, + "preRequisites:11": [ + 403 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子比特簇 I", + "desc:8": "能量存储" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "412:10": { + "questID:3": 412, + "preRequisites:11": [ + 407 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:mob_duplicator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "复制怪物", + "desc:8": "能够使用机器内怪物相关的物品复制粘贴怪物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:mob_duplicator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "413:10": { + "questID:3": 413, + "preRequisites:11": [ + 404 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "industrialforegoing:wither_builder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "调灵搭建器", + "desc:8": "搭建并召唤调灵" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "industrialforegoing:wither_builder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "414:10": { + "questID:3": 414, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "dimensionaledibles:end_cake", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末地", + "desc:8": "食用末地蛋糕前往末地。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "dimensionaledibles:end_cake", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "415:10": { + "questID:3": 415, + "preRequisites:11": [ + 8 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 I", + "desc:8": "产生 1 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "416:10": { + "questID:3": 416, + "preRequisites:11": [ + 415 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 II", + "desc:8": "产生 8 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "417:10": { + "questID:3": 417, + "preRequisites:11": [ + 416 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 III", + "desc:8": "产生 32 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "418:10": { + "questID:3": 418, + "preRequisites:11": [ + 417 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 IV", + "desc:8": "产生 128 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "419:10": { + "questID:3": 419, + "preRequisites:11": [ + 418 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 V", + "desc:8": "产生 512 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "420:10": { + "questID:3": 420, + "preRequisites:11": [ + 419 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 VI", + "desc:8": "产生 2048 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "421:10": { + "questID:3": 421, + "preRequisites:11": [ + 420 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_7", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 VII", + "desc:8": "产生 8192 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_7", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "422:10": { + "questID:3": 422, + "preRequisites:11": [ + 421 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能 VIII", + "desc:8": "产生 32768 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "423:10": { + "questID:3": 423, + "preRequisites:11": [ + 422 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_wyvern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Wyvern 太阳能", + "desc:8": "产生 65536 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_wyvern", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "424:10": { + "questID:3": 424, + "preRequisites:11": [ + 423 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_draconic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Draconic 太阳能", + "desc:8": "产生 262144 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_draconic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "425:10": { + "questID:3": 425, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_philosophers_stone", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "贤者之石", + "desc:8": "能够用来进行基础嬗变或转换实体。\n\nKappa 模式中:贤者之石会在某些配方中消耗掉。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_philosophers_stone", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "426:10": { + "questID:3": 426, + "preRequisites:11": [ + 425 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projecte:transmutation_table", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "嬗变之桌", + "desc:8": "当你有足够多的EMC时,你就能够获得几乎无尽的转换桌内的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projecte:transmutation_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "427:10": { + "questID:3": 427, + "preRequisites:11": [ + 426 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_transmutation_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "嬗变板", + "desc:8": "移动式转换桌" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_transmutation_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "428:10": { + "questID:3": 428, + "preRequisites:11": [ + 425 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projecte:item.pe_matter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑暗物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projecte:item.pe_matter", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "429:10": { + "questID:3": 429, + "preRequisites:11": [ + 428 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projecte:item.pe_matter", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projecte:item.pe_matter", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "430:10": { + "questID:3": 430, + "preRequisites:11": [ + 425 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projecte:condenser_mk1", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "能量凝聚器 MK1", + "desc:8": "指定一个物品,并放入任何带有EMC的物品,凝聚器就会开始吸收EMC复制指定的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projecte:condenser_mk1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "431:10": { + "questID:3": 431, + "preRequisites:11": [ + 430 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projecte:condenser_mk2", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "能量凝聚器 MK2", + "desc:8": "使用EMC生成物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projecte:condenser_mk2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "432:10": { + "questID:3": 432, + "preRequisites:11": [ + 425 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_alchemical_bag", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炼金袋子", + "desc:8": "就算你把袋子丢了,你的物品还会待在相同颜色的袋子里。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_alchemical_bag", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "bagAlchemical" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "433:10": { + "questID:3": 433, + "preRequisites:11": [ + 427 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_tome", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "万物之书", + "desc:8": "在转换桌或转换板内解锁所有带有EMC的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_tome", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 35, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "434:10": { + "questID:3": 434, + "preRequisites:11": [ + 429 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_katar", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "拳剑", + "desc:8": "强力的多合一工具,能够屠杀你周围的敌人。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_katar", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "435:10": { + "questID:3": 435, + "preRequisites:11": [ + 429 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_morning_star", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钉头锤", + "desc:8": "强力的多合一工具" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_morning_star", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "436:10": { + "questID:3": 436, + "preRequisites:11": [ + 425 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projecte:item.pe_covalence_dust", + "Count:3": 64, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "共价粉", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projecte:item.pe_covalence_dust", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "projecte:item.pe_covalence_dust", + "Count:3": 64, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "projecte:item.pe_covalence_dust", + "Count:3": 64, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "437:10": { + "questID:3": 437, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:electrotine_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝石粉种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:electrotine_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "438:10": { + "questID:3": 438, + "preRequisites:11": [ + 8 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:itemmodularium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "模块化合金锭", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:itemmodularium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "439:10": { + "questID:3": 440, + "preRequisites:11": [ + 438 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "模块化控制器", + "desc:8": "多方块部件" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "3:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "4:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "5:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "6:10": { + "id:8": "modularmachinery:blockcasing", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "440:10": { + "questID:3": 442, + "preRequisites:11": [ + 438 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "微型物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "441:10": { + "questID:3": 448, + "preRequisites:11": [ + 442 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "小型物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "442:10": { + "questID:3": 449, + "preRequisites:11": [ + 448 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "普通物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "443:10": { + "questID:3": 450, + "preRequisites:11": [ + 449 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "444:10": { + "questID:3": 451, + "preRequisites:11": [ + 450 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大型物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "445:10": { + "questID:3": 452, + "preRequisites:11": [ + 451 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "巨型物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "446:10": { + "questID:3": 453, + "preRequisites:11": [ + 452 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超级物品接口", + "desc:8": "多方块部件:物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockoutputbus", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockinputbus", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "447:10": { + "questID:3": 454, + "preRequisites:11": [ + 438 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "微型流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "448:10": { + "questID:3": 455, + "preRequisites:11": [ + 454 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "小型流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "449:10": { + "questID:3": 456, + "preRequisites:11": [ + 455 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "普通流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "450:10": { + "questID:3": 457, + "preRequisites:11": [ + 456 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "451:10": { + "questID:3": 458, + "preRequisites:11": [ + 457 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大型流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "452:10": { + "questID:3": 459, + "preRequisites:11": [ + 458 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "巨型流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "453:10": { + "questID:3": 460, + "preRequisites:11": [ + 459 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超级流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "454:10": { + "questID:3": 461, + "preRequisites:11": [ + 460 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空流体接口", + "desc:8": "多方块部件:流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockfluidoutputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockfluidinputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "455:10": { + "questID:3": 462, + "preRequisites:11": [ + 438 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "微型能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "456:10": { + "questID:3": 463, + "preRequisites:11": [ + 462 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "小型能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "457:10": { + "questID:3": 464, + "preRequisites:11": [ + 463 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "普通能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "458:10": { + "questID:3": 465, + "preRequisites:11": [ + 464 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "459:10": { + "questID:3": 466, + "preRequisites:11": [ + 465 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大型能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "460:10": { + "questID:3": 467, + "preRequisites:11": [ + 466 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "巨型能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "461:10": { + "questID:3": 468, + "preRequisites:11": [ + 467 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超级能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "462:10": { + "questID:3": 469, + "preRequisites:11": [ + 468 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极能量接口", + "desc:8": "多方块部件:能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "modularmachinery:blockenergyoutputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "1:10": { + "id:8": "modularmachinery:blockenergyinputhatch", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "463:10": { + "questID:3": 470, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:thorium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钍种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:thorium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "464:10": { + "questID:3": 472, + "preRequisites:11": [ + 414 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:skull", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影龙", + "desc:8": "也许要杀很多条末影龙" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:dragon_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "dragonEgg" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "465:10": { + "questID:3": 474, + "preRequisites:11": [ + 336, + 85 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2wtlib:wut", + "Count:3": 1, + "tag:10": { + "StoredTerminals:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wpt:wpt", + "Count:1": 1, + "Damage:2": 0 + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wit:wit", + "Count:1": 1, + "Damage:2": 0 + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wft:wft", + "Count:1": 1, + "Damage:2": 0 + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:1": 1, + "Damage:2": 0 + } + }, + "InfinityEnergy:3": 0, + "SelectedTerminal:3": 0, + "internalCurrentPower:6": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无线终极终端", + "desc:8": "如果你有一张无线增幅卡,你可以随时随地访问ME系统。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "ae2wtlib:wut", + "Count:3": 1, + "tag:10": { + "StoredTerminals:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wpt:wpt", + "Count:1": 1, + "Damage:2": 0 + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wit:wit", + "Count:1": 1, + "Damage:2": 0 + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wft:wft", + "Count:1": 1, + "Damage:2": 0 + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "wct:wct", + "Count:1": 1, + "Damage:2": 0 + } + }, + "InfinityEnergy:3": 0, + "SelectedTerminal:3": 0, + "internalCurrentPower:6": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "ae2wtlib:infinity_booster_card", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "wct:magnet_card", + "Count:3": 1, + "tag:10": { + "MagnetMode:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "466:10": { + "questID:3": 475, + "preRequisites:11": [ + 173 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "一级中性钢", + "desc:8": "在流体转置机中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "467:10": { + "questID:3": 476, + "preRequisites:11": [ + 475 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "二级中性钢", + "desc:8": "在流体转置机中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "468:10": { + "questID:3": 477, + "preRequisites:11": [ + 476 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "三级中性钢", + "desc:8": "在流体转置机中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "469:10": { + "questID:3": 478, + "preRequisites:11": [ + 477 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "四级中性钢", + "desc:8": "在流体转置机中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "470:10": { + "questID:3": 479, + "preRequisites:11": [ + 955 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "五级中性钢", + "desc:8": "在合金炉中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "471:10": { + "questID:3": 480, + "preRequisites:11": [ + 479 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "六级中性钢", + "desc:8": "合成获得。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "472:10": { + "questID:3": 481, + "preRequisites:11": [ + 480, + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_7", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "七级中性钢", + "desc:8": "在冶金灌注机里制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_7", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "473:10": { + "questID:3": 482, + "preRequisites:11": [ + 481 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "八级中性钢", + "desc:8": "在化学压射室中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "474:10": { + "questID:3": 483, + "preRequisites:11": [ + 482 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_9", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "九级中性钢", + "desc:8": "在化学压射室中制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_9", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "475:10": { + "questID:3": 484, + "preRequisites:11": [ + 1080 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 20, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 5, + "id:2": 19 + }, + "1:10": { + "lvl:2": 50, + "id:2": 21 + }, + "2:10": { + "lvl:2": 50, + "id:2": 11 + }, + "3:10": { + "lvl:2": 1, + "id:2": 46 + }, + "4:10": { + "lvl:2": 50, + "id:2": 30 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 119" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -1764044997872694150, + "UUIDLeast:4": -5800365910324348553, + "Amount:6": 200.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -7146944196080745787, + "UUIDLeast:4": -4700773529772170414, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -4236202463880395135, + "UUIDLeast:4": -6463913133671878537, + "Amount:6": 20.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 4865830314665132517, + "UUIDLeast:4": -4756975273259061896, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": -6493431471024881010, + "UUIDLeast:4": -5752703724886216720, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Epeolatry V", + "desc:8": "由TheCazadorSniper重铸" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 2000, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "projectred-core:resource_item", + "Count:3": 64, + "Damage:2": 200, + "OreDict:8": "" + }, + "2:10": { + "id:8": "projectred-core:resource_item", + "Count:3": 64, + "Damage:2": 202, + "OreDict:8": "" + }, + "3:10": { + "id:8": "projectred-core:resource_item", + "Count:3": 64, + "Damage:2": 201, + "OreDict:8": "" + }, + "4:10": { + "id:8": "nuclearcraft:gem", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "netherex:rime_crystal", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "gemRime" + }, + "6:10": { + "id:8": "extraplanets:tier7_items", + "Count:3": 64, + "Damage:2": 7, + "OreDict:8": "" + }, + "7:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "armorplus:lava_crystal", + "Count:3": 64, + "Damage:2": 1, + "OreDict:8": "" + }, + "9:10": { + "id:8": "draconicevolution:dragon_heart", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "10:10": { + "id:8": "extendedcrafting:material", + "Count:3": 200, + "Damage:2": 32, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 5, + "id:2": 19 + }, + "1:10": { + "lvl:2": 50, + "id:2": 21 + }, + "2:10": { + "lvl:2": 50, + "id:2": 11 + }, + "3:10": { + "lvl:2": 50, + "id:2": 30 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 119" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -1764044997872694150, + "UUIDLeast:4": -5800365910324348553, + "Amount:6": 200.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -7146944196080745787, + "UUIDLeast:4": -4700773529772170414, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -4236202463880395135, + "UUIDLeast:4": -6463913133671878537, + "Amount:6": 20.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 4865830314665132517, + "UUIDLeast:4": -4756975273259061896, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": -6493431471024881010, + "UUIDLeast:4": -5752703724886216720, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 10, + "id:2": 19 + }, + "1:10": { + "lvl:2": 4, + "id:2": 63 + }, + "2:10": { + "lvl:2": 5, + "id:2": 57 + }, + "3:10": { + "lvl:2": 50, + "id:2": 21 + }, + "4:10": { + "lvl:2": 50, + "id:2": 11 + }, + "5:10": { + "lvl:2": 10, + "id:2": 80 + }, + "6:10": { + "lvl:2": 1, + "id:2": 53 + }, + "7:10": { + "lvl:2": 50, + "id:2": 22 + }, + "8:10": { + "lvl:2": 3, + "id:2": 68 + }, + "9:10": { + "lvl:2": 10, + "id:2": 69 + }, + "10:10": { + "lvl:2": 50, + "id:2": 86 + } + }, + "Unbreakable:1": 1, + "HideFlags:3": 4, + "display:10": { + "Lore:9": { + "0:8": "物品等级 119-II" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -3090993949746576134, + "UUIDLeast:4": -7491689365994651388, + "Amount:6": 300.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -4780585704072656223, + "UUIDLeast:4": -4666823582135822322, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 1, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -4102346081702428026, + "UUIDLeast:4": -5428410413595515399, + "Amount:6": 20.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": -6828085454040971882, + "UUIDLeast:4": -8110941229689557584, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": -8721237277534895411, + "UUIDLeast:4": -5323732738889865507, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "476:10": { + "questID:3": 485, + "preRequisites:11": [ + 865 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:ingot_iron_compressed", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "爆炸压缩", + "desc:8": "炸一些铁锭(会有损耗)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:ingot_iron_compressed", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "477:10": { + "questID:3": 486, + "preRequisites:11": [ + 489 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:pressure_chamber_wall", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压力室", + "desc:8": "3x3到5x5的多方块结构,使用压力制作物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:pressure_chamber_wall", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "pneumaticcraft:pressure_chamber_glass", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "pneumaticcraft:pressure_chamber_interface", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "pneumaticcraft:pressure_chamber_valve", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "478:10": { + "questID:3": 487, + "preRequisites:11": [ + 485 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:pressure_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压力管", + "desc:8": "将压力从一台机器移动到另一台。整个系统的压力会自动均衡。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:pressure_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "479:10": { + "questID:3": 488, + "preRequisites:11": [ + 487 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:advanced_pressure_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级压缩管道", + "desc:8": "能够承受更大的压力。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:advanced_pressure_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "480:10": { + "questID:3": 489, + "preRequisites:11": [ + 487 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:air_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "空气压缩机", + "desc:8": "消耗可燃烧物品产生压力。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:air_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "481:10": { + "questID:3": 490, + "preRequisites:11": [ + 489 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:advanced_air_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级空气压缩机", + "desc:8": "更有效率。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:advanced_air_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "482:10": { + "questID:3": 491, + "preRequisites:11": [ + 489 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:liquid_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流体压缩机", + "desc:8": "消耗可燃烧流体产生压力" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:liquid_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "483:10": { + "questID:3": 492, + "preRequisites:11": [ + 491 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:advanced_liquid_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级流体压缩机", + "desc:8": "更有效率。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:advanced_liquid_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "484:10": { + "questID:3": 493, + "preRequisites:11": [ + 486 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:transistor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶体管", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:transistor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "485:10": { + "questID:3": 494, + "preRequisites:11": [ + 486 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:capacitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电容", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:capacitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "486:10": { + "questID:3": 495, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灰色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "487:10": { + "questID:3": 496, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粉色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "488:10": { + "questID:3": 497, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄绿色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "489:10": { + "questID:3": 498, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "490:10": { + "questID:3": 499, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "淡蓝色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "491:10": { + "questID:3": 500, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "品红色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "492:10": { + "questID:3": 501, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "橙色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "493:10": { + "questID:3": 502, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "白色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "494:10": { + "questID:3": 503, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "495:10": { + "questID:3": 504, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "496:10": { + "questID:3": 505, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "497:10": { + "questID:3": 506, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "棕色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "498:10": { + "questID:3": 507, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "499:10": { + "questID:3": 508, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "紫色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "500:10": { + "questID:3": 509, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "501:10": { + "questID:3": 510, + "preRequisites:11": [ + 512 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "淡灰色塑料", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "502:10": { + "questID:3": 511, + "preRequisites:11": [ + 487 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:refinery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "气动精炼", + "desc:8": "将原油转换成其他流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:refinery", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "503:10": { + "questID:3": 512, + "preRequisites:11": [ + 515 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:plastic_mixer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "混合塑料", + "desc:8": "用来制作不同颜色的塑料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:plastic_mixer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "504:10": { + "questID:3": 513, + "preRequisites:11": [ + 517 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:printed_circuit_board", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "打印印刷电路板", + "desc:8": "合成用材料。大部分人可能讨厌制作这些电路板。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:printed_circuit_board", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "505:10": { + "questID:3": 514, + "preRequisites:11": [ + 511 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:vortex_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "过热保护", + "desc:8": "让你的机器远离过热。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:vortex_tube", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "pneumaticcraft:heat_sink", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "506:10": { + "questID:3": 515, + "preRequisites:11": [ + 511 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:thermopneumatic_processing_plant", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "热气动加工机", + "desc:8": "用来制作液体塑料和一些其他的东西。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:thermopneumatic_processing_plant", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "507:10": { + "questID:3": 516, + "preRequisites:11": [ + 486 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "etchacid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蚀刻酸", + "desc:8": "用来制作第一批次的印刷电路板。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "etchacid", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "508:10": { + "questID:3": 517, + "preRequisites:11": [ + 516 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:uv_light_box", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "紫外光灯箱", + "desc:8": "将蚀刻的印刷电路板放进其中。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:uv_light_box", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "509:10": { + "questID:3": 518, + "preRequisites:11": [ + 513 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:advanced_印刷电路板", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级印刷电路板", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:advanced_印刷电路板", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "510:10": { + "questID:3": 519, + "preRequisites:11": [ + 523 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:amadron_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Amadron", + "desc:8": "好用的无人售货机。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:amadron_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "511:10": { + "questID:3": 520, + "preRequisites:11": [ + 519 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:assembly_program", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "镭射程序", + "desc:8": "镭射钻的程序。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:assembly_program", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "512:10": { + "questID:3": 521, + "preRequisites:11": [ + 513 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:assembly_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压力组装", + "desc:8": "能让你更有效率地制作印刷电路板" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:assembly_io_unit", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "pneumaticcraft:assembly_platform", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "pneumaticcraft:assembly_drill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "pneumaticcraft:assembly_laser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "pneumaticcraft:assembly_controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "513:10": { + "questID:3": 522, + "preRequisites:11": [ + 523 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:pneumatic_wrench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "气动扳手", + "desc:8": "跟普通的扳手几乎一样。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:pneumatic_wrench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:camo_applicator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:logistics_configurator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "514:10": { + "questID:3": 523, + "preRequisites:11": [ + 487 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:air_canister", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "空气罐", + "desc:8": "压力存储容器。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "pneumaticcraft:air_canister", + "Count:3": 1, + "Damage:2": 30000, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "515:10": { + "questID:3": 524, + "preRequisites:11": [ + 485 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:speed_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "速度升级", + "desc:8": "更快,但会损失一些效率。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:speed_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "516:10": { + "questID:3": 525, + "preRequisites:11": [ + 485 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:item_life_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "物品寿命升级", + "desc:8": "使物品不会消失。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:item_life_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "517:10": { + "questID:3": 526, + "preRequisites:11": [ + 523 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:volume_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "容积升级", + "desc:8": "增加机器的压力容量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:volume_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "518:10": { + "questID:3": 527, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "pneumaticcraft:creative_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒压缩机", + "desc:8": "给压力室提供无限的压力。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "pneumaticcraft:creative_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "519:10": { + "questID:3": 528, + "preRequisites:11": [ + 2 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_misc", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "焦黑石英", + "desc:8": "合成用材料\n\n烧炼烟熏石英获得。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_misc", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "gemQuartzBlack" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "520:10": { + "questID:3": 529, + "preRequisites:11": [ + 528 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_atomic_reconstructor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "原子再构机", + "desc:8": "查看AA的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_atomic_reconstructor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "521:10": { + "questID:3": 530, + "preRequisites:11": [ + 529 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "重筑材料", + "desc:8": "查看AA的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "5:10": { + "id:8": "actuallyadditions:item_crystal", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "522:10": { + "questID:3": 531, + "preRequisites:11": [ + 198, + 532 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:dragon_egg_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "龙蛋种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:dragon_egg_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "523:10": { + "questID:3": 532, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "龙蛋核心", + "desc:8": "需要被放置在种植龙蛋种子的耕地下。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "524:10": { + "questID:3": 533, + "preRequisites:11": [ + 209 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:stuff", + "Count:3": 1, + "Damage:2": 69, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "创造精华", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:stuff", + "Count:3": 1, + "Damage:2": 69, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "525:10": { + "questID:3": 534, + "preRequisites:11": [ + 529 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_empowerer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能台", + "desc:8": "查看AA的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:block_empowerer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "actuallyadditions:block_display_stand", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "526:10": { + "questID:3": 535, + "preRequisites:11": [ + 534 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能重筑材料", + "desc:8": "查看AA的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "5:10": { + "id:8": "actuallyadditions:item_crystal_empowered", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "527:10": { + "questID:3": 536, + "preRequisites:11": [ + 537 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcustomsandore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "海蓝宝石", + "desc:8": "能够在Deep Dark维度找到,以石头矿石的形式生成。阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "528:10": { + "questID:3": 537, + "preRequisites:11": [ + 71 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemjournal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星芒宝典", + "desc:8": "星辉魔法的开始。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemjournal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "529:10": { + "questID:3": 538, + "preRequisites:11": [ + 536 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星辉金属", + "desc:8": "阅读星芒宝典获取更多内容\n\n如果你不介意消耗血量的话,你可以制作矿石版本§c(Kappa模式中此方法不可行§c§r§c)§r.\n\n能够在Deep Dark维度找到。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "ingotAstralStarmetal" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "530:10": { + "questID:3": 539, + "preRequisites:11": [ + 691 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星辉合成", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "531:10": { + "questID:3": 540, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemwand", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "共鸣星杖", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemwand", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "532:10": { + "questID:3": 541, + "preRequisites:11": [ + 549 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 9, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "焦炉", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 27, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "533:10": { + "questID:3": 542, + "preRequisites:11": [ + 541 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 9, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高炉", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 27, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "534:10": { + "questID:3": 543, + "preRequisites:11": [ + 545 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "工程师装配台", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:blueprint", + "Count:3": 1, + "tag:10": { + "blueprint:8": "components" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:blueprint", + "Count:3": 1, + "tag:10": { + "blueprint:8": "molds" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "535:10": { + "questID:3": 544, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 9, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级高炉", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:stone_decoration", + "Count:3": 9, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:hopper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "536:10": { + "questID:3": 545, + "preRequisites:11": [ + 541 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:treated_wood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "防腐木", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:treated_wood", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "plankTreatedWood" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "537:10": { + "questID:3": 546, + "preRequisites:11": [ + 545 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:wooden_device1", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "防腐木轮", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:wooden_device1", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "538:10": { + "questID:3": 547, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "ingot钢" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢锭", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 160, + "OreDict:8": "ingot钢" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "539:10": { + "questID:3": 548, + "preRequisites:11": [ + 2 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:seed", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大麻种子", + "desc:8": "在工程师手册中获取相关内容。它们生长的很快。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:material", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "fiberHemp" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "540:10": { + "questID:3": 549, + "preRequisites:11": [ + 548 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "我锤!", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersiveengineering:tool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "541:10": { + "questID:3": 550, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:jade_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "翡翠种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:jade_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "542:10": { + "questID:3": 551, + "preRequisites:11": [ + 548 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电线", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:wirecoil", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "543:10": { + "questID:3": 552, + "preRequisites:11": [ + 551 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "接线器", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:connector", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "544:10": { + "questID:3": 553, + "preRequisites:11": [ + 542 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 1, + "tag:10": { + "conveyorType:8": "immersiveengineering:conveyor" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金属压制", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:conveyor", + "Count:3": 2, + "tag:10": { + "conveyorType:8": "immersiveengineering:conveyor" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 2, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:piston", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "545:10": { + "questID:3": 554, + "preRequisites:11": [ + 551 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "热传导发电", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "546:10": { + "questID:3": 555, + "preRequisites:11": [ + 553 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:apple", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "listAllfruit" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "挤压机", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 3, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:piston", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 2, + "Damage:2": 6, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + }, + "6:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 4, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "547:10": { + "questID:3": 556, + "preRequisites:11": [ + 555 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:cauldron", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "发酵", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:cauldron", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 2, + "Damage:2": 6, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 6, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 4, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "548:10": { + "questID:3": 557, + "preRequisites:11": [ + 556 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 5, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精炼", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 5, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 5, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 2, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:sheetmetal", + "Count:3": 16, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "549:10": { + "questID:3": 558, + "preRequisites:11": [ + 557 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 13, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "柴油发电机", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 4, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 9, + "Damage:2": 7, + "OreDict:8": "" + }, + "2:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 5, + "Damage:2": 6, + "OreDict:8": "" + }, + "3:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 13, + "Damage:2": 5, + "OreDict:8": "" + }, + "4:10": { + "id:8": "immersiveengineering:metal_decoration0", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "5:10": { + "id:8": "immersiveengineering:metal_decoration1", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "550:10": { + "questID:3": 559, + "preRequisites:11": [ + 545 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersivepetroleum:schematic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "多方块投影", + "desc:8": "根据手册中的多方块结构投影出对应虚影。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "immersivepetroleum:schematic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "551:10": { + "questID:3": 560, + "preRequisites:11": [ + 545 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersivepetroleum:metal_device", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "自动润滑", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersivepetroleum:metal_device", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "552:10": { + "questID:3": 561, + "preRequisites:11": [ + 543 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超强种植", + "desc:8": "在工程师手册中获取相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "immersiveengineering:metal_device1", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "553:10": { + "questID:3": 562, + "preRequisites:11": [ + 483 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_10", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "十级中性钢", + "desc:8": "在化学压射室中制作" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_10", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "554:10": { + "questID:3": 563, + "preRequisites:11": [ + 562 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:neutral_steel_11", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "十一级中性钢", + "desc:8": "在PRC中制作" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:neutral_steel_11", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 35, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "555:10": { + "questID:3": 565, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "overloaded:infinite_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无限储罐", + "desc:8": "能够存储大量的同种流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "overloaded:infinite_tank", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "556:10": { + "questID:3": 566, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "overloaded:infinite_barrel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无限桶", + "desc:8": "能够存储大量的同种物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "overloaded:infinite_barrel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "557:10": { + "questID:3": 567, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "overloaded:infinite_capacitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无限电容器", + "desc:8": "能够存储大量能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "overloaded:infinite_capacitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "558:10": { + "questID:3": 568, + "preRequisites:11": [ + 10 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "karatgarden:item_carrot_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "克拉萝卜", + "desc:8": "种植克拉萝卜需要在耕地下放置不同矿石(除了2克拉)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "karatgarden:item_carrot_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "karatgarden:item_carrot_01", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "karatgarden:item_carrot_02", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "karatgarden:item_carrot_03", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "karatgarden:item_carrot_04", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "karatgarden:item_carrot_05", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "karatgarden:item_carrot_06", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "karatgarden:item_carrot_07", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "8:10": { + "id:8": "karatgarden:item_carrot_08", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "559:10": { + "questID:3": 569, + "preRequisites:11": [ + 571 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "karatgarden:item_carrot_01_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "附魔克拉萝卜", + "desc:8": "种植附魔克拉萝卜需要在耕地下放置不同矿物块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "karatgarden:item_carrot_01_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "karatgarden:item_carrot_02_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "karatgarden:item_carrot_03_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "karatgarden:item_carrot_04_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "karatgarden:item_carrot_08_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "karatgarden:item_carrot_05_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "karatgarden:item_carrot_06_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "karatgarden:item_carrot_07_ext", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "560:10": { + "questID:3": 570, + "preRequisites:11": [ + 569 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "karatgarden:item_carrot_w_ultimate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "凋零克拉萝卜", + "desc:8": "免疫凋零伤害" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "karatgarden:item_carrot_w_ultimate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "561:10": { + "questID:3": 571, + "preRequisites:11": [ + 568 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "karatgarden:item_carrot_w", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "配方克拉萝卜", + "desc:8": "只是合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "karatgarden:item_carrot_w", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "562:10": { + "questID:3": 573, + "preRequisites:11": [ + 4 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "盆栽盆", + "desc:8": "能够在里面种植小号的树。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "563:10": { + "questID:3": 574, + "preRequisites:11": [ + 573 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "漏式盆栽盆", + "desc:8": "能够自动向下方输出产物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "564:10": { + "questID:3": 575, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮塔基座等级 1", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "565:10": { + "questID:3": 576, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮塔基座等级 2", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "566:10": { + "questID:3": 577, + "preRequisites:11": [ + 576 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮塔基座等级 3", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "567:10": { + "questID:3": 578, + "preRequisites:11": [ + 577 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮塔基座等级 4", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "568:10": { + "questID:3": 579, + "preRequisites:11": [ + 578 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮塔基座等级 5", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:turret_base", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "569:10": { + "questID:3": 580, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:disposable_item_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "射垃圾的炮台", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:disposable_item_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "570:10": { + "questID:3": 581, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:potato_cannon_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "射土豆的炮台", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:potato_cannon_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "571:10": { + "questID:3": 582, + "preRequisites:11": [ + 576 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:machine_gun_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "突突突", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:machine_gun_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "572:10": { + "questID:3": 583, + "preRequisites:11": [ + 576 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:incendiary_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "燃起来了", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:incendiary_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "573:10": { + "questID:3": 584, + "preRequisites:11": [ + 577 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:grenade_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大榴弹!", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:grenade_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "574:10": { + "questID:3": 585, + "preRequisites:11": [ + 577 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:relativistic_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "相位力场", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:relativistic_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "575:10": { + "questID:3": 586, + "preRequisites:11": [ + 578 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:rocket_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "发射火箭!", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:rocket_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "576:10": { + "questID:3": 587, + "preRequisites:11": [ + 578 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:teleporter_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传送", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:teleporter_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "577:10": { + "questID:3": 588, + "preRequisites:11": [ + 579 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:laser_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "镭射炮台", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:laser_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "578:10": { + "questID:3": 589, + "preRequisites:11": [ + 579 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:rail_gun_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电磁炮", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:rail_gun_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "579:10": { + "questID:3": 590, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:usable_meta", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "复制炮台", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:usable_meta", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "580:10": { + "questID:3": 591, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:upgrade_meta", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台升级", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:upgrade_meta", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:upgrade_meta", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "openmodularturrets:upgrade_meta", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "id:8": "openmodularturrets:upgrade_meta", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "openmodularturrets:upgrade_meta", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "581:10": { + "questID:3": 592, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:addon_meta", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台插件", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:addon_meta", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:addon_meta", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "openmodularturrets:addon_meta", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "3:10": { + "id:8": "openmodularturrets:addon_meta", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "openmodularturrets:addon_meta", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "582:10": { + "questID:3": 593, + "preRequisites:11": [ + 575 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台扩容 1", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "583:10": { + "questID:3": 594, + "preRequisites:11": [ + 593 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台扩容 2", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "584:10": { + "questID:3": 595, + "preRequisites:11": [ + 594 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台扩容 3", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "585:10": { + "questID:3": 596, + "preRequisites:11": [ + 595 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台扩容 4", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "586:10": { + "questID:3": 597, + "preRequisites:11": [ + 596 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炮台扩容 5", + "desc:8": "按住shift查看它能做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "1:10": { + "id:8": "openmodularturrets:expander", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "587:10": { + "questID:3": 598, + "preRequisites:11": [ + 41 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bhc:red_heart_canister", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红心容器", + "desc:8": "增加最大生命值" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bhc:red_heart_canister", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bhc:heart_amulet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "588:10": { + "questID:3": 599, + "preRequisites:11": [ + 598 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bhc:yellow_heart_canister", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄心容器", + "desc:8": "增加最大生命值" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bhc:yellow_heart_canister", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "589:10": { + "questID:3": 600, + "preRequisites:11": [ + 599 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bhc:green_heart_canister", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿心容器", + "desc:8": "增加最大生命值" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bhc:green_heart_canister", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "590:10": { + "questID:3": 601, + "preRequisites:11": [ + 600 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bhc:blue_heart_canister", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝心容器", + "desc:8": "增加最大生命值" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bhc:blue_heart_canister", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "591:10": { + "questID:3": 602, + "preRequisites:11": [ + 367 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水晶矩阵锭", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "592:10": { + "questID:3": 603, + "preRequisites:11": [ + 607 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:ultimate_stew", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超级煲", + "desc:8": "可以吃,但这么做很浪费。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:ultimate_stew", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "593:10": { + "questID:3": 604, + "preRequisites:11": [ + 607 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:cosmic_meatballs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "寰宇肉丸", + "desc:8": "肉" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:cosmic_meatballs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "594:10": { + "questID:3": 605, + "preRequisites:11": [ + 368, + 602, + 603, + 604 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽催化剂", + "desc:8": "合成用材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "595:10": { + "questID:3": 606, + "preRequisites:11": [ + 605 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "无尽锭", + "desc:8": "这合成真的是必要的吗" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:resource", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 35, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "596:10": { + "questID:3": 607, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:neutron_collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中子素收集器", + "desc:8": "每6分钟收集一撮中子素尘埃。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritia:neutron_collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "597:10": { + "questID:3": 608, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_sword", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽之剑", + "desc:8": "建议:将无暇水晶附着其上。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_sword", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 35, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "598:10": { + "questID:3": 609, + "preRequisites:11": [ + 859 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "无尽套装", + "desc:8": "死亡从此离你而去... 直到有个人拿寰宇之剑疯狂砍你。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_pants", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 45, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "599:10": { + "questID:3": 610, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_hoe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽之锄", + "desc:8": "永远都别用无尽锭做锄头,很浪费。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_hoe", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "600:10": { + "questID:3": 611, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_shovel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽之铲", + "desc:8": "真的很快。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_shovel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "601:10": { + "questID:3": 612, + "preRequisites:11": [ + 362 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:skullfire_sword", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "啄颅剑", + "desc:8": "凋零头生产机" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:skullfire_sword", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "602:10": { + "questID:3": 613, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_bow", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽之弓", + "desc:8": "你确定我射歪了?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_bow", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "603:10": { + "questID:3": 614, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_axe", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽之斧", + "desc:8": "树木毁灭者。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_axe", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "604:10": { + "questID:3": 615, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_pickaxe", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 10, + "id:2": 35 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无尽之镐", + "desc:8": "立即破坏基岩,同时也很幸运" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "avaritia:infinity_pickaxe", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 10, + "id:2": 35 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "605:10": { + "questID:3": 616, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 I", + "desc:8": "产生 100 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "606:10": { + "questID:3": 617, + "preRequisites:11": [ + 616 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 II", + "desc:8": "产生 200 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "607:10": { + "questID:3": 618, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel101", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "月光太阳能板 I", + "desc:8": "从月亮上吸收太阳能。产生 250 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel101", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "608:10": { + "questID:3": 619, + "preRequisites:11": [ + 618 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel102", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "月光太阳能板 II", + "desc:8": "从月亮上吸收太阳能。产生 500 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel102", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "609:10": { + "questID:3": 620, + "preRequisites:11": [ + 617 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 III", + "desc:8": "产生 300 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "610:10": { + "questID:3": 621, + "preRequisites:11": [ + 620 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 IV", + "desc:8": "产生 400 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "611:10": { + "questID:3": 622, + "preRequisites:11": [ + 621 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 V", + "desc:8": "产生 500 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "612:10": { + "questID:3": 623, + "preRequisites:11": [ + 622 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 VI", + "desc:8": "产生 600 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "613:10": { + "questID:3": 624, + "preRequisites:11": [ + 623 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blockenderpanel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板 Ender", + "desc:8": "产生 ??? rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blockenderpanel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "614:10": { + "questID:3": 625, + "preRequisites:11": [ + 619 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalsolars:blocksolarpanel103", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "月光太阳能板 III", + "desc:8": "从月亮上吸收太阳能。产生 750 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalsolars:blocksolarpanel103", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "615:10": { + "questID:3": 626, + "preRequisites:11": [ + 74 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Necronomicon", + "desc:8": "The Beginning of Abyssalcraft." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "616:10": { + "questID:3": 627, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "huntingdim:frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "狩猎维度", + "desc:8": "使用剑右键传送门框架,然后进入传送门按下shift即可前往狩猎维度。这个维度会生成主世界没有的怪物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "huntingdim:frame", + "Count:3": 14, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "617:10": { + "questID:3": 628, + "preRequisites:11": [ + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:coraliumore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "珊瑚矿石", + "desc:8": "能够在失落的城市中找到(Lost Cities)。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:coralium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "618:10": { + "questID:3": 629, + "preRequisites:11": [ + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:abyore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "深渊矿石", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:abyore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "oreAbyssalnite" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "619:10": { + "questID:3": 630, + "preRequisites:11": [ + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:shoggothbiomass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "修格斯生物质", + "desc:8": "用来生成修格斯。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:shoggothbiomass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "620:10": { + "questID:3": 631, + "preRequisites:11": [ + 630 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "雕像", + "desc:8": "修格斯数量足够后,它们就会开始建造巨石,巨石顶上都会有一座雕像。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "4:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "5:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "6:10": { + "id:8": "abyssalcraft:statue", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "621:10": { + "questID:3": 632, + "preRequisites:11": [ + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "liquidantimatter", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "反物质桶", + "desc:8": "能将怪物转换成深渊的怪物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "liquidantimatter", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "622:10": { + "questID:3": 633, + "preRequisites:11": [ + 628 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:cpearl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "死灵珍珠", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:cpearl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "materialCoraliumPearl" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "623:10": { + "questID:3": 634, + "preRequisites:11": [ + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:shadowfragment", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "暗影怪物", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:shadowfragment", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:shadowshard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "abyssalcraft:shadowgem", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "624:10": { + "questID:3": 635, + "preRequisites:11": [ + 636 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:oblivionshard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "湮灭碎片", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:oblivionshard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "625:10": { + "questID:3": 636, + "preRequisites:11": [ + 637 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:transmutationgem", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "嬗变宝石", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:transmutationgem", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "626:10": { + "questID:3": 637, + "preRequisites:11": [ + 634 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:cobblestone_wall", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "仪式入门", + "desc:8": "查看死灵之书准备搭建仪式所需要的东西。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "627:10": { + "questID:3": 638, + "preRequisites:11": [ + 635 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:oc", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "湮灭媒介", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:oc", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "628:10": { + "questID:3": 639, + "preRequisites:11": [ + 638 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:gatewaykey", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "门钥匙", + "desc:8": "能够前往废土(Wasteland)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:gatewaykey", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "629:10": { + "questID:3": 640, + "preRequisites:11": [ + 631 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:decorativestatue", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "获得位能", + "desc:8": "将雕像放置在能量基座周围,然后把死灵之书放在能量基座上。§c警告:雕像会在充能时产生一些奇怪的反应,并且有时会刷出怪物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:monolithpillar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:energypedestal", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "630:10": { + "questID:3": 641, + "preRequisites:11": [ + 640 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:sacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "牺牲祭坛", + "desc:8": "牺牲周围的生物来产生PE。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:sacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "631:10": { + "questID:3": 642, + "preRequisites:11": [ + 640, + 641 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "主世界祭坛", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:tieredenergypedestal", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "632:10": { + "questID:3": 643, + "preRequisites:11": [ + 642 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "废土祭坛", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:tieredenergypedestal", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "633:10": { + "questID:3": 644, + "preRequisites:11": [ + 643 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恶地祭坛", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:tieredenergypedestal", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "634:10": { + "questID:3": 645, + "preRequisites:11": [ + 644 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "奥穆索祭坛", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:tieredenergypedestal", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:tieredsacrificialaltar", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "635:10": { + "questID:3": 646, + "preRequisites:11": [ + 640 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:charm", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "仪式符咒", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:charm", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:charm", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "2:10": { + "id:8": "abyssalcraft:charm", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "636:10": { + "questID:3": 647, + "preRequisites:11": [ + 648 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:ingotyellorium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "ingotYellorium" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄铀", + "desc:8": "反应堆的合成材料,也是燃料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:ingotyellorium", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "ingotYellorium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "637:10": { + "questID:3": 648, + "preRequisites:11": [ + 8 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "ingotGraphite" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "石墨", + "desc:8": "反应堆的合成材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "ingotGraphite" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "638:10": { + "questID:3": 649, + "preRequisites:11": [ + 652 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:ingotcyanite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝晶", + "desc:8": "反应堆的工业垃圾" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:ingotcyanite", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "ingotCyanite" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "639:10": { + "questID:3": 650, + "preRequisites:11": [ + 649 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:ingotblutonium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝钚", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:ingotblutonium", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "ingotBlutonium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "640:10": { + "questID:3": 651, + "preRequisites:11": [ + 650 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:ingotludicrite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "纯镥", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:ingotludicrite", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "ingotLudicrite" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "641:10": { + "questID:3": 652, + "preRequisites:11": [ + 647, + 648 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:reactorcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "极限反应堆", + "desc:8": "消耗黄铀的多方块结构。产能已被增加。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:reactorcasingcores", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bigreactors:reactorcasing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "bigreactors:reactoraccessport", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "bigreactors:reactorcontrolrod", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "bigreactors:reactorpowertaprf", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "bigreactors:reactorcontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "bigreactors:reactorfuelrod", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "642:10": { + "questID:3": 653, + "preRequisites:11": [ + 652 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:reactorcoolantport", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "冷却端口", + "desc:8": "安装了冷却端口的反应堆不会产出能量但会产出蒸汽。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:reactorcoolantport", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "643:10": { + "questID:3": 654, + "preRequisites:11": [ + 653 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bigreactors:turbinecontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "极限涡轮", + "desc:8": "消耗蒸汽的多方块结构。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bigreactors:turbinehousing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bigreactors:turbineglass", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "bigreactors:turbinecontroller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "bigreactors:turbinebearing", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "bigreactors:turbinerotorshaft", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "bigreactors:turbinerotorblade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "bigreactors:turbinepowertaprf", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "bigreactors:turbinefluidport", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "644:10": { + "questID:3": 655, + "preRequisites:11": [ + 21 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "furnaceoverhaul:iron_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁熔炉", + "desc:8": "烧炼速度:170" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "furnaceoverhaul:iron_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "645:10": { + "questID:3": 656, + "preRequisites:11": [ + 655 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "furnaceoverhaul:gold_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金熔炉", + "desc:8": "烧炼速度:130" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "furnaceoverhaul:gold_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "646:10": { + "questID:3": 657, + "preRequisites:11": [ + 656 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "furnaceoverhaul:diamond_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石熔炉", + "desc:8": "烧炼速度:100" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "furnaceoverhaul:diamond_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "647:10": { + "questID:3": 658, + "preRequisites:11": [ + 657 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "furnaceoverhaul:emerald_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石熔炉", + "desc:8": "烧炼速度:60" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "furnaceoverhaul:emerald_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "648:10": { + "questID:3": 659, + "preRequisites:11": [ + 658 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "furnaceoverhaul:end_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影熔炉", + "desc:8": "烧炼速度:30" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "furnaceoverhaul:end_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "649:10": { + "questID:3": 660, + "preRequisites:11": [ + 659 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "furnaceoverhaul:zenith_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极熔炉", + "desc:8": "烧炼速度:1" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "furnaceoverhaul:zenith_furnace", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "650:10": { + "questID:3": 661, + "preRequisites:11": [ + 852 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_dm_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "玄钢套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_dark_steel_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_dark_steel_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_dark_steel_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_dark_steel_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "651:10": { + "questID:3": 662, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 165, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "信素锭", + "desc:8": "铜 + 银 + 红石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 12, + "Damage:2": 165, + "OreDict:8": "ingotSignalum" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "652:10": { + "questID:3": 663, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 166, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流明锭", + "desc:8": "锡 + 银 + 荧石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 12, + "Damage:2": 166, + "OreDict:8": "ingotLumium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "653:10": { + "questID:3": 664, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 167, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影锭", + "desc:8": "铅 + 铂 + 末影珍珠" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 12, + "Damage:2": 167, + "OreDict:8": "ingotEnderium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "654:10": { + "questID:3": 665, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 161, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金锭", + "desc:8": "银 + 金" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 12, + "Damage:2": 161, + "OreDict:8": "ingot琥珀金" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "655:10": { + "questID:3": 666, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 163, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青铜锭", + "desc:8": "铜 + 锡" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 12, + "Damage:2": 163, + "OreDict:8": "ingot青铜" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "656:10": { + "questID:3": 667, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalfoundation:material", + "Count:3": 1, + "Damage:2": 162, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "殷钢锭", + "desc:8": "铁 + 镍" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalfoundation:material", + "Count:3": 12, + "Damage:2": 162, + "OreDict:8": "ingot殷钢" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "657:10": { + "questID:3": 668, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -6624347722576104779, + "AS_Amulet_HolderMost:4": -1172398686987401963 + } + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 16, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铅喷气背包", + "desc:8": "存储80,000 FE\n消耗1000 FE/tick" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -6624347722576104779, + "AS_Amulet_HolderMost:4": -1172398686987401963 + } + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 16, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "658:10": { + "questID:3": 669, + "preRequisites:11": [ + 668 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 17, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "殷钢喷气背包", + "desc:8": "存储800,000 FE\n消耗2000 FE/tick" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 17, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "659:10": { + "questID:3": 670, + "preRequisites:11": [ + 669 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 18, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金喷气背包", + "desc:8": "存储8,000,000 FE\n消耗4000 FE/tick" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 18, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "660:10": { + "questID:3": 671, + "preRequisites:11": [ + 670 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 19, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影钢喷气背包", + "desc:8": "存储80,000,000 FE\n消耗8000 FE/tick" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 19, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "661:10": { + "questID:3": 672, + "preRequisites:11": [ + 671 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 24, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Flux-Infused喷气背包", + "desc:8": "存储800,000,000 FE\n消耗50 FE/tick" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "simplyjetpacks:itemjetpack", + "Count:3": 1, + "tag:10": { + "Energy:3": 0, + "JetpackParticle:3": 0 + }, + "Damage:2": 24, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "662:10": { + "questID:3": 673, + "preRequisites:11": [ + 676 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon_cor", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "荒芜之地死灵之书", + "desc:8": "组成深渊" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon_cor", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "663:10": { + "questID:3": 674, + "preRequisites:11": [ + 673 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon_dre", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧之地死灵之书", + "desc:8": "组成深渊" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon_dre", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "664:10": { + "questID:3": 675, + "preRequisites:11": [ + 674 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon_omt", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "奥穆索死灵之书", + "desc:8": "组成深渊" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:necronomicon_omt", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "665:10": { + "questID:3": 676, + "preRequisites:11": [ + 626 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:drainstaff", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "撕裂法杖", + "desc:8": "右键怪物为法杖充能,有些怪物需要对准头部。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:drainstaff", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "666:10": { + "questID:3": 677, + "preRequisites:11": [ + 679 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:powerstonetracker", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蕴能石追踪器", + "desc:8": "用来寻找要塞。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:powerstonetracker", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "667:10": { + "questID:3": 678, + "preRequisites:11": [ + 677 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:psdl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧之地蕴能石", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:psdl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "668:10": { + "questID:3": 679, + "preRequisites:11": [ + 673 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corpick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精炼珊瑚镐", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corpick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "669:10": { + "questID:3": 680, + "preRequisites:11": [ + 673 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "EntityTag:10": { + "id:8": "abyssalcraft:dragonboss" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "堕落者阿索拉", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:eoa", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "670:10": { + "questID:3": 681, + "preRequisites:11": [ + 678, + 680 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:gatewaykeydl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧之门钥匙", + "desc:8": "通往恐惧之地" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:gatewaykeydl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "671:10": { + "questID:3": 682, + "preRequisites:11": [ + 673 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "EntityTag:10": { + "id:8": "abyssalcraft:shadowmonster" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末日先驱萨多斯", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": {}, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "abyssalcraft:shadowboss", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "672:10": { + "questID:3": 683, + "preRequisites:11": [ + 673 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:transmutator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "嬗变器", + "desc:8": "查看死灵之书,可以使用液态珊瑚/烈焰粉/棒作为燃料。需要珊瑚桶来制作。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:transmutator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "673:10": { + "questID:3": 684, + "preRequisites:11": [ + 674 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:dreadaltarbottom", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "查加罗特祭坛(底部)", + "desc:8": "去位于Y\u003d40的恐惧之地高山。将顶部放置在底部上方,然后右击进入查加罗特藏身处。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:dreadaltarbottom", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "abyssalcraft:dreadaltartop", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "674:10": { + "questID:3": 685, + "preRequisites:11": [ + 684 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "EntityTag:10": { + "id:8": "abyssalcraft:chagarothspawn" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧野兽查加罗特", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": {}, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "abyssalcraft:chagaroth", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "675:10": { + "questID:3": 686, + "preRequisites:11": [ + 685 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:dreadkey", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧侵染的门钥匙", + "desc:8": "查看死灵之书" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "abyssalcraft:dreadkey", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "676:10": { + "questID:3": 687, + "preRequisites:11": [ + 686 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:gatewaykeyjzh", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "查加罗特的拉莱耶门钥匙", + "desc:8": "通往奥穆索" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:gatewaykeyjzh", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "677:10": { + "questID:3": 688, + "preRequisites:11": [ + 675 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:abyssalnomicon", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "深渊之书", + "desc:8": "你需要的最后一本死灵之书。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:abyssalnomicon", + "Count:3": 1, + "tag:10": { + "PotEnergy:5": 0.0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "678:10": { + "questID:3": 689, + "preRequisites:11": [ + 675 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "EntityTag:10": { + "id:8": "abyssalcraft:jzahar" + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "深渊的守门者扎哈尔", + "desc:8": "§c不要破坏任何扎哈尔基地中的方块,否则你或其他人将不能再次挑战它。" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": {}, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "abyssalcraft:jzahar", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "679:10": { + "questID:3": 690, + "preRequisites:11": [ + 536 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockcustomore", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水晶矿石", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemrockcrystalsimple", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": { + "crystalProperties:10": { + "collectiveCapability:3": 100, + "size:3": 400, + "purity:3": 100 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "680:10": { + "questID:3": 691, + "preRequisites:11": [ + 537 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockmarble", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星辉遗迹", + "desc:8": "你可以在失落的城市维度找到很多星辉遗迹。你可以在里面找到一些战利品和一些星图,在最大的遗迹地下,你还会发现一颗水晶,它会帮助你开启你的星辉魔法之路。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "681:10": { + "questID:3": 692, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockwell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "聚星缸", + "desc:8": "阅读星芒宝典获取更多内容。\"烧炼\" 海蓝宝石和水晶石,使它们变成星能液。在晚上更有效率。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockwell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "682:10": { + "questID:3": 693, + "preRequisites:11": [ + 692 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "astralsorcery.liquidstarlight", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "液态星光", + "desc:8": "阅读星芒宝典获取更多内容\n星能液 + 水 \u003d 冰\n星能液 + 熔岩 \u003d 沙子" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:3": 1, + "tag:10": { + "FluidName:8": "astralsorcery.liquidstarlight", + "Amount:3": 1000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "683:10": { + "questID:3": 694, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemhandtelescope", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "望远镜", + "desc:8": "阅读星芒宝典获取更多内容。对着主世界的天空使用来探寻星座。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemhandtelescope", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "684:10": { + "questID:3": 695, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "磨石", + "desc:8": "阅读星芒宝典获取更多内容。打磨水晶石并减小它们的尺寸。可以打磨一些原版的工具。注意,它会一直打磨直到物品消失。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "685:10": { + "questID:3": 696, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星辉合成", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "686:10": { + "questID:3": 697, + "preRequisites:11": [ + 696 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "天辉合成", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "687:10": { + "questID:3": 698, + "preRequisites:11": [ + 697 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "五彩合成", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:blockaltar", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "688:10": { + "questID:3": 699, + "preRequisites:11": [ + 694, + 696 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "天文望远镜", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockmachine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "689:10": { + "questID:3": 700, + "preRequisites:11": [ + 696 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemshiftingstar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "移动星光", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemshiftingstar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "690:10": { + "questID:3": 701, + "preRequisites:11": [ + 696 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockattunementaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "共鸣之力", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockattunementaltar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "691:10": { + "questID:3": 702, + "preRequisites:11": [ + 696 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockritualpedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星辉仪式", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockritualpedestal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "692:10": { + "questID:3": 703, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockattunementrelay", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星光中继器", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockattunementrelay", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "693:10": { + "questID:3": 704, + "preRequisites:11": [ + 539 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemskyresonator", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星光定位器", + "desc:8": "阅读星芒宝典获取更多内容,定位充沛的星光之地。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "astralsorcery:itemskyresonator", + "Count:3": 1, + "tag:10": { + "astralsorcery:10": {} + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "694:10": { + "questID:3": 705, + "preRequisites:11": [ + 697 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:blockstarlightinfuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "星能注入", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:blockstarlightinfuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "695:10": { + "questID:3": 706, + "preRequisites:11": [ + 705 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "共振宝石", + "desc:8": "阅读星芒宝典获取更多内容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "696:10": { + "questID:3": 707, + "preRequisites:11": [ + 429 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "品红色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "697:10": { + "questID:3": 708, + "preRequisites:11": [ + 648 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:manufactory_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "小制造机", + "desc:8": "用途广泛的机器。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:manufactory_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "698:10": { + "questID:3": 709, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:isotope_separator_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "同位素分离器", + "desc:8": "将材料分离成同位素。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:isotope_separator_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "699:10": { + "questID:3": 710, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:decay_hastener_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "衰变加速器", + "desc:8": "加速放射性物质衰变。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:decay_hastener_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "700:10": { + "questID:3": 711, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:fuel_reprocessor_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "燃料处理机", + "desc:8": "从用完的燃料中提取液体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fuel_reprocessor_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "701:10": { + "questID:3": 712, + "preRequisites:11": [ + 708 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy_furnace_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "合金炉", + "desc:8": "融合材料制作合金。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy_furnace_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "702:10": { + "questID:3": 713, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:infuser_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流体注入器", + "desc:8": "使用流体增强材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:infuser_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "703:10": { + "questID:3": 714, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:pressurizer_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压缩机", + "desc:8": "使用巨大的压力处理物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:pressurizer_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "704:10": { + "questID:3": 715, + "preRequisites:11": [ + 708 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:ingot_former_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金属成型机", + "desc:8": "使用熔融流体制作固体宝石或锭。在Kappa模式很实用。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:ingot_former_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "705:10": { + "questID:3": 716, + "preRequisites:11": [ + 721 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:irradiator_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中子辐照器", + "desc:8": "使用中子或中子胶囊来改变流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:irradiator_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "706:10": { + "questID:3": 717, + "preRequisites:11": [ + 721 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:electrolyser_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电解机", + "desc:8": "把化合物分离成其中的元素。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:electrolyser_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "707:10": { + "questID:3": 718, + "preRequisites:11": [ + 721 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:supercooler_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "超冷却器", + "desc:8": "冷却液体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:supercooler_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "708:10": { + "questID:3": 719, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:melter_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金属熔化机", + "desc:8": "熔炼材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:melter_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "709:10": { + "questID:3": 720, + "preRequisites:11": [ + 721 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:chemical_reactor_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "化学反应器", + "desc:8": "使两种流体产生反应。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:chemical_reactor_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "710:10": { + "questID:3": 721, + "preRequisites:11": [ + 708 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:salt_mixer_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "盐混合器", + "desc:8": "将流体混合在一起。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:salt_mixer_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "711:10": { + "questID:3": 722, + "preRequisites:11": [ + 715 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:crystallizer_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "结晶器", + "desc:8": "从流体中沉淀出固体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:crystallizer_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "712:10": { + "questID:3": 723, + "preRequisites:11": [ + 721 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:dissolver_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "溶解器", + "desc:8": "往材料中填入流体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:dissolver_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "713:10": { + "questID:3": 724, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:nuclear_furnace_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "核熔炉", + "desc:8": "使用特殊燃料的熔炉。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:nuclear_furnace_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "714:10": { + "questID:3": 725, + "preRequisites:11": [ + 726 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高强合金", + "desc:8": "1 硼铁合金 + 1 锂" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 12, + "Damage:2": 1, + "OreDict:8": "ingotTough" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "715:10": { + "questID:3": 726, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硼铁合金", + "desc:8": "1 钢 + 1 硼" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 12, + "Damage:2": 6, + "OreDict:8": "ingotFerroboron" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "716:10": { + "questID:3": 727, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硬碳合金", + "desc:8": "2 石墨 + 1 钻石粉" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 12, + "Damage:2": 2, + "OreDict:8": "ingotHardCarbon" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "717:10": { + "questID:3": 728, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "二硼化镁合金", + "desc:8": "1 镁 + 2 硼" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 12, + "Damage:2": 3, + "OreDict:8": "ingotMagnesiumDiboride" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "718:10": { + "questID:3": 729, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锂锰氧化物合金", + "desc:8": "1 锂 + 1 二氧化锰" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 12, + "Damage:2": 4, + "OreDict:8": "ingotLithiumManganeseDioxide" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "719:10": { + "questID:3": 730, + "preRequisites:11": [ + 712 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "朦胧银合金", + "desc:8": "3 铜 + 1 银" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:alloy", + "Count:3": 12, + "Damage:2": 7, + "OreDict:8": "ingotShibuichi" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "720:10": { + "questID:3": 731, + "preRequisites:11": [ + 708 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "速度升级", + "desc:8": "增加机器工作的效率。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:upgrade", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "721:10": { + "questID:3": 732, + "preRequisites:11": [ + 724 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:fission_controller_idle", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "裂变反应堆", + "desc:8": "按住Shift查看它们能够做什么。这个反应堆会熔化,请小心。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fission_controller_new_fixed", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "nuclearcraft:fission_port", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "nuclearcraft:fission_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "nuclearcraft:reactor_casing_transparent", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "nuclearcraft:ingot_block", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "5:10": { + "id:8": "nuclearcraft:cell_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "nuclearcraft:cooler", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "722:10": { + "questID:3": 733, + "preRequisites:11": [ + 720 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "nuclearcraft:fusion_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "聚变反应堆", + "desc:8": "多方块结构的核心。按住Shift查看它们能够做什么。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "nuclearcraft:fusion_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "723:10": { + "questID:3": 734, + "preRequisites:11": [ + 472 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:info_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空,龙,和平衡性?", + "desc:8": "所有内容都在一块板里" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:draconium_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "ingotDraconium" + }, + "1:10": { + "id:8": "draconicevolution:info_tablet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:draconium_ingot", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "ingotDraconium" + } + } + } + } + }, + "724:10": { + "questID:3": 735, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:chaos_shard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "混沌守卫", + "desc:8": "一只非常强大的Boss,如果你没有足够强大的装备,它会一击秒杀你。打败它获得混沌碎片。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:chaos_shard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 60, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "725:10": { + "questID:3": 736, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:draconium_capacitor", + "Count:3": 1, + "tag:10": { + "Energy:3": 64000000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "通量容器", + "desc:8": "移动式能量电池。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:draconium_capacitor", + "Count:3": 1, + "tag:10": { + "Energy:3": 64000000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "726:10": { + "questID:3": 737, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:draconic_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神龙核心", + "desc:8": "合成用材料,可以放在刷怪笼上。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:draconic_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:draconic_core", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "727:10": { + "questID:3": 738, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "聚合合成", + "desc:8": "普通的合成方式无法满足高级的物品。这让我想到了QED。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:fusion_crafting_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "728:10": { + "questID:3": 739, + "preRequisites:11": [ + 738 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "飞龙聚合", + "desc:8": "制作飞龙等级的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "729:10": { + "questID:3": 740, + "preRequisites:11": [ + 739 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神龙聚合", + "desc:8": "制作神龙等级的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "730:10": { + "questID:3": 741, + "preRequisites:11": [ + 740 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "混沌聚合", + "desc:8": "制作所有聚合合成的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:crafting_injector", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "731:10": { + "questID:3": 742, + "preRequisites:11": [ + 736 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:draconium_capacitor", + "Count:3": 1, + "tag:10": { + "Energy:3": 256000000 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神龙通量电容", + "desc:8": "比起飞龙版本有着更大的容量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:draconium_capacitor", + "Count:3": 1, + "tag:10": { + "Energy:3": 256000000 + }, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "732:10": { + "questID:3": 743, + "preRequisites:11": [ + 737 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:wyvern_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "飞龙核心", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:wyvern_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:wyvern_core", + "Count:3": 8, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "733:10": { + "questID:3": 744, + "preRequisites:11": [ + 743 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:awakened_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "觉醒龙核心", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:awakened_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:awakened_core", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "734:10": { + "questID:3": 745, + "preRequisites:11": [ + 744 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:chaotic_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "混沌核心", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:chaotic_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:chaotic_core", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "735:10": { + "questID:3": 746, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": { + "Size:3": 27, + "Items:9": {} + } + }, + "id:8": "draconicevolution:draconic_staff_of_power", + "Count:3": 1, + "tag:10": { + "Energy:3": 48000000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神龙之力权杖", + "desc:8": "终极多合一工具,一不留神就会把你的基地拆掉。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": { + "Size:3": 27, + "Items:9": {} + } + }, + "id:8": "draconicevolution:draconic_staff_of_power", + "Count:3": 1, + "tag:10": { + "Energy:3": 48000000 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "736:10": { + "questID:3": 747, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:draconic_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "觉醒龙块", + "desc:8": "聚合合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:draconic_block", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "blockDraconiumAwakened" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "737:10": { + "questID:3": 748, + "preRequisites:11": [ + 734 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:dislocator_advanced", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神龙传送", + "desc:8": "传送到你之前所处的坐标,消耗末影珍珠。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:dislocator_advanced", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "738:10": { + "questID:3": 749, + "preRequisites:11": [ + 249 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "初级精华洒水壶", + "desc:8": "理论上有无限的水,范围3x3" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "739:10": { + "questID:3": 750, + "preRequisites:11": [ + 749 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中级精华洒水壶", + "desc:8": "理论上有无限的水,范围5x5" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "740:10": { + "questID:3": 751, + "preRequisites:11": [ + 750 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级精华洒水壶", + "desc:8": "理论上有无限的水,范围7x7" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "741:10": { + "questID:3": 752, + "preRequisites:11": [ + 751 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极精华洒水壶", + "desc:8": "理论上有无限的水,范围9x9" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "742:10": { + "questID:3": 753, + "preRequisites:11": [ + 291 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tp:watering_can_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化喷壶", + "desc:8": "理论上有无限的水,范围5x5" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "tp:watering_can_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "743:10": { + "questID:3": 754, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:boron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硼种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:boron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "744:10": { + "questID:3": 755, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中子素核心", + "desc:8": "需要放置在种植中子素种子的耕地下。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:special", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "745:10": { + "questID:3": 756, + "preRequisites:11": [ + 198, + 755 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagradditions:neutronium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中子素种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagradditions:neutronium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "746:10": { + "questID:3": 757, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "磁力图腾", + "desc:8": "5 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.magnetize.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "747:10": { + "questID:3": 758, + "preRequisites:11": [ + 472 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:end_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "复活末影龙", + "desc:8": "击杀第一条末影龙后,在末影祭坛四边的中心放上末影水晶以复活末影龙。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:end_crystal", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "748:10": { + "questID:3": 759, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "谜题羊", + "desc:8": "谜题羊稀有生成在谜题羊树丛中。\n\n它身上有着发光条纹。\n\n在玩家给谜题羊16种颜色的羊毛后,它就会返还玩家铁、金、绿宝石、青金石、钻石块和瓦解之号角。 \n\n谜题羊非常稀有,只会刷新在魔法森林的谜题羊树丛中。\n\n如果你找到了谜题羊树丛,但里面没有谜题羊,请耐心等待,直到刷出谜题羊。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "749:10": { + "questID:3": 760, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "娜迦", + "desc:8": "娜迦是暮色森林发展线中的第一只Boss,所以它和它的场地没有任何限制。\n\n击杀娜迦获得它的鳞片,这会解锁巫妖塔。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "750:10": { + "questID:3": 761, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "牛头人", + "desc:8": "击败牛头人会移除燃烧沼泽的保护,并且可以挑战九头蛇。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "751:10": { + "questID:3": 762, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "巫妖", + "desc:8": "击败巫妖并获得它的权杖,这会移除沼泽的保护,并且可以挑战牛头人。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "752:10": { + "questID:3": 763, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "九头蛇", + "desc:8": "击败九头蛇并获得它的血,然后你就可以前往黑暗森林了。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "753:10": { + "questID:3": 764, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "幻影骑士", + "desc:8": "打败幻影骑士能够让你进入黑暗森林中心的黑暗之塔。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "754:10": { + "questID:3": 765, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "暮色恶魂", + "desc:8": "击败暮色恶魂并获得它的眼泪,就能解禁冰雪森林。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "755:10": { + "questID:3": 766, + "preRequisites:11": [ + 84 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "冰雪女王", + "desc:8": "不要唱《Let It GO》\n\n击败冰雪女王后会停止高原的酸雨,并能够进入巨魔洞窟。\n\n当然,你还得去击败雪怪首领。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "twilightforest:trophy", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "756:10": { + "questID:3": 767, + "preRequisites:11": [ + 411 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子比特簇 II", + "desc:8": "能量存储" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "757:10": { + "questID:3": 768, + "preRequisites:11": [ + 708 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "机器框架", + "desc:8": "制作机器框架" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:machine_frame", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "758:10": { + "questID:3": 769, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:modular_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "模块化存储", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:modular_storage", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "759:10": { + "questID:3": 770, + "preRequisites:11": [ + 769 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:storage_module", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "存储模块等级1", + "desc:8": "用于模块化存储器中。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:storage_module", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "760:10": { + "questID:3": 771, + "preRequisites:11": [ + 770 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:storage_module", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "存储模块等级2", + "desc:8": "更多存储空间" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:storage_module", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "761:10": { + "questID:3": 772, + "preRequisites:11": [ + 771 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:storage_module", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "存储模块等级3", + "desc:8": "更多存储空间" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:storage_module", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "762:10": { + "questID:3": 773, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:crafter3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "合成机等级3", + "desc:8": "按下Shift查看它能够做什么,适合用作自动化。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:crafter3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "763:10": { + "questID:3": 774, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftoolsdim:dimension_builder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "维度构建器", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftoolsdim:dimension_builder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "764:10": { + "questID:3": 775, + "preRequisites:11": [ + 774 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:matter_transmitter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "物质传输器", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:matter_transmitter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "765:10": { + "questID:3": 776, + "preRequisites:11": [ + 774 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:matter_receiver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "物质接收器", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:matter_receiver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "766:10": { + "questID:3": 777, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:dialing_device", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传送控制器", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:dialing_device", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "rftoolsdim:empty_dimension_tab", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "767:10": { + "questID:3": 778, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftoolsdim:dimension_enscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "维度刻录器", + "desc:8": "混合/分解信息卡,并输入/输出到维度构建模板中。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftoolsdim:dimension_enscriber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "768:10": { + "questID:3": 779, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftoolsdim:dimlet_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "信息卡工作台", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftoolsdim:dimlet_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "769:10": { + "questID:3": 780, + "preRequisites:11": [ + 774 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "rftools:machine_infuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "机器注能机", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "rftools:machine_infuser", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "770:10": { + "questID:3": 781, + "preRequisites:11": [ + 768 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:charged_porter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传送器", + "desc:8": "按下Shift查看它能够做什么" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:charged_porter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "771:10": { + "questID:3": 782, + "preRequisites:11": [ + 781 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:advanced_charged_porter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级传送器", + "desc:8": "按住shift查看详细描述" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftools:advanced_charged_porter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "772:10": { + "questID:3": 783, + "preRequisites:11": [ + 782 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftoolsdim:phased_field_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "相场发生器", + "desc:8": "保护你在未充能维度免于死亡。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "rftoolsdim:phased_field_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "773:10": { + "questID:3": 784, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "armorplus:workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "工作台", + "desc:8": "制作套装的第一个工作台。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "armorplus:workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "774:10": { + "questID:3": 785, + "preRequisites:11": [ + 784 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "armorplus:high_tech_bench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高科工作台", + "desc:8": "制作套装的第二个工作台。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "armorplus:high_tech_bench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "775:10": { + "questID:3": 786, + "preRequisites:11": [ + 785 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "armorplus:ulti_tech_bench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极工作台", + "desc:8": "制作套装的第三个工作台。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "armorplus:ulti_tech_bench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "776:10": { + "questID:3": 787, + "preRequisites:11": [ + 786 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "armorplus:champion_bench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "冠军工作台", + "desc:8": "制作套装的第四个工作台。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "armorplus:champion_bench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "777:10": { + "questID:3": 788, + "preRequisites:11": [ + 784 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "皮革套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:leather_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "778:10": { + "questID:3": 789, + "preRequisites:11": [ + 790 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:coal_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "煤炭套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:coal_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:coal_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:coal_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:coal_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "779:10": { + "questID:3": 790, + "preRequisites:11": [ + 788 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_copper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铜套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_copper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_copper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_copper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_copper", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "780:10": { + "questID:3": 791, + "preRequisites:11": [ + 789 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_tin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锡套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_tin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_tin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_tin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_tin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "781:10": { + "questID:3": 792, + "preRequisites:11": [ + 793 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_electrum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "琥珀金套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_electrum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_electrum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_electrum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_electrum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "782:10": { + "questID:3": 793, + "preRequisites:11": [ + 797 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "银套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "783:10": { + "questID:3": 794, + "preRequisites:11": [ + 795 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_aluminum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铝套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_aluminum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_aluminum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_aluminum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_aluminum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "784:10": { + "questID:3": 795, + "preRequisites:11": [ + 791 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_black", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空水晶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_crystal_black", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_black", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_crystal_black", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_crystal_black", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "785:10": { + "questID:3": 796, + "preRequisites:11": [ + 792 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_constantan", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "康铜套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_constantan", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_constantan", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_constantan", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_constantan", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "786:10": { + "questID:3": 797, + "preRequisites:11": [ + 794 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:golden_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:golden_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:golden_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:golden_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:golden_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "787:10": { + "questID:3": 798, + "preRequisites:11": [ + 796 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:chainmail_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锁链套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:chainmail_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:chainmail_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:chainmail_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:chainmail_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "788:10": { + "questID:3": 799, + "preRequisites:11": [ + 798 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_nickel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "镍套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_nickel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_nickel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_nickel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_nickel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "789:10": { + "questID:3": 800, + "preRequisites:11": [ + 799 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_lead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铅套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_lead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_lead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_lead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_lead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "790:10": { + "questID:3": 801, + "preRequisites:11": [ + 817 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:osmiumchestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锇套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:osmiumhelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:osmiumchestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:osmiumleggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:osmiumboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "791:10": { + "questID:3": 802, + "preRequisites:11": [ + 800 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:iron_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:iron_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:iron_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:iron_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:iron_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "792:10": { + "questID:3": 803, + "preRequisites:11": [ + 809 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_white", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁晶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_crystal_white", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_white", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_crystal_white", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_crystal_white", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "793:10": { + "questID:3": 804, + "preRequisites:11": [ + 816 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "焦黑石英套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_quartz", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "794:10": { + "questID:3": 806, + "preRequisites:11": [ + 802 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:lapis_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青金石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:lapis_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:lapis_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:lapis_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:lapis_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "795:10": { + "questID:3": 807, + "preRequisites:11": [ + 806 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_bronze", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青铜套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_bronze", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_bronze", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_bronze", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_bronze", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "796:10": { + "questID:3": 809, + "preRequisites:11": [ + 801 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:redstone_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:redstone_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:redstone_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:redstone_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:redstone_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "797:10": { + "questID:3": 810, + "preRequisites:11": [ + 803 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青金石水晶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_crystal_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_crystal_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_crystal_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "798:10": { + "questID:3": 811, + "preRequisites:11": [ + 810 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_red", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石水晶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_crystal_red", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_red", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_crystal_red", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_crystal_red", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "799:10": { + "questID:3": 812, + "preRequisites:11": [ + 807 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_invar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "殷钢套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_invar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_invar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_invar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_invar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "800:10": { + "questID:3": 813, + "preRequisites:11": [ + 819 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_light_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石水晶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_crystal_light_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_light_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_crystal_light_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_crystal_light_blue", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "801:10": { + "questID:3": 814, + "preRequisites:11": [ + 815 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:diamond_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:diamond_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:diamond_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:diamond_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "minecraft:diamond_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "802:10": { + "questID:3": 815, + "preRequisites:11": [ + 811 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:obsidian_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑曜石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:obsidian_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:obsidian_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:obsidian_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:obsidian_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "803:10": { + "questID:3": 816, + "preRequisites:11": [ + 812 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_steel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "804:10": { + "questID:3": 817, + "preRequisites:11": [ + 804 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_boron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硼套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:helm_boron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_boron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:legs_boron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:boots_boron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "805:10": { + "questID:3": 818, + "preRequisites:11": [ + 814 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:emerald_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:emerald_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:emerald_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:emerald_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:emerald_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "806:10": { + "questID:3": 819, + "preRequisites:11": [ + 818 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_platinum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铂套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.helmet_platinum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.plate_platinum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.legs_platinum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "thermalfoundation:armor.boots_platinum", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "807:10": { + "questID:3": 820, + "preRequisites:11": [ + 813 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_green", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿宝石水晶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_helm_crystal_green", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_chest_crystal_green", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_pants_crystal_green", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "actuallyadditions:item_boots_crystal_green", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "808:10": { + "questID:3": 821, + "preRequisites:11": [ + 823 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:knight_slime_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "骑士史莱姆套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:knight_slime_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:knight_slime_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:knight_slime_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:knight_slime_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "809:10": { + "questID:3": 822, + "preRequisites:11": [ + 785 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:cobalt_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钴套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:cobalt_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:cobalt_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:cobalt_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:cobalt_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "810:10": { + "questID:3": 823, + "preRequisites:11": [ + 822 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ardite_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "阿迪特套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ardite_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ardite_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ardite_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ardite_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "811:10": { + "questID:3": 824, + "preRequisites:11": [ + 825 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:manyullyn_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "马玉灵套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:manyullyn_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:manyullyn_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:manyullyn_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:manyullyn_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "812:10": { + "questID:3": 825, + "preRequisites:11": [ + 829 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:ironwood_chestplate", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁木套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:ironwood_helmet", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 6 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:ironwood_chestplate", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:ironwood_leggings", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:ironwood_boots", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 2 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "813:10": { + "questID:3": 826, + "preRequisites:11": [ + 835 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精制珊瑚套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corhelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corlegs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "814:10": { + "questID:3": 827, + "preRequisites:11": [ + 828 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:glowstonechestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "荧石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:glowstonehelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:glowstonechestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:glowstoneleggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:glowstoneboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "815:10": { + "questID:3": 828, + "preRequisites:11": [ + 824 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_hard_carbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硬碳套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:helm_hard_carbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_hard_carbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:legs_hard_carbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:boots_hard_carbon", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "816:10": { + "questID:3": 829, + "preRequisites:11": [ + 821 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:arctic_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "极地套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:arctic_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:arctic_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:arctic_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:arctic_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "817:10": { + "questID:3": 830, + "preRequisites:11": [ + 827 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_tough", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高强合金套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:helm_tough", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_tough", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:legs_tough", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:boots_tough", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "818:10": { + "questID:3": 831, + "preRequisites:11": [ + 833 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:yeti_chestplate", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "雪怪套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:yeti_helmet", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:yeti_chestplate", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:yeti_leggings", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 0 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:yeti_boots", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:3": 2, + "id:3": 0 + }, + "1:10": { + "lvl:3": 4, + "id:3": 2 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "819:10": { + "questID:3": 832, + "preRequisites:11": [ + 830 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:steeleaf_chestplate", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 3 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢叶套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:steeleaf_helmet", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 4 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:steeleaf_chestplate", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 3 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:steeleaf_leggings", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 1 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:steeleaf_boots", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 2, + "id:2": 2 + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "820:10": { + "questID:3": 833, + "preRequisites:11": [ + 832 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:knightmetal_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "骑士金属套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:knightmetal_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:knightmetal_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:knightmetal_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:knightmetal_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "821:10": { + "questID:3": 834, + "preRequisites:11": [ + 831 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:aplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "深渊套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:ahelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:aplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:alegs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:aboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "822:10": { + "questID:3": 835, + "preRequisites:11": [ + 834 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧深渊套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dhelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dlegs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "823:10": { + "questID:3": 836, + "preRequisites:11": [ + 826 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧金属套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumhelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumlegs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "824:10": { + "questID:3": 837, + "preRequisites:11": [ + 839 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:infused_lava_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灌注熔岩套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:infused_lava_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:infused_lava_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:infused_lava_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:infused_lava_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "825:10": { + "questID:3": 838, + "preRequisites:11": [ + 837 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumsamuraiplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧武士套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumsamuraihelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumsamuraiplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumsamurailegs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:dreadiumsamuraiboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "826:10": { + "questID:3": 839, + "preRequisites:11": [ + 836 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_boron_nitride", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "氮化硼套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:helm_boron_nitride", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:chest_boron_nitride", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:legs_boron_nitride", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "nuclearcraft:boots_boron_nitride", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "827:10": { + "questID:3": 840, + "preRequisites:11": [ + 838 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:ethaxiumplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "伊桑斯套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:ethaxiumhelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:ethaxiumplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:ethaxiumlegs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:ethaxiumboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "828:10": { + "questID:3": 841, + "preRequisites:11": [ + 840 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:guardian_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "守卫者套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:guardian_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:guardian_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:guardian_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:guardian_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "829:10": { + "questID:3": 842, + "preRequisites:11": [ + 841 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:super_star_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下界之星套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:super_star_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:super_star_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:super_star_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:super_star_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "830:10": { + "questID:3": 843, + "preRequisites:11": [ + 842 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:fiery_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炽铁套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:fiery_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:fiery_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:fiery_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "twilightforest:fiery_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "831:10": { + "questID:3": 844, + "preRequisites:11": [ + 843 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corplatep", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "珊瑚板套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corhelmetp", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corplatep", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corlegsp", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "abyssalcraft:corbootsp", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "832:10": { + "questID:3": 845, + "preRequisites:11": [ + 844 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:obsidianchestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化黑曜石套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:obsidianhelmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:obsidianchestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:obsidianleggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismtools:obsidianboots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "833:10": { + "questID:3": 846, + "preRequisites:11": [ + 845 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ender_dragon_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影龙套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ender_dragon_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ender_dragon_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ender_dragon_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:ender_dragon_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "834:10": { + "questID:3": 847, + "preRequisites:11": [ + 786 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:inferium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下级精华套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:inferium_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:inferium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:inferium_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:inferium_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "835:10": { + "questID:3": 848, + "preRequisites:11": [ + 847 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:prudentium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "初级精华套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:prudentium_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:prudentium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:prudentium_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:prudentium_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "836:10": { + "questID:3": 849, + "preRequisites:11": [ + 848 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:intermedium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中级精华套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:intermedium_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:intermedium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:intermedium_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:intermedium_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "837:10": { + "questID:3": 850, + "preRequisites:11": [ + 849 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:superium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级精华套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:superium_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:superium_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:superium_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:superium_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "838:10": { + "questID:3": 851, + "preRequisites:11": [ + 850 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:supremium_chestplate", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极精华套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:supremium_helmet", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:supremium_chestplate", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:supremium_leggings", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:supremium_boots", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "839:10": { + "questID:3": 852, + "preRequisites:11": [ + 787 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_dm_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑暗物质套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_dm_armor_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_dm_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_dm_armor_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_dm_armor_0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "840:10": { + "questID:3": 853, + "preRequisites:11": [ + 1129 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红物质套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_armor_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_armor_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_rm_armor_0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "841:10": { + "questID:3": 854, + "preRequisites:11": [ + 1119 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "redstonearsenal:armor.plate_flux", + "Count:3": 1, + "tag:10": { + "Energy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石充能套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "redstonearsenal:armor.helmet_flux", + "Count:3": 1, + "tag:10": { + "Energy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "redstonearsenal:armor.plate_flux", + "Count:3": 1, + "tag:10": { + "Energy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "redstonearsenal:armor.legs_flux", + "Count:3": 1, + "tag:10": { + "Energy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "redstonearsenal:armor.boots_flux", + "Count:3": 1, + "tag:10": { + "Energy:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "842:10": { + "questID:3": 855, + "preRequisites:11": [ + 856 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:wyvern_chest", + "Count:3": 1, + "tag:10": { + "Energy:3": 4000000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "飞龙套装", + "desc:8": "套装套娃线。聚合合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:wyvern_helm", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:wyvern_chest", + "Count:3": 1, + "tag:10": { + "Energy:3": 4000000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "draconicevolution:wyvern_legs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "draconicevolution:wyvern_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "843:10": { + "questID:3": 856, + "preRequisites:11": [ + 853 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:the_ultimate_chestplate", + "Count:3": 1, + "tag:10": { + "unbreakable:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极套装", + "desc:8": "套装套娃线。聚合合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:the_ultimate_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:the_ultimate_chestplate", + "Count:3": 1, + "tag:10": { + "unbreakable:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:the_ultimate_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "armorplus:the_ultimate_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "844:10": { + "questID:3": 857, + "preRequisites:11": [ + 855 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_gem_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "宝石套装", + "desc:8": "套装套娃线。聚合合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_gem_armor_3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_gem_armor_2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_gem_armor_1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "projecte:item.pe_gem_armor_0", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "845:10": { + "questID:3": 858, + "preRequisites:11": [ + 857 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "draconicevolution:draconic_chest", + "Count:3": 1, + "tag:10": { + "Energy:3": 16000000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "神龙套装", + "desc:8": "套装套娃线。聚合合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "draconicevolution:draconic_helm", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "draconicevolution:draconic_chest", + "Count:3": 1, + "tag:10": { + "Energy:3": 16000000 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "draconicevolution:draconic_legs", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "draconicevolution:draconic_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "846:10": { + "questID:3": 859, + "preRequisites:11": [ + 606, + 858 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "overloaded:multi_helmet", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "多功能套装", + "desc:8": "与无尽套相同,但需要能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "overloaded:multi_helmet", + "Count:3": 1, + "tag:10": { + "IntEnergyStorage:3": 2147483647 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "overloaded:multi_chestplate", + "Count:3": 1, + "tag:10": { + "IntEnergyStorage:3": 2147483647 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "overloaded:multi_leggings", + "Count:3": 1, + "tag:10": { + "IntEnergyStorage:3": 2147483647 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "overloaded:multi_boots", + "Count:3": 1, + "tag:10": { + "IntEnergyStorage:3": 2147483647 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "847:10": { + "questID:3": 860, + "preRequisites:11": [ + 192 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下级精华套装核心", + "desc:8": "用于制作下级精华套装." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "848:10": { + "questID:3": 861, + "preRequisites:11": [ + 860 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "初级精华套装核心", + "desc:8": "用于制作初级精华套装." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "849:10": { + "questID:3": 862, + "preRequisites:11": [ + 861 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中级精华套装核心", + "desc:8": "用于制作中级精华套装." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "850:10": { + "questID:3": 863, + "preRequisites:11": [ + 862 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级精华套装核心", + "desc:8": "用于制作高级精华套装." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "851:10": { + "questID:3": 864, + "preRequisites:11": [ + 863 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极精华套装核心", + "desc:8": "用于制作终极精华套装." + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:gear", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "852:10": { + "questID:3": 865, + "preRequisites:11": [ + 41 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:tnt", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "爆炸!", + "desc:8": "气动工艺始于爆炸。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "minecraft:tnt", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "853:10": { + "questID:3": 866, + "preRequisites:11": [ + 605 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritiatweaks:enhancement_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无暇水晶", + "desc:8": "用于制作无暇的无尽套装/工具。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "avaritiatweaks:enhancement_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "854:10": { + "questID:3": 867, + "preRequisites:11": [ + 871 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "equivalentintegrations:transmutation_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "转化处理仓", + "desc:8": "将它连接到你的ME网络中。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "equivalentintegrations:transmutation_chamber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "855:10": { + "questID:3": 868, + "preRequisites:11": [ + 867 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "equivalentintegrations:transmutation_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "转化发电机", + "desc:8": "使用EMC产能" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "equivalentintegrations:transmutation_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "856:10": { + "questID:3": 869, + "preRequisites:11": [ + 867 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "equivalentintegrations:alchemical_algorithms", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炼金日志", + "desc:8": "让转化仓能够学习新的有EMC的物品。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "equivalentintegrations:alchemical_algorithms", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "857:10": { + "questID:3": 870, + "preRequisites:11": [ + 867 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "equivalentintegrations:efficiency_catalyst", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "效率催化", + "desc:8": "增加转化机器的效率。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "equivalentintegrations:efficiency_catalyst", + "Count:3": 4, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "858:10": { + "questID:3": 871, + "preRequisites:11": [ + 133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "equivalentintegrations:soulbound_talisman", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灵魂绑定", + "desc:8": "右键绑定到玩家。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "equivalentintegrations:soulbound_talisman", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "859:10": { + "questID:3": 872, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "actuallyadditions:block_furnace_solar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "整天都是太阳能", + "desc:8": "在一个只有白天的维度放置中子太阳能板并使用空间传送器或量子传送装置传输能量。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 27, + "TrophyItem:10": { + "id:8": "solarflux:solar_panel_neutronium", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 27, + "TrophyName:8": "收获阳光", + "TrophyColorRed:3": 30 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "860:10": { + "questID:3": 873, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extrautils2:passivegenerator", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "整天都是月光能", + "desc:8": "在一个只有夜晚的维度放置月光太阳能板,并使用空间传送器或量子传送装置传输能量。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 137, + "TrophyItem:10": { + "id:8": "thermalsolars:blocksolarpanel103", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 211, + "TrophyName:8": "清探月光", + "TrophyColorRed:3": 102 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "861:10": { + "questID:3": 874, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粗制钢", + "desc:8": "沙砾 + 粘土 + 圆石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "862:10": { + "questID:3": 875, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁合金", + "desc:8": "铁 + 几乎其他所有的锭" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "863:10": { + "questID:3": 876, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能合金锭", + "desc:8": "银 + 红石 + 荧石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 12, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "864:10": { + "questID:3": 877, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶化合金锭", + "desc:8": "脉冲水晶粉 + 金 " + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 12, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "865:10": { + "questID:3": 878, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲合金锭", + "desc:8": "充能合金锭 + 末影珍珠" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 12, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "866:10": { + "questID:3": 879, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恒星合金锭", + "desc:8": "下界之星 + 2 粘土 + 旋律合金锭" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 12, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "867:10": { + "questID:3": 880, + "preRequisites:11": [ + 165 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:yahhammer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "地狱铁砧", + "desc:8": "必须放置在岩浆块上。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:anvil", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "868:10": { + "questID:3": 881, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:upgradeb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "效率升级", + "desc:8": "减少能量消耗" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:upgradeb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:upgradeb", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:upgradeb", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "869:10": { + "questID:3": 882, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "速度升级", + "desc:8": "减少生成怪物的时间间隔。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "870:10": { + "questID:3": 883, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:importer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Woot输入,输出和能量", + "desc:8": "Woot多方块的一部分" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:importer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:exporter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:cell", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:cell", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:cell", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "871:10": { + "questID:3": 884, + "preRequisites:11": [ + 887 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:endershard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影碎片", + "desc:8": "请阅读它的tooltips" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:endershard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:endershard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "872:10": { + "questID:3": 885, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "战利品升级", + "desc:8": "增加从怪物身上获取的战利品数量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "873:10": { + "questID:3": 886, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "数量升级", + "desc:8": "增加Woot多方块结构生成的怪物数量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "874:10": { + "questID:3": 887, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:stygianironplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "地狱模具", + "desc:8": "合成模板" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:die", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:die", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:die", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "woot:die", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "875:10": { + "questID:3": 888, + "preRequisites:11": [ + 887 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:layout", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Woot多方块结构", + "desc:8": "如果你想减少实体卡顿的话,它会是最好的选择。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:factory", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:layout", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "4:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "6:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "7:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "8:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "9:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "10:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "11:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "12:10": { + "id:8": "woot:structure", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "876:10": { + "questID:3": 889, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "斩首升级", + "desc:8": "增加获得怪物头颅的几率" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "877:10": { + "questID:3": 890, + "preRequisites:11": [ + 880 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "经验升级", + "desc:8": "让怪物掉落经验碎片" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "1:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "2:10": { + "id:8": "woot:upgrade", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "878:10": { + "questID:3": 891, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:thermopile", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "温差电堆", + "desc:8": "从冷热材料中产生能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:thermopile", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "879:10": { + "questID:3": 892, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:wind_turbine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "风力涡轮机", + "desc:8": "使用风产生能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:wind_turbine", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "880:10": { + "questID:3": 893, + "preRequisites:11": [ + 892 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "能量传输", + "desc:8": "传输能量,与IE相似。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:copper_coil", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "magneticraft:connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "881:10": { + "questID:3": 894, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:solar_panel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能板", + "desc:8": "借助太阳能产生能量。右键将投影放置到地面上以开始搭建多方块结构。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "magneticraft:solar_panel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "882:10": { + "questID:3": 895, + "preRequisites:11": [ + 893 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:battery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电池", + "desc:8": "存储能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:battery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "883:10": { + "questID:3": 896, + "preRequisites:11": [ + 75 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:grinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粉碎机", + "desc:8": "将物品粉碎成更多零散部件。右键将投影放置到地面上以开始搭建多方块结构。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:grinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 8, + "Damage:2": 5, + "OreDict:8": "" + }, + "4:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "5:10": { + "id:8": "magneticraft:multiblock_parts", + "Count:3": 8, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "884:10": { + "questID:3": 897, + "preRequisites:11": [ + 697 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "aroma1997sdimension:miningmultitool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "挖矿维度", + "desc:8": "有昼夜交替,但是不会自然生成怪物,仅在刷怪笼或相似方块周围刷新怪物。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "aroma1997sdimension:miningmultitool", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "885:10": { + "questID:3": 898, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础战利品箱", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "886:10": { + "questID:3": 899, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 50, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "更好的战利品箱", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 40, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 50, + "OreDict:8": "" + } + } + } + } + }, + "887:10": { + "questID:3": 900, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 75, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "史诗战利品箱", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 80, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 75, + "OreDict:8": "" + } + } + } + } + }, + "888:10": { + "questID:3": 901, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 100, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传说战利品箱", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 120, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 100, + "OreDict:8": "" + } + } + } + } + }, + "889:10": { + "questID:3": 902, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 101, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "???战利品箱", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 90, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 101, + "OreDict:8": "" + } + } + } + } + }, + "890:10": { + "questID:3": 903, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "普通战利品箱", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bq_standard:loot_chest", + "Count:3": 1, + "Damage:2": 25, + "OreDict:8": "" + } + } + } + } + }, + "891:10": { + "questID:3": 904, + "preRequisites:11": [ + 11 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:growth_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生长水晶 I", + "desc:8": "缩短作物生长的时间" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:growth_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "892:10": { + "questID:3": 905, + "preRequisites:11": [ + 904 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:growth_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生长水晶 II", + "desc:8": "缩短作物生长的时间" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:growth_upgrade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "893:10": { + "questID:3": 906, + "preRequisites:11": [ + 905 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "tp:growth_upgrade_two", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生长水晶 III", + "desc:8": "缩短作物生长的时间" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "tp:growth_upgrade_two", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "894:10": { + "questID:3": 907, + "preRequisites:11": [ + 1 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "yabba:item_barrel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "更好的桶", + "desc:8": "存储大量同种物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "yabba:item_barrel", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "895:10": { + "questID:3": 908, + "preRequisites:11": [ + 907 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "yabba:hammer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "YABBA锤", + "desc:8": "能让你改变桶的外形" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "yabba:hammer", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "yabba:painter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "896:10": { + "questID:3": 909, + "preRequisites:11": [ + 907 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "yabba:item_barrel_connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "桶控制器", + "desc:8": "有与抽屉控制器差不多的功能" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "yabba:item_barrel_connector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "897:10": { + "questID:3": 910, + "preRequisites:11": [ + 907 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_iron_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁等级", + "desc:8": "4x存储容量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_iron_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "898:10": { + "questID:3": 911, + "preRequisites:11": [ + 910 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_gold_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "金等级", + "desc:8": "16x存储容量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_gold_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "899:10": { + "questID:3": 912, + "preRequisites:11": [ + 911 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_diamond_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钻石等级", + "desc:8": "64x存储容量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_diamond_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "900:10": { + "questID:3": 913, + "preRequisites:11": [ + 912 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_star_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无限等级", + "desc:8": "无限容量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_star_tier", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "901:10": { + "questID:3": 914, + "preRequisites:11": [ + 907 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空桶升级", + "desc:8": "销毁超过容量的物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": {} + }, + "id:8": "yabba:upgrade_void", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "902:10": { + "questID:3": 915, + "preRequisites:11": [ + 67 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "erebus:altar_offering", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "奉献桌", + "desc:8": "奉献一个黑曜石,一个绿宝石和一个钻石。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "erebus:altar_offering", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "903:10": { + "questID:3": 916, + "preRequisites:11": [ + 918 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "erebus:gaean_keystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "盖亚楔石", + "desc:8": "放在erebus传送门框架前" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "erebus:gaean_keystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "904:10": { + "questID:3": 917, + "preRequisites:11": [ + 919 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "erebus:antlion_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蚁狮领主", + "desc:8": "它没有第二阶段,但它在战斗中会一直追你。\n挑战它之前请确保你有足够强力的装备。\n蚁狮领主喜欢把玩家弄得团团转。进入地牢后,爬到金字塔的中心顶端,你会看见四个特殊的金字塔拱顶石。它们有四个种类,泥、铁、金、和玉,中心有一个插槽。它们会解锁金字塔。想要找到插入插槽的东西,你需要在金字塔迷宫四角分别找到元素棕石傀儡。将每种神像放入相应的拱顶石插槽中即可开启大门。" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "Attributes:9": { + "0:10": { + "Base:6": 400.0, + "Name:8": "generic.maxHealth" + }, + "1:10": { + "Base:6": 0.75, + "Name:8": "generic.knockbackResistance" + }, + "2:10": { + "Base:6": 0.5, + "Name:8": "generic.movementSpeed" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "5:10": { + "Base:6": 48.0, + "Name:8": "generic.followRange" + }, + "6:10": { + "Base:6": 6.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "spawnPointY:3": 0, + "spawnPointZ:3": 0, + "DeathTime:2": 0, + "spawnPointX:3": 0, + "inPyramid:1": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "erebus:erebus.antlion_boss", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -5963218945273848909, + "Health:5": 400.0, + "LeftHanded:1": 0, + "Air:2": 0, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 0.0, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 5401614442358784267, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": 0, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "erebus:erebus.antlion_boss", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "905:10": { + "questID:3": 918, + "preRequisites:11": [ + 915 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:portal_activator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "盖亚权杖", + "desc:8": "放在盖亚楔石上以激活传送门。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:portal_activator", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "906:10": { + "questID:3": 919, + "preRequisites:11": [ + 916 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:stonebrick", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "前往Erebus", + "desc:8": "传送门框架与地狱门一样,只不过其中的空格换成了树叶。传送门也可以水平搭建。树叶周围的方块可以换成其他方块。框架可以垂直放置,也可以水平放置。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "erebus:leaves_eucalyptus", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "treeLeaves" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "907:10": { + "questID:3": 920, + "preRequisites:11": [ + 919 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "erebus:tarantula_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "狼育母", + "desc:8": "狼育母树现在被移动到了隐秘之地中的巨型桉树里。这个Boss有两个阶段,每个阶段都会免疫一种类型的伤害。" + } + }, + "tasks:9": { + "0:10": { + "ignoreNBT:1": 1, + "index:3": 0, + "targetNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "Attributes:9": { + "0:10": { + "Base:6": 300.0, + "Name:8": "generic.maxHealth" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.knockbackResistance" + }, + "2:10": { + "Base:6": 0.9, + "Name:8": "generic.movementSpeed" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "5:10": { + "Base:6": 32.0, + "Name:8": "generic.followRange" + }, + "6:10": { + "Base:6": 8.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": {}, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "erebus:erebus.tarantula_mini_boss", + "Motion:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -7593923008071502457, + "Health:5": 300.0, + "LeftHanded:1": 0, + "Air:2": 0, + "OnGround:1": 0, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 0.0, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": -2301255474146882617, + "Pos:9": { + "0:6": 0.0, + "1:6": 0.0, + "2:6": 0.0 + }, + "Fire:2": 0, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + }, + "damageType:8": "", + "required:3": 1, + "taskID:8": "bq_standard:hunt", + "target:8": "erebus:erebus.tarantula_mini_boss", + "subtypes:1": 0 + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "908:10": { + "questID:3": 921, + "preRequisites:11": [ + 362, + 917 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:wand_of_animation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "活化之杖", + "desc:8": "如果你玩过PO1或PO2,你就会知道这个东西。它可以将方块活化成怪物,击杀这些怪物会掉落对应的方块,如果你能实现自动刷怪,那么它会非常实用。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:wand_of_animation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "909:10": { + "questID:3": 922, + "preRequisites:11": [ + 68 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "guideapi:bloodmagic-guide", + "Count:3": 1, + "tag:10": { + "G-API_Category_Page:3": 0, + "G-API_Entry_Page:3": 0, + "G-API_Page:3": 7 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "鲜血魔法", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "guideapi:bloodmagic-guide", + "Count:3": 1, + "tag:10": { + "G-API_Category_Page:3": 0, + "G-API_Entry_Page:3": 0, + "G-API_Page:3": 7 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "bloodmagic:soul_snare", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "910:10": { + "questID:3": 923, + "preRequisites:11": [ + 924 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:soul_forge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "狱火熔炉", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:soul_forge", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "911:10": { + "questID:3": 924, + "preRequisites:11": [ + 922 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:soul_snare", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恶魔意志", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:monster_soul", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "912:10": { + "questID:3": 925, + "preRequisites:11": [ + 928 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sacrificial_dagger", + "Count:3": 1, + "tag:10": { + "sacrifice:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "牺牲匕首", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sacrificial_dagger", + "Count:3": 1, + "tag:10": { + "sacrifice:1": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sigil_divination", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "913:10": { + "questID:3": 926, + "preRequisites:11": [ + 928 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:weak" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚弱气血宝珠", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:weak" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "914:10": { + "questID:3": 927, + "preRequisites:11": [ + 923 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:arcane_ashes", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "奥术粉灰", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:arcane_ashes", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "915:10": { + "questID:3": 928, + "preRequisites:11": [ + 922 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "血之祭坛", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "916:10": { + "questID:3": 929, + "preRequisites:11": [ + 923 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[微小]地狱魂石", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "917:10": { + "questID:3": 930, + "preRequisites:11": [ + 929 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sentient_sword", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "感知之剑", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sentient_sword", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "918:10": { + "questID:3": 931, + "preRequisites:11": [ + 929 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[细块]地狱魂石", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "919:10": { + "questID:3": 932, + "preRequisites:11": [ + 931 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[普通]地狱魂石", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "920:10": { + "questID:3": 933, + "preRequisites:11": [ + 932 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[较大]地狱魂石", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "921:10": { + "questID:3": 934, + "preRequisites:11": [ + 933 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[精制]地狱魂石", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:soul_gem", + "Count:3": 1, + "tag:10": {}, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "922:10": { + "questID:3": 935, + "preRequisites:11": [ + 930 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sentient_armour_gem", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "感知套装", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sentient_armour_gem", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "923:10": { + "questID:3": 936, + "preRequisites:11": [ + 928 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:incense_altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "熏香祭坛", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:incense_altar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "924:10": { + "questID:3": 937, + "preRequisites:11": [ + 926 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:apprentice" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[学徒]气血宝珠", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:apprentice" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "925:10": { + "questID:3": 938, + "preRequisites:11": [ + 937 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:magician" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[法师]气血宝珠", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:magician" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "926:10": { + "questID:3": 939, + "preRequisites:11": [ + 938 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:master" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[导师]气血宝珠", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:master" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "927:10": { + "questID:3": 940, + "preRequisites:11": [ + 939 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:archmage" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "[贤者]气血宝珠", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:blood_orb", + "Count:3": 1, + "tag:10": { + "orb:8": "bloodmagic:archmage" + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "928:10": { + "questID:3": 941, + "preRequisites:11": [ + 928 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "符文", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "1:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "2:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "3:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "4:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "5:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "6:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "7:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "8:10": { + "id:8": "bloodmagic:blood_rune", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "929:10": { + "questID:3": 942, + "preRequisites:11": [ + 925 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:dagger_of_sacrifice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "献祭刀", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:dagger_of_sacrifice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "930:10": { + "questID:3": 943, + "preRequisites:11": [ + 928 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sanguine_book", + "Count:3": 1, + "tag:10": { + "currentTier:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "升级血之祭坛", + "desc:8": "阅读血染知书获得更多信息" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "bloodmagic:sanguine_book", + "Count:3": 1, + "tag:10": { + "currentTier:3": 0 + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "931:10": { + "questID:3": 946, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.night_vision.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "夜视图腾", + "desc:8": "64 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.night_vision.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "932:10": { + "questID:3": 947, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "飞行图腾", + "desc:8": "768 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 768, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "933:10": { + "questID:3": 948, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "旋律合金锭", + "desc:8": "末影钢锭 + 爆裂紫颂果" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 12, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "934:10": { + "questID:3": 949, + "preRequisites:11": [ + 950 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:ender_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影合成", + "desc:8": "与QED的工作方式相同,唯一不同的是,它只会搜索每个方向附近三格内的末影发电机。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:ender_crafter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "extendedcrafting:ender_alternator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "935:10": { + "questID:3": 950, + "preRequisites:11": [ + 41 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "ingotEnder" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影锭", + "desc:8": "铁 + 末影珍珠,在合成台中合成" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "ingotEnder" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "936:10": { + "questID:3": 951, + "preRequisites:11": [ + 959 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_simple_stirling_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "简易斯特林发电机", + "desc:8": "不需要电容。使用可燃烧物品的发电机。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_simple_stirling_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "937:10": { + "questID:3": 952, + "preRequisites:11": [ + 959 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_simple_alloy_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "简易合金炉", + "desc:8": "不需要电容。制作EIO合金的机器" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_simple_alloy_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "938:10": { + "questID:3": 953, + "preRequisites:11": [ + 959 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_simple_sag_mill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "简易SAG磨粉机", + "desc:8": "不需要电容。处理金属粉的机器" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_simple_sag_mill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "939:10": { + "questID:3": 954, + "preRequisites:11": [ + 951, + 961 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_stirling_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "斯特林发电机", + "desc:8": "需要电容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_stirling_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "940:10": { + "questID:3": 955, + "preRequisites:11": [ + 961 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_alloy_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "合金炉", + "desc:8": "需要电容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_alloy_smelter", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "941:10": { + "questID:3": 956, + "preRequisites:11": [ + 961 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_sag_mill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "磨粉机", + "desc:8": "需要电容" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_sag_mill", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "942:10": { + "questID:3": 957, + "preRequisites:11": [ + 961 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_combustion_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "燃烧发电机", + "desc:8": "使用\"可燃烧\"流体产生能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_combustion_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "943:10": { + "questID:3": 958, + "preRequisites:11": [ + 957 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_enhanced_combustion_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化燃烧发电机", + "desc:8": "燃烧发电机的强化版本" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_enhanced_combustion_generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "944:10": { + "questID:3": 959, + "preRequisites:11": [ + 960 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "itemSimpleMachineChassi" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "机器框架模具", + "desc:8": "简易机器的基础" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "945:10": { + "questID:3": 960, + "preRequisites:11": [ + 950 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "dustBedrock" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基岩粉", + "desc:8": "在基岩上点火并等待一段时间,自然熄灭或手动扑灭都可以有几率获得基岩粉。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 20, + "OreDict:8": "dustBedrock" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "946:10": { + "questID:3": 961, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "itemMachineChassi" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "机器框架", + "desc:8": "用于制作更高级的EIO机器" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "itemMachineChassi" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "947:10": { + "questID:3": 962, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "导电铁", + "desc:8": "铁 + 红石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 4, + "OreDict:8": "ingotConductive铁" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "948:10": { + "questID:3": 963, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石合金", + "desc:8": "红石 + 硅" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 3, + "OreDict:8": "ingot红石Alloy" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "949:10": { + "questID:3": 964, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "磁钢", + "desc:8": "铁 + 硅 + 煤炭粉" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "ingotElectrical钢" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "950:10": { + "questID:3": 965, + "preRequisites:11": [ + 967 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲合金", + "desc:8": "充能合金 + 末影珍珠" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 2, + "OreDict:8": "ingotVibrantAlloy" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "951:10": { + "questID:3": 966, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲铁", + "desc:8": "铁 + 末影珍珠" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 5, + "OreDict:8": "ingotPulsating铁" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "952:10": { + "questID:3": 967, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能合金", + "desc:8": "金 + 红石 + 荧石" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 1, + "OreDict:8": "ingotEnergeticAlloy" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "953:10": { + "questID:3": 968, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "玄钢", + "desc:8": "铁 + 黑曜石 + 煤炭粉" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 6, + "OreDict:8": "ingotDark钢" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "954:10": { + "questID:3": 969, + "preRequisites:11": [ + 767 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子比特簇 III", + "desc:8": "能量存储" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "955:10": { + "questID:3": 970, + "preRequisites:11": [ + 378 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_slice_and_splice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "头颅装配机", + "desc:8": "将怪物头颅与其他材料混合" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_slice_and_splice", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "956:10": { + "questID:3": 971, + "preRequisites:11": [ + 970 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_soul_binder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "灵魂绑定器", + "desc:8": "绑定灵魂来制作水晶材料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_soul_binder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "957:10": { + "questID:3": 972, + "preRequisites:11": [ + 964 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_cap_bank", + "Count:3": 1, + "tag:10": { + "enderio:energy:3": 31000 + }, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础电容库", + "desc:8": "最大存储1,000,000 FE" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_cap_bank", + "Count:3": 1, + "tag:10": { + "enderio:energy:3": 31000 + }, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "958:10": { + "questID:3": 973, + "preRequisites:11": [ + 972 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_cap_bank", + "Count:3": 1, + "tag:10": { + "enderio:energy:3": 155000 + }, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电容库", + "desc:8": "最大存储5,000,000 FE" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_cap_bank", + "Count:3": 1, + "tag:10": { + "enderio:energy:3": 155000 + }, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "959:10": { + "questID:3": 974, + "preRequisites:11": [ + 973 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_cap_bank", + "Count:3": 1, + "tag:10": { + "enderio:energy:3": 124000 + }, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲电容库", + "desc:8": "最大存储25,000,000 FE" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_cap_bank", + "Count:3": 1, + "tag:10": { + "enderio:energy:3": 124000 + }, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "960:10": { + "questID:3": 975, + "preRequisites:11": [ + 1084 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_basic_capacitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_basic_capacitor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "961:10": { + "questID:3": 976, + "preRequisites:11": [ + 975 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_basic_capacitor", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "双层电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_basic_capacitor", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "962:10": { + "questID:3": 977, + "preRequisites:11": [ + 976 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_basic_capacitor", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "八位电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_basic_capacitor", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "963:10": { + "questID:3": 978, + "preRequisites:11": [ + 970, + 971 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_transceiver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "空间传送器", + "desc:8": "远距离传输物品、流体和能量,甚至能够跨维度" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_transceiver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "964:10": { + "questID:3": 979, + "preRequisites:11": [ + 961 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_vat", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "酿液桶", + "desc:8": "将流体转换成另一种流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_vat", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "965:10": { + "questID:3": 980, + "preRequisites:11": [ + 961 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:block_farm_station", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "种植站", + "desc:8": "自动农场" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:block_farm_station", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "966:10": { + "questID:3": 981, + "preRequisites:11": [ + 79 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:voidforgeb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空锻炉", + "desc:8": "它需要使用虚空水晶获得虚空能量来工作。阅读Lordcraft的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:voidforgeb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "967:10": { + "questID:3": 982, + "preRequisites:11": [ + 78 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:voidtableb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空工作台", + "desc:8": "本质上就是工作台。阅读Lordcraft的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:voidtableb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "968:10": { + "questID:3": 983, + "preRequisites:11": [ + 87 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:rune_crafterb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "符文制作器", + "desc:8": "阅读Lordcraft的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:rune_crafterb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "969:10": { + "questID:3": 984, + "preRequisites:11": [ + 1011 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "lordcraft:void_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚空水晶", + "desc:8": "阅读Lordcraft的书获取更多相关内容。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "lordcraft:void_crystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "970:10": { + "questID:3": 985, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:conductive_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "导电铁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:conductive_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "971:10": { + "questID:3": 986, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:redstone_alloy_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石合金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:redstone_alloy_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "972:10": { + "questID:3": 987, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:electrical_steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "磁钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:electrical_steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "973:10": { + "questID:3": 988, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:ruby_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红宝石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:ruby_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "974:10": { + "questID:3": 989, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:sapphire_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝宝石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:sapphire_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "975:10": { + "questID:3": 990, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:peridot_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "橄榄石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:peridot_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "976:10": { + "questID:3": 991, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:soularium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魂金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:soularium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "977:10": { + "questID:3": 992, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:dark_steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "玄钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:dark_steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "978:10": { + "questID:3": 993, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:pulsating_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲铁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:pulsating_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "979:10": { + "questID:3": 995, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:energetic_alloy_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能合金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:energetic_alloy_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "980:10": { + "questID:3": 996, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:compressed_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压缩铁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:compressed_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "981:10": { + "questID:3": 997, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:end_steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影钢种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:end_steel_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "982:10": { + "questID:3": 998, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:vibrant_alloy_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲合金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:vibrant_alloy_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "983:10": { + "questID:3": 999, + "preRequisites:11": [ + 94 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "太阳能", + "desc:8": "太阳能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + } + } + } + }, + "984:10": { + "questID:3": 1000, + "preRequisites:11": [ + 108 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "燃气发电机", + "desc:8": "燃烧气体获得能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "985:10": { + "questID:3": 1001, + "preRequisites:11": [ + 94 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "风力涡轮机", + "desc:8": "使用风产生能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "986:10": { + "questID:3": 1002, + "preRequisites:11": [ + 86 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "热力发电机", + "desc:8": "输入熔岩或在周围放置熔岩来产生能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "987:10": { + "questID:3": 1003, + "preRequisites:11": [ + 999 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级太阳能", + "desc:8": "太阳能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanismgenerators:generator", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "988:10": { + "questID:3": 1004, + "preRequisites:11": [ + 8 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "portality:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传送门控制器和框架", + "desc:8": "框架至少需要三个深。就像是多方块形式的超立方体。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "portality:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "portality:frame", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "989:10": { + "questID:3": 1005, + "preRequisites:11": [ + 1004 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "portality:module_items", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传送物品", + "desc:8": "使用传送门传输物品" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "portality:module_items", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "portality:module_items", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "990:10": { + "questID:3": 1006, + "preRequisites:11": [ + 1004 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "portality:module_interdimensional", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "多维度交互", + "desc:8": "跨越维度连接传送门" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "portality:module_interdimensional", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "991:10": { + "questID:3": 1007, + "preRequisites:11": [ + 1004 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "portality:module_fluids", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "流体传输", + "desc:8": "使用传送门传输流体" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "portality:module_fluids", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "portality:module_fluids", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "992:10": { + "questID:3": 1008, + "preRequisites:11": [ + 1004 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "portality:module_energy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "传输能量", + "desc:8": "通过传送门传输能量" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "portality:module_energy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "portality:module_energy", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "993:10": { + "questID:3": 1009, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:lithium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锂种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:lithium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "994:10": { + "questID:3": 1010, + "preRequisites:11": [ + 80 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:translocation_marker", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Translocation Matrix", + "desc:8": "在你想要移动到的方块处使用标记器(marker)右键标记一下,然后右键矩阵来在坐标与矩阵之间建立连接,再然后使用红石信号激活矩阵,这可以解锁传输研究。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:translocation_marker", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "lordcraft:translocatorb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "995:10": { + "questID:3": 1011, + "preRequisites:11": [ + 1010 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:transporterb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Ascension Matrix", + "desc:8": "放置并右键它就会进入Nexus维度。你必须前往Nexus才能继续研究。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "lordcraft:transporterb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "996:10": { + "questID:3": 1012, + "preRequisites:11": [ + 493 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "制造电路", + "desc:8": "用于为高级机器制造硅片。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:standard_wrench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "997:10": { + "questID:3": 1013, + "preRequisites:11": [ + 1012 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:machine", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "压缩", + "desc:8": "将锭压缩成板" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:machine", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "998:10": { + "questID:3": 1014, + "preRequisites:11": [ + 1013 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "电力压缩机", + "desc:8": "使用能量的压缩机" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "999:10": { + "questID:3": 1015, + "preRequisites:11": [ + 1018 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:rocket_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "NASA工作台", + "desc:8": "使用设计图制作高级交通工具" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:rocket_workbench", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:emergency_kit", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1000:10": { + "questID:3": 1016, + "preRequisites:11": [ + 1018 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:fuel_loader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "燃料装载机", + "desc:8": "连接到发射平台,它就会开始向火箭中输送燃料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:fuel_loader", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1001:10": { + "questID:3": 1017, + "preRequisites:11": [ + 1016 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:landing_pad", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "发射平台", + "desc:8": "在上面放置火箭,然后连接燃料装载机为其添加燃料。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:landing_pad", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1002:10": { + "questID:3": 1018, + "preRequisites:11": [ + 1013 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:refinery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精炼机", + "desc:8": "将原油精炼成火箭燃料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:refinery", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "galacticraftcore:fluid_pipe", + "Count:3": 32, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1003:10": { + "questID:3": 1019, + "preRequisites:11": [ + 1021 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:schematic", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级2火箭设计图", + "desc:8": "放进NASA工作台。在月球可以找到。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:schematic", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1004:10": { + "questID:3": 1020, + "preRequisites:11": [ + 1019 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:schematic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级3火箭设计图", + "desc:8": "放进NASA工作台。在火星可以找到。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:schematic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1005:10": { + "questID:3": 1021, + "preRequisites:11": [ + 1015 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:rocket_t1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "奔月", + "desc:8": "建造等级1的火箭" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:rocket_t1", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "modelRocket" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1006:10": { + "questID:3": 1022, + "preRequisites:11": [ + 1013 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "氧气收集器", + "desc:8": "从周围的植物中收集氧气(比如树叶)" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:collector", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1007:10": { + "questID:3": 1023, + "preRequisites:11": [ + 1022 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:oxygen_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "氧气压缩机", + "desc:8": "将氧气压缩成氧气罐" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:oxygen_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1008:10": { + "questID:3": 1024, + "preRequisites:11": [ + 1023 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "存储氧气", + "desc:8": "将氧气存储起来为日后做准备。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1009:10": { + "questID:3": 1025, + "preRequisites:11": [ + 1023 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:oxygen_tank_heavy_full", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "大型氧气储罐", + "desc:8": "将其装备到你的氧气槽以在太空中呼吸" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftcore:oxygen_tank_heavy_full", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1010:10": { + "questID:3": 1026, + "preRequisites:11": [ + 1015 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "解构", + "desc:8": "将火箭解构成原材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "galacticraftcore:machine2", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1011:10": { + "questID:3": 1027, + "preRequisites:11": [ + 1015 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "热防护", + "desc:8": "在过热或过冷的星球上保护玩家。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1012:10": { + "questID:3": 1028, + "preRequisites:11": [ + 1027 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding_t2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "二阶热防护", + "desc:8": "在过热或过冷的星球上保护玩家。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding_t2", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding_t2", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding_t2", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "galacticraftplanets:thermal_padding_t2", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1013:10": { + "questID:3": 1029, + "preRequisites:11": [ + 1020 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级4火箭设计图", + "desc:8": "可以在水星上找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier4", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1014:10": { + "questID:3": 1030, + "preRequisites:11": [ + 1029 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级5火箭设计图", + "desc:8": "可以在木星找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier5", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1015:10": { + "questID:3": 1031, + "preRequisites:11": [ + 1030 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级6火箭设计图", + "desc:8": "可以在土星找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier6", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1016:10": { + "questID:3": 1032, + "preRequisites:11": [ + 1031 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier7", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级7火箭设计图", + "desc:8": "可以在天王星找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier7", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1017:10": { + "questID:3": 1033, + "preRequisites:11": [ + 1032 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级8火箭设计图", + "desc:8": "可以在海王星找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier8", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1018:10": { + "questID:3": 1034, + "preRequisites:11": [ + 1033 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier9", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级9火箭设计图", + "desc:8": "可以在冥王星找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier9", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1019:10": { + "questID:3": 1035, + "preRequisites:11": [ + 1034 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier10", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级10火箭设计图", + "desc:8": "可以在阋神星(Eris)找到" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:schematic_tier10", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1020:10": { + "questID:3": 1036, + "preRequisites:11": [ + 1028 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier3_thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级3热防护板", + "desc:8": "在过热或过冷的星球上保护玩家。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier3_thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier3_thermal_padding", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier3_thermal_padding", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier3_thermal_padding", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1021:10": { + "questID:3": 1037, + "preRequisites:11": [ + 1036 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier4_thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级4热防护板", + "desc:8": "在过热或过冷的星球上保护玩家。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier4_thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier4_thermal_padding", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier4_thermal_padding", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier4_thermal_padding", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1022:10": { + "questID:3": 1038, + "preRequisites:11": [ + 1037 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier5_thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级5热防护板", + "desc:8": "在过热或过冷的星球上保护玩家。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier5_thermal_padding", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier5_thermal_padding", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier5_thermal_padding", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:tier5_thermal_padding", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1023:10": { + "questID:3": 1039, + "preRequisites:11": [ + 1017 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extraplanets:advanced_launch_pad", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级2发射平台", + "desc:8": "用于制作等级4-8的火箭。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extraplanets:advanced_launch_pad", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1024:10": { + "questID:3": 1040, + "preRequisites:11": [ + 1039 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extraplanets:advanced_launch_pad", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "等级3发射平台", + "desc:8": "用于发射等级9和10的火箭" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extraplanets:advanced_launch_pad", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1025:10": { + "questID:3": 1041, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 60, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "galacticraftcore:dungeonfinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "创造地牢地位器", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 200, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "galacticraftcore:dungeonfinder", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1026:10": { + "questID:3": 1042, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock2", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "蒸汽锅炉", + "desc:8": "搭建Mekanism蒸汽锅炉" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 240, + "TrophyItem:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "forge:bucketfilled", + "Count:1": 1, + "tag:10": { + "FluidName:8": "steam", + "Amount:3": 1000 + }, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 240, + "TrophyName:8": "蒸汽制造者", + "TrophyColorRed:3": 240 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1027:10": { + "questID:3": 1043, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanismgenerators:reactor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Mekanism聚变反应堆", + "desc:8": "搭建一个能够自我维持的MEK聚变反应堆" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 92, + "TrophyItem:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock2", + "Count:1": 1, + "tag:10": { + "mekData:10": { + "energyStored:6": 2000000.0 + } + }, + "Damage:2": 13 + }, + "TrophyColorBlue:3": 56, + "TrophyName:8": "到处都是镭射", + "TrophyColorRed:3": 207 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1028:10": { + "questID:3": 1044, + "preRequisites:11": [ + 1042 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanismgenerators:turbineblade", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "工业涡轮", + "desc:8": "搭建Mekanism工业涡轮" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 118, + "TrophyItem:10": { + "id:8": "mekanismgenerators:turbineblade", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 151, + "TrophyName:8": "蒸汽能量", + "TrophyColorRed:3": 40 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1029:10": { + "questID:3": 1045, + "preRequisites:11": [ + 3, + 9, + 15, + 20, + 31, + 32, + 33, + 41, + 44, + 58, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 77, + 78, + 79, + 83, + 84, + 98, + 100, + 101, + 105, + 111, + 112, + 114, + 119, + 122, + 134, + 135, + 136, + 139, + 142, + 143, + 144, + 147, + 149, + 152, + 154, + 157, + 160, + 161, + 162, + 164, + 170, + 172, + 173, + 175, + 179, + 183, + 186, + 198, + 203, + 209, + 210, + 302, + 304, + 305, + 320, + 331, + 332, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 363, + 364, + 365, + 366, + 367, + 368, + 405, + 407, + 408, + 413, + 425, + 426, + 427, + 428, + 429, + 431, + 432, + 433, + 434, + 435, + 438, + 453, + 460, + 469, + 472, + 485, + 486, + 488, + 490, + 492, + 493, + 494, + 511, + 512, + 513, + 515, + 518, + 520, + 521, + 527, + 528, + 531, + 532, + 533, + 534, + 536, + 539, + 541, + 542, + 544, + 553, + 555, + 556, + 557, + 558, + 561, + 565, + 566, + 567, + 569, + 570, + 574, + 579, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 624, + 625, + 627, + 632, + 639, + 644, + 651, + 652, + 654, + 660, + 672, + 675, + 680, + 681, + 682, + 684, + 685, + 686, + 687, + 688, + 689, + 696, + 697, + 698, + 705, + 732, + 733, + 735, + 738, + 740, + 741, + 742, + 745, + 746, + 758, + 766, + 773, + 776, + 778, + 779, + 780, + 783, + 784, + 785, + 786, + 787, + 896, + 897, + 906, + 907, + 909, + 917, + 919, + 920, + 921, + 922, + 924, + 934, + 935, + 940, + 941, + 942, + 949, + 950, + 955, + 956, + 970, + 971, + 974, + 978, + 980, + 981, + 982, + 1020, + 1021, + 1022, + 1035, + 1038, + 1040, + 1052, + 1053, + 1056, + 1062, + 1069, + 1076, + 1091 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "任务狂人", + "desc:8": "完成所有任务线" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "1030:10": { + "questID:3": 1046, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "erebus:tarantula_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "彩蛋狂人", + "desc:8": "下个进度需要它" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "erebus:tarantula_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "erebus:antlion_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:egg", + "Count:3": 16, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "openblocks:golden_egg", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex狼蛛" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": { + "roughmobs:featuresApplied:1": 1, + "roughmobs:attributesApplied:1": 1 + }, + "Attributes:9": { + "0:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "generic.fireDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "3:10": { + "Base:6": 20.0, + "Name:8": "generic.barehandedPower" + }, + "4:10": { + "Base:6": 600.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -3085249683627687253, + "UUIDLeast:4": -9156486650251862025, + "Amount:6": 0.30000001192092896, + "Operation:3": 1, + "Name:8": "buff_hunting_health" + } + }, + "Name:8": "generic.maxHealth" + }, + "5:10": { + "Base:6": 50.0, + "Name:8": "generic.knockbackResistance" + }, + "6:10": { + "Base:6": 1.0, + "Name:8": "generic.movementSpeed" + }, + "7:10": { + "Base:6": 20.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 381311139489664676, + "UUIDLeast:4": -5393709257097698649, + "Amount:6": 4.0, + "Operation:3": 0, + "Name:8": "buff_hunting_armor" + } + }, + "Name:8": "generic.armor" + }, + "8:10": { + "Base:6": 5.0, + "Name:8": "generic.armorToughness" + }, + "9:10": { + "Base:6": 32.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -4081532587765839794, + "UUIDLeast:4": -6897936160073539138, + "Amount:6": -0.07464170534469636, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "10:10": { + "Base:6": 80.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -2850887568079042262, + "UUIDLeast:4": -6868577885765817673, + "Amount:6": 0.30000001192092896, + "Operation:3": 1, + "Name:8": "buff_hunting_attack" + } + }, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 1, + "id:8": "erebus:erebus.tarantula_mini_boss", + "Leashed:1": 0, + "Health:5": 780.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 28885, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex狼蛛", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "DeathLootTable:8": "minecraft:", + "HurtTime:2": 0, + "CustomNameVisible:1": 1 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex蚁狮" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": { + "roughmobs:featuresApplied:1": 1, + "roughmobs:attributesApplied:1": 1 + }, + "Attributes:9": { + "0:10": { + "Base:6": 100.0, + "Name:8": "generic.physicalDamageRate" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "3:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "4:10": { + "Base:6": 50000.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 8420839021981420036, + "UUIDLeast:4": -5167300053076395441, + "Amount:6": 0.006800000090152025, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_1" + } + }, + "Name:8": "generic.maxHealth" + }, + "5:10": { + "Base:6": 50.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3611512626045404021, + "UUIDLeast:4": -6443594586895914131, + "Amount:6": 0.006800000090152025, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_4" + } + }, + "Name:8": "generic.knockbackResistance" + }, + "6:10": { + "Base:6": 1.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3322139421148007855, + "UUIDLeast:4": -6403021800365760839, + "Amount:6": 0.006800000090152025, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_2" + } + }, + "Name:8": "generic.movementSpeed" + }, + "7:10": { + "Base:6": 40.0, + "Name:8": "generic.armor" + }, + "8:10": { + "Base:6": 20.0, + "Name:8": "generic.armorToughness" + }, + "9:10": { + "Base:6": 48.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -5025567183781540001, + "UUIDLeast:4": -6453119119476496489, + "Amount:6": -0.05039330206817741, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "1:10": { + "UUIDMost:4": 5868955404782028624, + "UUIDLeast:4": -7255623116826866020, + "Amount:6": -0.014405572355180314, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "10:10": { + "Base:6": 80.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 9067913191699991537, + "UUIDLeast:4": -5095213541196854111, + "Amount:6": 0.006800000090152025, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_3" + } + }, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "spawnPointY:3": 0, + "spawnPointZ:3": 0, + "DeathTime:2": 0, + "spawnPointX:3": 0, + "inPyramid:1": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "hasModifiers:1": 1, + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "erebus:erebus.antlion_boss", + "Leashed:1": 0, + "Health:5": 50340.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 0, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex蚁狮", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0, + "CustomNameVisible:1": 1 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex骷髅" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 3634, + "ForgeData:10": { + "roughmobs:featuresApplied:1": 1, + "roughmobs:attributesApplied:1": 1 + }, + "Attributes:9": { + "0:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "3:10": { + "Base:6": 10000.0, + "Name:8": "generic.barehandedPower" + }, + "4:10": { + "Base:6": 59000.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 8420839021981420036, + "UUIDLeast:4": -5167300053076395441, + "Amount:6": 0.017000000923871994, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_1" + } + }, + "Name:8": "generic.maxHealth" + }, + "5:10": { + "Base:6": 20.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3611512626045404021, + "UUIDLeast:4": -6443594586895914131, + "Amount:6": 0.017000000923871994, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_4" + } + }, + "Name:8": "generic.knockbackResistance" + }, + "6:10": { + "Base:6": 0.25, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3322139421148007855, + "UUIDLeast:4": -6403021800365760839, + "Amount:6": 0.017000000923871994, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_2" + } + }, + "Name:8": "generic.movementSpeed" + }, + "7:10": { + "Base:6": 50.0, + "Name:8": "generic.armor" + }, + "8:10": { + "Base:6": 200.0, + "Name:8": "generic.armorToughness" + }, + "9:10": { + "Base:6": 16.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -3561647965942755538, + "UUIDLeast:4": -5463097528422599116, + "Amount:6": 0.06289094100531897, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "1:10": { + "UUIDMost:4": -3306922600088122559, + "UUIDLeast:4": -6696334795392076447, + "Amount:6": 0.060991837973211775, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "2:10": { + "UUIDMost:4": -5792566913076213097, + "UUIDLeast:4": -9221746772553346929, + "Amount:6": -0.061710849093986886, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "10:10": { + "Base:6": 200.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 9067913191699991537, + "UUIDLeast:4": -5095213541196854111, + "Amount:6": 0.017000000923871994, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_3" + } + }, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "hasModifiers:1": 1, + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 1, + "id:8": "galacticraftcore:evolved_skeleton_boss", + "Leashed:1": 0, + "Health:5": 60003.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 0, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex骷髅", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "DeathLootTable:8": "minecraft:", + "HurtTime:2": 0, + "CustomNameVisible:1": 1 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex僵尸" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": { + "roughmobs:mountSearcher:3": 1, + "roughmobs:featuresApplied:1": 1, + "roughmobs:attributesApplied:1": 1 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.physicalDamageRate" + }, + "1:10": { + "Base:6": 1000.0, + "Name:8": "generic.fireDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.barehandedPower" + }, + "4:10": { + "Base:6": 60000.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -7255157722852866002, + "UUIDLeast:4": -4941607773590314854, + "Amount:6": 0.5, + "Operation:3": 1, + "Name:8": "roughmobs:mod0" + }, + "1:10": { + "UUIDMost:4": 8420839021981420036, + "UUIDLeast:4": -5167300053076395441, + "Amount:6": 0.03060000017285347, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_1" + } + }, + "Name:8": "generic.maxHealth" + }, + "5:10": { + "Base:6": 50.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3611512626045404021, + "UUIDLeast:4": -6443594586895914131, + "Amount:6": 0.03060000017285347, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_4" + }, + "1:10": { + "UUIDMost:4": 6241833841492052814, + "UUIDLeast:4": -5565254051145218156, + "Amount:6": 0.04525168774674707, + "Operation:3": 0, + "Name:8": "Random spawn bonus" + }, + "2:10": { + "UUIDMost:4": -2727342023944879790, + "UUIDLeast:4": -5930439658628110445, + "Amount:6": 0.03807160042362552, + "Operation:3": 0, + "Name:8": "Random spawn bonus" + }, + "3:10": { + "UUIDMost:4": 3753103808523685045, + "UUIDLeast:4": -9104417622444447092, + "Amount:6": 0.024800035709649358, + "Operation:3": 0, + "Name:8": "Random spawn bonus" + }, + "4:10": { + "UUIDMost:4": 6817233666202225212, + "UUIDLeast:4": -8590686087700042251, + "Amount:6": 0.5, + "Operation:3": 0, + "Name:8": "roughmobs:mod2" + } + }, + "Name:8": "generic.knockbackResistance" + }, + "6:10": { + "Base:6": 1.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3322139421148007855, + "UUIDLeast:4": -6403021800365760839, + "Amount:6": 0.03060000017285347, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_2" + } + }, + "Name:8": "generic.movementSpeed" + }, + "7:10": { + "Base:6": 40.0, + "Name:8": "generic.armor" + }, + "8:10": { + "Base:6": 5.0, + "Name:8": "generic.armorToughness" + }, + "9:10": { + "Base:6": 35.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -1678780271400958776, + "UUIDLeast:4": -7653165694621582627, + "Amount:6": -0.023879320234753015, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "1:10": { + "UUIDMost:4": -5842967874886090751, + "UUIDLeast:4": -4843418915438185775, + "Amount:6": -0.07087319063286938, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "2:10": { + "UUIDMost:4": -3510406476931249450, + "UUIDLeast:4": -4802382016198060317, + "Amount:6": 0.004060975491831576, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "3:10": { + "UUIDMost:4": 1310663551907547223, + "UUIDLeast:4": -6233769679146395413, + "Amount:6": 30.0, + "Operation:3": 0, + "Name:8": "roughmobs:mod1" + } + }, + "Name:8": "generic.followRange" + }, + "10:10": { + "Base:6": 30.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 9067913191699991537, + "UUIDLeast:4": -5095213541196854111, + "Amount:6": 0.03060000017285347, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_3" + } + }, + "Name:8": "generic.attackDamage" + }, + "11:10": { + "Base:6": 1.0, + "Name:8": "zombie.spawnReinforcements" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "hasModifiers:1": 1, + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "minecraft:zombie", + "Leashed:1": 0, + "Health:5": 65536.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 0, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": { + "id:8": "avaritia:infinity_sword", + "Count:1": 1, + "tag:10": {}, + "Damage:2": 0 + }, + "1:10": { + "id:8": "avaritia:skullfire_sword", + "Count:1": 1, + "tag:10": {}, + "Damage:2": 0 + } + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex僵尸", + "CanBreakDoors:1": 0, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": { + "id:8": "extraplanets:red_diamond_boots", + "Count:1": 1, + "Damage:2": 0 + }, + "1:10": { + "id:8": "extraplanets:red_diamond_legings", + "Count:1": 1, + "Damage:2": 0 + }, + "2:10": { + "id:8": "extraplanets:red_diamond_chest", + "Count:1": 1, + "Damage:2": 0 + }, + "3:10": { + "id:8": "extraplanets:red_diamond_helmet", + "Count:1": 1, + "Damage:2": 20 + } + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0, + "CustomNameVisible:1": 1 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "4:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 81, + "TrophyItem:10": { + "id:8": "galacticraftplanets:creeper_egg", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 26, + "TrophyName:8": "彩蛋猎人", + "TrophyColorRed:3": 59 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "5:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex火焰蝙蝠" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -3.249999999999986, + "1:6": 0.0, + "2:6": -3.249999999999943, + "3:6": 3.249999999999986, + "4:6": 6.900000095369236, + "5:6": 3.249999999999943 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 5000.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 100.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 80000.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 40.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.9, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 50.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 100.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 5304619086066567333, + "UUIDLeast:4": -9133574242650118460, + "Amount:6": -0.02266852103061996, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "1:10": { + "UUIDMost:4": -9101442246836073242, + "UUIDLeast:4": -5334736967505166411, + "Amount:6": -0.06479543469702795, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 5000.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radiationResistance:6": 0.0, + "totalRads:6": 0.0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radiationLevel:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "radawayBufferSlow:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 1, + "id:8": "extraplanets:extraplanets.evolvedfirebatboss", + "Leashed:1": 0, + "Health:5": 65536.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 0, + "Dimension:3": 0, + "ExplosionPower:3": 2, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex火焰蝙蝠", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "DeathLootTable:8": "minecraft:", + "HurtTime:2": 0, + "CustomNameVisible:1": 1 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "6:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex多腿怪" + }, + "EntityTag:10": { + "spawned_children:9": {}, + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.69999998807907, + "1:6": 0.0, + "2:6": -0.699999988079071, + "3:6": 0.6999999880790699, + "4:6": 0.8999999761581421, + "5:6": 0.699999988079071 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 100.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 100.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 1500.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 40.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 1.0, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 60.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 60.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 10.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 64.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 8992474234357301628, + "UUIDLeast:4": -5741034384658388414, + "Amount:6": -0.007745145179401539, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 2000.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radiationResistance:6": 0.0, + "totalRads:6": 0.0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radiationLevel:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "radawayBufferSlow:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 1, + "id:8": "galacticraftplanets:spider_queen", + "should_evade:1": 0, + "Leashed:1": 0, + "Health:5": 1500.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 0, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex多腿怪", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "DeathLootTable:8": "minecraft:", + "HurtTime:2": 0 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "7:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex神龙骷髅" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -0.30000001192092984, + "1:6": 0.0, + "2:6": -0.30000001192092896, + "3:6": 0.30000001192092984, + "4:6": 1.9900000095367432, + "5:6": 0.30000001192092896 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 0.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 50.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 0.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.5, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 60.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 20.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 100.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 320.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3030520223127718440, + "UUIDLeast:4": -7900035832287172183, + "Amount:6": 0.01750347691806875, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "1:10": { + "UUIDMost:4": -1508783964268183536, + "UUIDLeast:4": -6912692693495854904, + "Amount:6": -0.03138372308860146, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "2:10": { + "UUIDMost:4": -1450912833175666261, + "UUIDLeast:4": -6728854198732397738, + "Amount:6": -1.602036094957096E-4, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + }, + "3:10": { + "UUIDMost:4": 2651743349736949139, + "UUIDLeast:4": -7816521798280122937, + "Amount:6": -0.02799180977472744, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 6000.0, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radiationResistance:6": 0.0, + "totalRads:6": 0.0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radiationLevel:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "radawayBufferSlow:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "checkMobBomb:1": 1 + } + }, + "modified:1": 1 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 1, + "id:8": "minecraft:skeleton", + "Leashed:1": 0, + "Health:5": 50.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 0, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": { + "ForgeCaps:10": { + "Parent:10": { + "Size:3": 27, + "Items:9": {} + } + }, + "id:8": "draconicevolution:draconic_staff_of_power", + "Count:1": 1, + "tag:10": { + "Energy:3": 48000000 + }, + "Damage:2": 0 + }, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex神龙骷髅", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": { + "id:8": "draconicevolution:draconic_boots", + "Count:1": 1, + "tag:10": { + "Energy:3": 16000000 + }, + "Damage:2": 0 + }, + "1:10": { + "id:8": "draconicevolution:draconic_legs", + "Count:1": 1, + "tag:10": { + "Energy:3": 16000000 + }, + "Damage:2": 0 + }, + "2:10": { + "id:8": "draconicevolution:draconic_chest", + "Count:1": 1, + "tag:10": { + "Energy:3": 16000000 + }, + "Damage:2": 0 + }, + "3:10": { + "id:8": "draconicevolution:draconic_helm", + "Count:1": 1, + "tag:10": { + "Energy:3": 16000000 + }, + "Damage:2": 0 + } + }, + "CanPickUpLoot:1": 0, + "DeathLootTable:8": "minecraft:", + "HurtTime:2": 0 + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1031:10": { + "questID:3": 1047, + "preRequisites:11": [ + 1046 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:spawn_egg", + "Count:3": 1, + "tag:10": { + "display:10": { + "Name:8": "Apex狼蛛" + }, + "EntityTag:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": { + "roughmobs:featuresApplied:1": 1, + "roughmobs:attributesApplied:1": 1 + }, + "Attributes:9": { + "0:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "1:10": { + "Base:6": 0.0, + "Name:8": "generic.fireDamageRate" + }, + "2:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "3:10": { + "Base:6": 20.0, + "Name:8": "generic.barehandedPower" + }, + "4:10": { + "Base:6": 600.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -3085249683627687253, + "UUIDLeast:4": -9156486650251862025, + "Amount:6": 0.30000001192092896, + "Operation:3": 1, + "Name:8": "buff_hunting_health" + } + }, + "Name:8": "generic.maxHealth" + }, + "5:10": { + "Base:6": 50.0, + "Name:8": "generic.knockbackResistance" + }, + "6:10": { + "Base:6": 1.0, + "Name:8": "generic.movementSpeed" + }, + "7:10": { + "Base:6": 20.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 381311139489664676, + "UUIDLeast:4": -5393709257097698649, + "Amount:6": 4.0, + "Operation:3": 0, + "Name:8": "buff_hunting_armor" + } + }, + "Name:8": "generic.armor" + }, + "8:10": { + "Base:6": 5.0, + "Name:8": "generic.armorToughness" + }, + "9:10": { + "Base:6": 32.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -4081532587765839794, + "UUIDLeast:4": -6897936160073539138, + "Amount:6": -0.07464170534469636, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "10:10": { + "Base:6": 80.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": -2850887568079042262, + "UUIDLeast:4": -6868577885765817673, + "Amount:6": 0.30000001192092896, + "Operation:3": 1, + "Name:8": "buff_hunting_attack" + } + }, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 1, + "id:8": "erebus:erebus.tarantula_mini_boss", + "Leashed:1": 0, + "Health:5": 780.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 28885, + "Glowing:1": 1, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "CustomName:8": "Apex狼蛛", + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "DeathLootTable:8": "minecraft:", + "HurtTime:2": 0, + "CustomNameVisible:1": 1 + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Apex", + "desc:8": "击败所有Apex生物。\n\n怪物杀你就像你杀怪物一样有趣。\n\n有些怪物需要用特别的方法击杀,有些怪物则只是比普通等级更强。\n\n如果你不想这么做,那就随你吧。\n\nApex骷髅:武器看起来对它不起作用\n\nApex僵尸:看起来害怕什么东西\n\nApex神龙骷髅:似乎免疫普通攻击" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 49, + "TrophyItem:10": { + "id:8": "endermanevo:enderman_evolved_skull", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 44, + "TrophyName:8": "比普通的更强", + "TrophyColorRed:3": 179 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1032:10": { + "questID:3": 1048, + "preRequisites:11": [ + 707 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "粉色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1033:10": { + "questID:3": 1049, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:dawnstone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黎明石种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:dawnstone_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1034:10": { + "questID:3": 1050, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:fluxed_electrum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红石琥珀金种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:fluxed_electrum_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1035:10": { + "questID:3": 1051, + "preRequisites:11": [ + 969 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子比特簇 IIII", + "desc:8": "能量存储" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1036:10": { + "questID:3": 1052, + "preRequisites:11": [ + 1051 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "量子比特簇 IIIII", + "desc:8": "能量存储" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumflux:quibitcluster", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1037:10": { + "questID:3": 1053, + "preRequisites:11": [ + 969 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "quantumflux:imaginarytime", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "幻想时间", + "desc:8": "加快5格范围内的作物生长" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "quantumflux:imaginarytime", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1038:10": { + "questID:3": 1056, + "preRequisites:11": [ + 1057 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:superiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "高级精华注魔", + "desc:8": "高级精华 -\u003e 终极精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:superiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1039:10": { + "questID:3": 1057, + "preRequisites:11": [ + 1058 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:intermediumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中级精华注魔", + "desc:8": "中级精华 -\u003e 高级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:intermediumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1040:10": { + "questID:3": 1058, + "preRequisites:11": [ + 1059 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:prudentiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "初级精华注魔", + "desc:8": "初级精华-\u003e 中级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:prudentiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1041:10": { + "questID:3": 1059, + "preRequisites:11": [ + 189 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:inferiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "下级精华注魔", + "desc:8": "下级精华 -\u003e 初级精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:inferiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1042:10": { + "questID:3": 1060, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魂金", + "desc:8": "金 + 灵魂沙" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_ingot", + "Count:3": 12, + "Damage:2": 7, + "OreDict:8": "ingotSoularium" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1043:10": { + "questID:3": 1061, + "preRequisites:11": [ + 949 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "ingotBlack铁" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黑铁锭", + "desc:8": "末影合成材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:material", + "Count:3": 12, + "Damage:2": 0, + "OreDict:8": "ingotBlack铁" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1044:10": { + "questID:3": 1062, + "preRequisites:11": [ + 1056 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:supremiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "终极精华注魔", + "desc:8": "终极精华 -\u003e 究极精华" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "matc:supremiumcrystal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1045:10": { + "questID:3": 1063, + "preRequisites:11": [ + 1043 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mekanism:basicblock2", + "Count:3": 1, + "tag:10": { + "tier:3": 3 + }, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "中级能量存储", + "desc:8": "搭建Mekanism能量存储多方块结构并存储至少20万亿 rf/fe." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 65, + "TrophyItem:10": { + "id:8": "mekanism:basicblock2", + "Count:1": 1, + "tag:10": { + "tier:3": 3 + }, + "Damage:2": 4 + }, + "TrophyColorBlue:3": 197, + "TrophyName:8": "能量存储", + "TrophyColorRed:3": 159 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1046:10": { + "questID:3": 1064, + "preRequisites:11": [ + 872, + 873, + 1044, + 1045, + 1047, + 1063, + 1066, + 1068, + 1070, + 1071, + 1072, + 1073, + 1092, + 1093, + 1094, + 1100, + 1101, + 1102, + 1103, + 1104 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:material", + "Count:3": 1, + "Damage:2": 32, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "普通模式毕业", + "desc:8": "毕业Project Ozone 3普通模式" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "1047:10": { + "questID:3": 1065, + "preRequisites:11": [ + 872, + 873, + 1044, + 1045, + 1047, + 1063, + 1066, + 1068, + 1070, + 1071, + 1072, + 1073, + 1092, + 1093, + 1094, + 1100, + 1101, + 1102, + 1103, + 1104 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:chaos_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Kappa模式毕业", + "desc:8": "毕业Project Ozone 3Kappa模式。你感觉怎么样?" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "1048:10": { + "questID:3": 1066, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "modularmachinery:itemblueprint", + "Count:3": 1, + "tag:10": { + "dynamicmachine:8": "modularmachinery:super_reactor" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "超级反应堆", + "desc:8": "搭建一个能自我维持的超级反应堆。是的,它消耗塔可饼..." + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 128, + "TrophyItem:10": { + "id:8": "harvestcraft:tacoitem", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 94, + "TrophyName:8": "吃掉所有塔可", + "TrophyColorRed:3": 129 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1049:10": { + "questID:3": 1067, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "waystones:waystone", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "各地旅行", + "desc:8": "使用指路石将所有能去的维度连接起来" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 67, + "TrophyVariant:8": "neon", + "TrophyItem:10": { + "id:8": "waystones:waystone", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 67, + "TrophyName:8": "世界村", + "TrophyColorRed:3": 67, + "TrophyEarnedAt:4": 1542315997 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1050:10": { + "questID:3": 1068, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:wheat_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "最强种子", + "desc:8": "将所有Mystical Agriculture/Agraddition的种子都培育到10/10/10" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 205, + "TrophyVariant:8": "classic", + "TrophyItem:10": { + "id:8": "actuallyadditions:item_misc", + "Count:1": 64, + "Damage:2": 24 + }, + "TrophyColorBlue:3": 52, + "TrophyName:8": "方块播种人", + "TrophyColorRed:3": 65, + "TrophyEarnedAt:4": 1578592765 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1051:10": { + "questID:3": 1069, + "preRequisites:11": [ + 606 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:chaos_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "混沌锭", + "desc:8": "无尽锭的必需品。\n\nKappa 模式:需要混沌催化剂" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:chaos_ingot", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 40, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1052:10": { + "questID:3": 1070, + "preRequisites:11": [ + 1074 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 205, + "TrophyItem:10": { + "id:8": "contenttweaker:og_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 52, + "TrophyName:8": "Dev OG_Arist0tle", + "TrophyColorRed:3": 65 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "OG的奖杯", + "desc:8": "获得Arist0tleite金属锭" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 205, + "TrophyItem:10": { + "id:8": "contenttweaker:og_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 52, + "TrophyName:8": "Dev OG_Arist0tle", + "TrophyColorRed:3": 65 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1053:10": { + "questID:3": 1071, + "preRequisites:11": [ + 1074 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyItem:10": { + "id:8": "contenttweaker:sey_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "Dev Seyeght", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Seyeght的奖杯", + "desc:8": "获得Seyeghtenite金属锭" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyItem:10": { + "id:8": "contenttweaker:sey_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "Dev Seyeght", + "TrophyColorRed:3": 123 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1054:10": { + "questID:3": 1072, + "preRequisites:11": [ + 1074 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 101, + "TrophyItem:10": { + "id:8": "contenttweaker:bear_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 67, + "TrophyName:8": "Dev Bearhunter", + "TrophyColorRed:3": 151 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Bearhunter的奖杯", + "desc:8": "获得Bearhuntian金属锭" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 101, + "TrophyItem:10": { + "id:8": "contenttweaker:bear_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 67, + "TrophyName:8": "Dev Bearhunter", + "TrophyColorRed:3": 151 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1055:10": { + "questID:3": 1073, + "preRequisites:11": [ + 1074 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 136, + "TrophyItem:10": { + "id:8": "contenttweaker:caz_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 68, + "TrophyName:8": "Dev Cazadorsniper", + "TrophyColorRed:3": 235 + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Cazador的奖杯", + "desc:8": "获得Cazadorian金属锭" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 136, + "TrophyItem:10": { + "id:8": "contenttweaker:caz_metal", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 68, + "TrophyName:8": "Dev Cazadorsniper", + "TrophyColorRed:3": 235 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1056:10": { + "questID:3": 1074, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "contenttweaker:caz_metal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "Beta Tested", + "desc:8": "获得所有Beta测试金属锭。一共有十二种,在JEI里输入@contenttweaker就能够看到它们。\n\nTitan: 获得所有Beta测试板。一共有十二种,在JEI里输入@contenttweaker就能够看到它们。\n\nKappa: 获得所有Beta测试齿轮。一共有十二种,在JEI里输入@contenttweaker就能够看到它们。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": {} + }, + "1057:10": { + "questID:3": 1075, + "preRequisites:11": [ + 424 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_chaotic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "混沌太阳能", + "desc:8": "产生 524288 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_chaotic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1058:10": { + "questID:3": 1076, + "preRequisites:11": [ + 1075 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_neutronium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "中子素太阳能", + "desc:8": "产生 1048576 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_neutronium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1059:10": { + "questID:3": 1077, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 20, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 3, + "id:2": 21 + }, + "1:10": { + "lvl:2": 3, + "id:2": 16 + }, + "2:10": { + "lvl:2": 1, + "id:2": 46 + }, + "3:10": { + "lvl:2": 1, + "id:2": 30 + }, + "4:10": { + "lvl:2": 3, + "id:2": 17 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 99" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -578565999283974280, + "UUIDLeast:4": -7185529470566444038, + "Amount:6": 8.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -1688297855089161417, + "UUIDLeast:4": -5102180028792655145, + "Amount:6": 0.1, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -1004203413167257203, + "UUIDLeast:4": -7346559347696435405, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Epeolatry I", + "desc:8": "基础等级" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 100, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:blaze_rod", + "Count:3": 200, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 3, + "id:2": 21 + }, + "1:10": { + "lvl:2": 3, + "id:2": 16 + }, + "2:10": { + "lvl:2": 1, + "id:2": 30 + }, + "3:10": { + "lvl:2": 3, + "id:2": 17 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 99" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -578565999283974280, + "UUIDLeast:4": -7185529470566444038, + "Amount:6": 8.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -1688297855089161417, + "UUIDLeast:4": -5102180028792655145, + "Amount:6": 0.1, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -1004203413167257203, + "UUIDLeast:4": -7346559347696435405, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1060:10": { + "questID:3": 1078, + "preRequisites:11": [ + 1077 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 20, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 46 + }, + "1:10": { + "lvl:2": 5, + "id:2": 30 + }, + "2:10": { + "lvl:2": 6, + "id:2": 21 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 109" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -2492478589651301048, + "UUIDLeast:4": -6323047454612931394, + "Amount:6": 28.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": 2015967941082104039, + "UUIDLeast:4": -5358514599918314707, + "Amount:6": 0.6, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -7423283628355989519, + "UUIDLeast:4": -8371078587276161062, + "Amount:6": 3.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 62806617451415918, + "UUIDLeast:4": -7428170704041886294, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Epeolatry II", + "desc:8": "更加OP" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 300, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 200, + "Damage:2": 2052, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:spider_t_shirt", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 3, + "id:2": 21 + }, + "1:10": { + "lvl:2": 3, + "id:2": 16 + }, + "2:10": { + "lvl:2": 1, + "id:2": 30 + }, + "3:10": { + "lvl:2": 3, + "id:2": 17 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 99" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -578565999283974280, + "UUIDLeast:4": -7185529470566444038, + "Amount:6": 8.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -1688297855089161417, + "UUIDLeast:4": -5102180028792655145, + "Amount:6": 0.1, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -1004203413167257203, + "UUIDLeast:4": -7346559347696435405, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 5, + "id:2": 30 + }, + "1:10": { + "lvl:2": 6, + "id:2": 21 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 109" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -2492478589651301048, + "UUIDLeast:4": -6323047454612931394, + "Amount:6": 28.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": 2015967941082104039, + "UUIDLeast:4": -5358514599918314707, + "Amount:6": 0.6, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -7423283628355989519, + "UUIDLeast:4": -8371078587276161062, + "Amount:6": 3.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 62806617451415918, + "UUIDLeast:4": -7428170704041886294, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1061:10": { + "questID:3": 1079, + "preRequisites:11": [ + 1078 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 20, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 20, + "id:2": 21 + }, + "1:10": { + "lvl:2": 1, + "id:2": 46 + }, + "2:10": { + "lvl:2": 4, + "id:2": 11 + }, + "3:10": { + "lvl:2": 10, + "id:2": 30 + }, + "4:10": { + "lvl:2": 3, + "id:2": 19 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 115" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": 5515783314939464427, + "UUIDLeast:4": -6027867513655836820, + "Amount:6": 50.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -6141759575485168713, + "UUIDLeast:4": -4702780832570795414, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": 616978663983105294, + "UUIDLeast:4": -6680749208516943069, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 2367126705581146367, + "UUIDLeast:4": -5219163231136140355, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": 5961402379262117074, + "UUIDLeast:4": -7380159562293475588, + "Amount:6": 3.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Epeolatry III", + "desc:8": "更更加OP" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 500, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 200, + "Damage:2": 2048, + "OreDict:8": "" + }, + "2:10": { + "id:8": "abyssalcraft:oblivionshard", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "id:8": "minecraft:nether_star", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 5, + "id:2": 30 + }, + "1:10": { + "lvl:2": 6, + "id:2": 21 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 109" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -2492478589651301048, + "UUIDLeast:4": -6323047454612931394, + "Amount:6": 28.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": 2015967941082104039, + "UUIDLeast:4": -5358514599918314707, + "Amount:6": 0.6, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -7423283628355989519, + "UUIDLeast:4": -8371078587276161062, + "Amount:6": 3.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 62806617451415918, + "UUIDLeast:4": -7428170704041886294, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 20, + "id:2": 21 + }, + "1:10": { + "lvl:2": 4, + "id:2": 11 + }, + "2:10": { + "lvl:2": 10, + "id:2": 30 + }, + "3:10": { + "lvl:2": 3, + "id:2": 19 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 115" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": 5515783314939464427, + "UUIDLeast:4": -6027867513655836820, + "Amount:6": 50.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -6141759575485168713, + "UUIDLeast:4": -4702780832570795414, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": 616978663983105294, + "UUIDLeast:4": -6680749208516943069, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 2367126705581146367, + "UUIDLeast:4": -5219163231136140355, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": 5961402379262117074, + "UUIDLeast:4": -7380159562293475588, + "Amount:6": 3.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1062:10": { + "questID:3": 1080, + "preRequisites:11": [ + 1079 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 20, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 5, + "id:2": 19 + }, + "1:10": { + "lvl:2": 50, + "id:2": 21 + }, + "2:10": { + "lvl:2": 50, + "id:2": 11 + }, + "3:10": { + "lvl:2": 1, + "id:2": 46 + }, + "4:10": { + "lvl:2": 50, + "id:2": 30 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 119" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -1764044997872694150, + "UUIDLeast:4": -5800365910324348553, + "Amount:6": 200.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -7146944196080745787, + "UUIDLeast:4": -4700773529772170414, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -4236202463880395135, + "UUIDLeast:4": -6463913133671878537, + "Amount:6": 20.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 4865830314665132517, + "UUIDLeast:4": -4756975273259061896, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": -6493431471024881010, + "UUIDLeast:4": -5752703724886216720, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Epeolatry IV", + "desc:8": "终极武器" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 1000, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "thermalfoundation:material", + "Count:3": 200, + "Damage:2": 2050, + "OreDict:8": "" + }, + "2:10": { + "id:8": "erebus:materials", + "Count:3": 1, + "Damage:2": 64, + "OreDict:8": "" + }, + "3:10": { + "id:8": "botania:manaresource", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + }, + "1:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 20, + "id:2": 21 + }, + "1:10": { + "lvl:2": 4, + "id:2": 11 + }, + "2:10": { + "lvl:2": 10, + "id:2": 30 + }, + "3:10": { + "lvl:2": 3, + "id:2": 19 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 115" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": 5515783314939464427, + "UUIDLeast:4": -6027867513655836820, + "Amount:6": 50.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -6141759575485168713, + "UUIDLeast:4": -4702780832570795414, + "Amount:6": 1.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": 616978663983105294, + "UUIDLeast:4": -6680749208516943069, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 2367126705581146367, + "UUIDLeast:4": -5219163231136140355, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": 5961402379262117074, + "UUIDLeast:4": -7380159562293475588, + "Amount:6": 3.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "contenttweaker:epeolatry", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 5, + "id:2": 19 + }, + "1:10": { + "lvl:2": 50, + "id:2": 21 + }, + "2:10": { + "lvl:2": 50, + "id:2": 11 + }, + "3:10": { + "lvl:2": 50, + "id:2": 30 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "物品等级 119" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -1764044997872694150, + "UUIDLeast:4": -5800365910324348553, + "Amount:6": 200.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackDamage", + "Operation:3": 0, + "Name:8": "generic.attackDamage" + }, + "1:10": { + "UUIDMost:4": -7146944196080745787, + "UUIDLeast:4": -4700773529772170414, + "Amount:6": 5.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.attackSpeed", + "Operation:3": 2, + "Name:8": "generic.attackSpeed" + }, + "2:10": { + "UUIDMost:4": -4236202463880395135, + "UUIDLeast:4": -6463913133671878537, + "Amount:6": 20.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.maxHealth", + "Operation:3": 0, + "Name:8": "generic.maxHealth" + }, + "3:10": { + "UUIDMost:4": 4865830314665132517, + "UUIDLeast:4": -4756975273259061896, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.knockbackResistance", + "Operation:3": 0, + "Name:8": "generic.knockbackResistance" + }, + "4:10": { + "UUIDMost:4": -6493431471024881010, + "UUIDLeast:4": -5752703724886216720, + "Amount:6": 10.0, + "Slot:8": "mainhand", + "AttributeName:8": "generic.reachDistance", + "Operation:3": 0, + "Name:8": "generic.reachDistance" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1063:10": { + "questID:3": 1081, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:rhino_exoskeleton_shield", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 46 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "Speed Boost" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -8903466594797140917, + "UUIDLeast:4": -6354093001924598648, + "Amount:6": 10.0, + "Slot:8": "offhand", + "AttributeName:8": "generic.movementSpeed", + "Operation:3": 2, + "Name:8": "generic.movementSpeed" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "独角仙外骨骼盾", + "desc:8": "加速!" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 192, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:rhino_exoskeleton_shield", + "Count:3": 1, + "tag:10": { + "ench:9": { + "0:10": { + "lvl:2": 1, + "id:2": 46 + } + }, + "Unbreakable:1": 1, + "display:10": { + "Lore:9": { + "0:8": "Speed Boost" + } + }, + "AttributeModifiers:9": { + "0:10": { + "UUIDMost:4": -8903466594797140917, + "UUIDLeast:4": -6354093001924598648, + "Amount:6": 10.0, + "Slot:8": "offhand", + "AttributeName:8": "generic.movementSpeed", + "Operation:3": 2, + "Name:8": "generic.movementSpeed" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1064:10": { + "questID:3": 1082, + "preRequisites:11": [ + 952 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶化粉红史莱姆锭", + "desc:8": "脉冲水晶粉 + 粉色史莱姆锭" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_alloy_endergy_ingot", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1065:10": { + "questID:3": 1083, + "preRequisites:11": [ + 168 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:device", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 2, + 1, + 1, + 1, + 1, + 1 + ] + }, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "公式处理器", + "desc:8": "合并和拆分材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "thermalexpansion:device", + "Count:3": 1, + "tag:10": { + "RSControl:1": 0, + "Facing:1": 3, + "Energy:3": 0, + "SideCache:7": [ + 2, + 1, + 1, + 1, + 1, + 1 + ] + }, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": {} + }, + "1066:10": { + "questID:3": 1084, + "preRequisites:11": [ + 959 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_grainy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基岩粉电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_grainy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1067:10": { + "questID:3": 1085, + "preRequisites:11": [ + 1084 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "银电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1068:10": { + "questID:3": 1086, + "preRequisites:11": [ + 1085 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_energetic_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能银电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_energetic_silver", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1069:10": { + "questID:3": 1087, + "preRequisites:11": [ + 1086 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_vivid", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生动合金电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_vivid", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1070:10": { + "questID:3": 1088, + "preRequisites:11": [ + 977, + 1087 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_crystalline", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶化电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_crystalline", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1071:10": { + "questID:3": 1089, + "preRequisites:11": [ + 1088 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_totemic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "不死图腾电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_totemic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1072:10": { + "questID:3": 1090, + "preRequisites:11": [ + 1088 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_melodic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "旋律合金电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_melodic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1073:10": { + "questID:3": 1091, + "preRequisites:11": [ + 1090 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "enderio:item_capacitor_stellar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恒星合金电容", + "desc:8": "放在EIO的机器中使其能够接收能量。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "enderio:item_capacitor_stellar", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1074:10": { + "questID:3": 1092, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "chancecubes:chance_icosahedron", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "机会方块", + "desc:8": "开启一组机会方块,希望你不会因此死亡或是失去你的基地。\n\n§c在此挑战之前开过的机会方块不算在内。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 83, + "TrophyItem:10": { + "id:8": "chancecubes:chance_icosahedron", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 148, + "TrophyName:8": "Chance!", + "TrophyColorRed:3": 38 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1075:10": { + "questID:3": 1093, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "thermalexpansion:florb", + "Count:3": 1, + "tag:10": { + "Fluid:8": "garfax" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "自动流体", + "desc:8": "自动流体牛" + } + }, + "tasks:9": { + "0:10": { + "index:3": 1, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 171, + "TrophyItem:10": { + "id:8": "draconicevolution:mob_soul", + "Count:1": 1, + "tag:10": { + "EntityName:8": "moofluids:entityfluidcow" + }, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 55, + "TrophyName:8": "自动流体", + "TrophyColorRed:3": 228 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1076:10": { + "questID:3": 1094, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "openmodularturrets:rail_gun_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "炮台完全体", + "desc:8": "使用炮台击杀任意带有Boss血条的Boss" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 83, + "TrophyItem:10": { + "id:8": "openmodularturrets:ammo_meta", + "Count:1": 1, + "Damage:2": 4 + }, + "TrophyColorBlue:3": 97, + "TrophyName:8": "Turret Upgraded", + "TrophyColorRed:3": 109 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1077:10": { + "questID:3": 1095, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:coralium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "珊瑚种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:coralium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1078:10": { + "questID:3": 1096, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:meteoric_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "陨铁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:meteoric_iron_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1079:10": { + "questID:3": 1097, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:abyssalnite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "深渊种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:abyssalnite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1080:10": { + "questID:3": 1098, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:desh_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "戴斯种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:desh_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1081:10": { + "questID:3": 1099, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:dreadium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧金属种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:dreadium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1082:10": { + "questID:3": 1100, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "abyssalcraft:dghead", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "KG头颅猎人", + "desc:8": "获得所有怪物头颅。\n\n骷髅\n僵尸\n凋零骷髅\n苦力怕\n深渊食尸鬼(种类随意)\n末影友人\n末影人\n龙" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 47, + "TrophyVariant:8": "classic", + "TrophyItem:10": { + "id:8": "minecraft:skull", + "Count:1": 1, + "Damage:2": 5 + }, + "TrophyColorBlue:3": 190, + "TrophyName:8": "头颅猎人", + "TrophyColorRed:3": 123, + "TrophyEarnedAt:4": 1540671404 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1083:10": { + "questID:3": 1101, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "avaritia:endest_pearl", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "末日", + "desc:8": "使用终望珍珠击杀所有带Boss血条的Boss" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 27, + "TrophyVariant:8": "classic", + "TrophyItem:10": { + "id:8": "avaritia:endest_pearl", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 27, + "TrophyName:8": "Gravitation", + "TrophyColorRed:3": 30, + "TrophyEarnedAt:4": 1540670072 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1084:10": { + "questID:3": 1102, + "preRequisites:11": [ + 1045, + 1067 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "portality:controller", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "万向传送门", + "desc:8": "在连接到你基地的所有可去的维度之间使用传送门传输一件物品(太空维度只需要月球,火星,阋神星和开普勒22b)\n\n任何玩家无法到达的维度都可以被忽略" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 49, + "TrophyVariant:8": "gold", + "TrophyItem:10": { + "id:8": "portality:controller", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 146, + "TrophyName:8": "最大快递公司", + "TrophyColorRed:3": 37, + "TrophyEarnedAt:4": 1542316017 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1085:10": { + "questID:3": 1103, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extrautils2:creativechest", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "创造箱子", + "desc:8": "制作一个创造模式箱子。\n\nTitan模式:石精灵可以在失落的城市维度和主世界的48层及以下找到" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 49, + "TrophyVariant:8": "gold", + "TrophyItem:10": { + "id:8": "extrautils2:creativechest", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 146, + "TrophyName:8": "To Infinity", + "TrophyColorRed:3": 37, + "TrophyEarnedAt:4": 1542316017 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1086:10": { + "questID:3": 1104, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "盆栽", + "desc:8": "自动化所有可种进盆栽的树" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 67, + "TrophyVariant:8": "neon", + "TrophyItem:10": { + "id:8": "bonsaitrees:bonsaipot", + "Count:1": 1, + "Damage:2": 1 + }, + "TrophyColorBlue:3": 67, + "TrophyName:8": "BONSAI!", + "TrophyColorRed:3": 67, + "TrophyEarnedAt:4": 1542315997 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1087:10": { + "questID:3": 1105, + "preRequisites:11": [ + 363 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "magneticraft:infinite_energy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "永恒能源", + "desc:8": "创造能量方块,可以无限产出Magneticraft的电力" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "magneticraft:infinite_energy", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1088:10": { + "questID:3": 1106, + "preRequisites:11": [ + 197 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:titanium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钛种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:titanium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1089:10": { + "questID:3": 1107, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "幸运图腾", + "desc:8": "25 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.luck.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1090:10": { + "questID:3": 1108, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "伤害吸收图腾", + "desc:8": "50 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 50, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.absorbtion.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1091:10": { + "questID:3": 1109, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "饱和图腾", + "desc:8": "64 RAK,不要将它与连锁挖矿一起使用,否则会直接消耗完饱食度。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 64, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.saturation.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1092:10": { + "questID:3": 1110, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生育图腾", + "desc:8": "30 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 30, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.fertility.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1093:10": { + "questID:3": 1111, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生命再生图腾", + "desc:8": "128 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 128, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.regeneration.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1094:10": { + "questID:3": 1112, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "凝视图腾", + "desc:8": "55 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 55, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.power_stare.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1095:10": { + "questID:3": 1113, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "力量图腾", + "desc:8": "45 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 45, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.strength.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1096:10": { + "questID:3": 1114, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "自动跳跃图腾", + "desc:8": "10 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.step_assist.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1097:10": { + "questID:3": 1115, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "催生图腾", + "desc:8": "150 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 150, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.bonemealer.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1098:10": { + "questID:3": 1116, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "漂浮图腾", + "desc:8": "20 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.levitation.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1099:10": { + "questID:3": 1117, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "抗性提升图腾", + "desc:8": "200 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 200, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.resistance.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1100:10": { + "questID:3": 1118, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "火焰抗性图腾", + "desc:8": "120 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 120, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.fire_resistance.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1101:10": { + "questID:3": 1119, + "preRequisites:11": [ + 661 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_end_steel_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影钢套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_end_steel_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_end_steel_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_end_steel_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_end_steel_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1102:10": { + "questID:3": 1120, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "水下呼吸图腾", + "desc:8": "1 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.water_breathing.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1103:10": { + "questID:3": 1121, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "急迫图腾", + "desc:8": "40 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 40, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.haste.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1104:10": { + "questID:3": 1122, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "跳跃提升图腾", + "desc:8": "25 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.jump_boost.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1105:10": { + "questID:3": 1123, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "速度图腾", + "desc:8": "15 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.speed.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1106:10": { + "questID:3": 1124, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "剧毒图腾", + "desc:8": "25 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.poison.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1107:10": { + "questID:3": 1125, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "虚弱图腾", + "desc:8": "35 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 35, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.weakness.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1108:10": { + "questID:3": 1126, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "缓慢图腾", + "desc:8": "20 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.slowness.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1109:10": { + "questID:3": 1127, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "凋零图腾", + "desc:8": "99 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 99, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.wither.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1110:10": { + "questID:3": 1128, + "preRequisites:11": [ + 0 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.flight.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "幸运图腾", + "desc:8": "25 RAK" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 25, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "everlastingabilities:ability_totem", + "Count:3": 1, + "tag:10": { + "everlastingabilities:abilityStoreStack:9": { + "0:10": { + "level:3": 1, + "name:8": "ability.abilities.everlastingabilities.luck.name" + } + } + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1111:10": { + "questID:3": 1129, + "preRequisites:11": [ + 854 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_stellar_alloy_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恒星合金套装", + "desc:8": "套装套娃线" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_stellar_alloy_helmet", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_stellar_alloy_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "2:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_stellar_alloy_leggings", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "3:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "enderio:item_stellar_alloy_boots", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1112:10": { + "questID:3": 1130, + "preRequisites:11": [ + 1048 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "紫色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1113:10": { + "questID:3": 1131, + "preRequisites:11": [ + 1130 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "紫罗兰物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 3, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1114:10": { + "questID:3": 1132, + "preRequisites:11": [ + 1131 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1115:10": { + "questID:3": 1133, + "preRequisites:11": [ + 1132 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "青色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 5, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1116:10": { + "questID:3": 1134, + "preRequisites:11": [ + 1133 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "绿色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 6, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1117:10": { + "questID:3": 1135, + "preRequisites:11": [ + 1134 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄绿色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 7, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1118:10": { + "questID:3": 1136, + "preRequisites:11": [ + 1135 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1119:10": { + "questID:3": 1137, + "preRequisites:11": [ + 1136 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "橙色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1120:10": { + "questID:3": 1138, + "preRequisites:11": [ + 1137 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "白色物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1121:10": { + "questID:3": 1139, + "preRequisites:11": [ + 1138 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "渐消物质", + "desc:8": "合成用材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "projectex:matter", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 15, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1122:10": { + "questID:3": 1140, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "netherex:ghast_queen_tear", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恶魂女王", + "desc:8": "恶魂女王只能在Fungi Forest群系周围的特殊的神秘浮动城堡内召唤。\n\n使用迷失药水灌满悲戚之瓮,然后使用恶魂之泪右键召唤。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "netherex:ghast_queen_tear", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1123:10": { + "questID:3": 1141, + "preRequisites:11": [ + 1076 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "solarflux:solar_panel_infinity", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "无限太阳能", + "desc:8": "产生 16777216 rf/t" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "solarflux:solar_panel_infinity", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 45, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1124:10": { + "questID:3": 1142, + "preRequisites:11": [ + 984 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:dust_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔粉", + "desc:8": "能够购买lordic材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "lordcraft:dust_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1125:10": { + "questID:3": 1143, + "preRequisites:11": [ + 984 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:shard_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔碎片", + "desc:8": "能够购买lordic材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "lordcraft:shard_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1126:10": { + "questID:3": 1144, + "preRequisites:11": [ + 984 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:cloth_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔丝绸", + "desc:8": "能够购买lordic材料,你做了lordic套装吗?" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "lordcraft:cloth_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1127:10": { + "questID:3": 1145, + "preRequisites:11": [ + 984 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:ingot_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔锭", + "desc:8": "能够购买lordic材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "lordcraft:ingot_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1128:10": { + "questID:3": 1146, + "preRequisites:11": [ + 984 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": 1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "lordcraft:gem_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 1, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "注魔粉", + "desc:8": "能够购买lordic材料" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 1, + "requiredItems:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 5, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "lordcraft:gem_magic", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1129:10": { + "questID:3": 1147, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:hop_graphite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "HOP石墨种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:hop_graphite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1130:10": { + "questID:3": 1148, + "preRequisites:11": [ + 196 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:magnesium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "镁种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:magnesium_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1131:10": { + "questID:3": 1149, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 61, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化荧石奇点", + "desc:8": "强化荧石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 61, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1132:10": { + "questID:3": 1150, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 60, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化黑曜石奇点", + "desc:8": "强化黑曜石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 60, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1133:10": { + "questID:3": 1151, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 59, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "源质钢奇点", + "desc:8": "源质钢块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 59, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1134:10": { + "questID:3": 1152, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 58, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "生动合金奇点", + "desc:8": "生动合金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 58, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1135:10": { + "questID:3": 1153, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 57, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能银奇点", + "desc:8": "充能银块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 57, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1136:10": { + "questID:3": 1154, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 56, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恒星合金奇点", + "desc:8": "恒星合金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 56, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1137:10": { + "questID:3": 1155, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 40, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "玄铁奇点", + "desc:8": "玄铁块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 40, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1138:10": { + "questID:3": 1156, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 55, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "晶化粉红史莱姆锭奇点", + "desc:8": "晶化粉红史莱姆锭块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 55, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1139:10": { + "questID:3": 1157, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 38, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钢叶奇点", + "desc:8": "钢叶块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 38, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1140:10": { + "questID:3": 1158, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 52, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硼奇点", + "desc:8": "硼块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 52, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1141:10": { + "questID:3": 1159, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 39, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "骑士金属奇点", + "desc:8": "骑士金属块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 39, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1142:10": { + "questID:3": 1160, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 53, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锂奇点", + "desc:8": "锂块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 53, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1143:10": { + "questID:3": 1161, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 54, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锰奇点", + "desc:8": "锰块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 54, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1144:10": { + "questID:3": 1162, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 15, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "橄榄石奇点", + "desc:8": "橄榄石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 15, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1145:10": { + "questID:3": 1163, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 11, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魔力石英奇点", + "desc:8": "魔力石英块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 11, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1146:10": { + "questID:3": 1164, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 10, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "熏香石英奇点", + "desc:8": "熏香石英块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 10, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1147:10": { + "questID:3": 1165, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 9, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "烈焰石英奇点", + "desc:8": "烈焰石英块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 9, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1148:10": { + "questID:3": 1166, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 62, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "锇奇点", + "desc:8": "锇块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 62, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1149:10": { + "questID:3": 1167, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 37, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "炽铁奇点", + "desc:8": "炽铁块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 37, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1150:10": { + "questID:3": 1168, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 36, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "铁木奇点", + "desc:8": "铁木块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 36, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1151:10": { + "questID:3": 1169, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 33, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "翡翠奇点", + "desc:8": "翡翠块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 33, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1152:10": { + "questID:3": 1170, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 21, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝石奇点", + "desc:8": "蓝石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 1, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 21, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1153:10": { + "questID:3": 1171, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 14, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蓝宝石奇点", + "desc:8": "蓝宝石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 14, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1154:10": { + "questID:3": 1172, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 13, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "红宝石奇点", + "desc:8": "红宝石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 13, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1155:10": { + "questID:3": 1173, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Awakened Draconium奇点", + "desc:8": "Awakened Draconium块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 12, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1156:10": { + "questID:3": 1174, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 47, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "恐惧金属奇点", + "desc:8": "恐惧金属块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 47, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1157:10": { + "questID:3": 1175, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 46, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "伊桑斯石奇点", + "desc:8": "伊桑斯石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 46, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1158:10": { + "questID:3": 1176, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 45, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "强化珊瑚奇点", + "desc:8": "强化珊瑚块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 45, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1159:10": { + "questID:3": 1177, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 44, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "月锭奇点", + "desc:8": "月锭块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 44, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 1, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1160:10": { + "questID:3": 1178, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 43, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "戴斯奇点", + "desc:8": "戴斯块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 43, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1161:10": { + "questID:3": 1179, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 42, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "陨铁奇点", + "desc:8": "陨铁块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 42, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1162:10": { + "questID:3": 1180, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 41, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "钯奇点", + "desc:8": "钯块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 41, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1163:10": { + "questID:3": 1181, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 8, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "精灵石英奇点", + "desc:8": "精灵石英块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 8, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1164:10": { + "questID:3": 1182, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 51, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "深渊奇点", + "desc:8": "深渊块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 51, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1165:10": { + "questID:3": 1183, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 63, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黄铀奇点", + "desc:8": "黄铀块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 63, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1166:10": { + "questID:3": 1184, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 1, + "Damage:2": 67, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能合金奇点", + "desc:8": "充能合金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 67, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1167:10": { + "questID:3": 1185, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 68, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲合金奇点", + "desc:8": "脉冲合金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 68, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1168:10": { + "questID:3": 1186, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 69, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "导电铁奇点", + "desc:8": "导电铁块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 69, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1169:10": { + "questID:3": 1187, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 70, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "脉冲铁奇点", + "desc:8": "脉冲铁块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 70, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1170:10": { + "questID:3": 1188, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 71, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "魂金奇点", + "desc:8": "魂金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 71, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1171:10": { + "questID:3": 1189, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 72, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "末影钢奇点", + "desc:8": "末影钢块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 72, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1172:10": { + "questID:3": 1190, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 73, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "充能琥珀金奇点", + "desc:8": "充能琥珀金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 73, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1173:10": { + "questID:3": 1191, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 74, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "旋律合金奇点", + "desc:8": "旋律合金块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 74, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1174:10": { + "questID:3": 1192, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 75, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "蕴魔结晶奇点", + "desc:8": "蕴魔结晶块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 75, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1175:10": { + "questID:3": 1193, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 76, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "赛特斯石英奇点", + "desc:8": "赛特斯石英块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 76, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1176:10": { + "questID:3": 1194, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 77, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "福鲁伊克斯水晶奇点", + "desc:8": "福鲁伊克斯水晶块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 77, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1177:10": { + "questID:3": 1195, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 78, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "硬化石糖奇点", + "desc:8": "硬糖块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 78, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1178:10": { + "questID:3": 1196, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 79, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "基础水晶奇点", + "desc:8": "基础水晶块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 79, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1179:10": { + "questID:3": 1197, + "preRequisites:11": [ + 364 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 80, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "黎明石奇点", + "desc:8": "黎明石块" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extendedcrafting:singularity_custom", + "Count:3": 64, + "Damage:2": 80, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 20, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1180:10": { + "questID:3": 1198, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "minecraft:iron_bars", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "失落的城市维度", + "desc:8": "想要前往失落的城市,你需要6个骷髅头,1张床和2个岩水晶块。\n\n几乎包含了所有以前在Landia的东西。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "armorplus:block_lava_crystal", + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "" + }, + "1:10": { + "id:8": "minecraft:bed", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "bed" + }, + "2:10": { + "id:8": "minecraft:skull", + "Count:3": 6, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1181:10": { + "questID:3": 1199, + "preRequisites:11": [ + 1045 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:wand_of_preservation", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "封存权杖", + "desc:8": "获得封存权杖。\n\n能够在Erebus维度自然生成的琥珀堆中找到。\n\n§c警告:你要做好跑图的准备,跑图时世界也有可能卡顿。" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 171, + "TrophyVariant:8": "classic", + "TrophyItem:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": { + "AS_Amulet_HolderLeast:4": -6624347722576104779, + "AS_Amulet_HolderMost:4": -1172398686987401963 + } + }, + "id:8": "erebus:wand_of_preservation", + "Count:1": 1, + "Damage:2": 0 + }, + "TrophyColorBlue:3": 55, + "TrophyName:8": "Wand of Preservation", + "TrophyColorRed:3": 228, + "TrophyEarnedAt:4": 1576786416 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1182:10": { + "questID:3": 1200, + "preRequisites:11": [ + 1045, + 1199 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 0, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "erebus:amber", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 1, + "repeat_relative:1": 1, + "name:8": "把它们都抓起来", + "desc:8": "使用封存权杖把所有Erebus的生物抓起来(不包括Boss)" + } + }, + "tasks:9": { + "0:10": { + "index:3": 0, + "taskID:8": "bq_standard:checkbox" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "simple_trophies:trophy", + "Count:3": 1, + "tag:10": { + "TrophyColorGreen:3": 171, + "TrophyVariant:8": "classic", + "TrophyItem:10": { + "id:8": "erebus:preserved_block", + "Count:1": 1, + "tag:10": { + "EntityNBT:10": { + "HurtByTimestamp:3": 0, + "ForgeData:10": {}, + "RelativeAABB:9": { + "0:6": -1.649999976158142, + "1:6": 0.0, + "2:6": -1.649999976158142, + "3:6": 1.649999976158142, + "4:6": 4.0, + "5:6": 1.649999976158142 + }, + "Attributes:9": { + "0:10": { + "Base:6": 0.0, + "Name:8": "generic.scales" + }, + "1:10": { + "Base:6": 1.0, + "Name:8": "generic.physicalDamageRate" + }, + "2:10": { + "Base:6": 1.0, + "Name:8": "generic.fireDamageRate" + }, + "3:10": { + "Base:6": 0.0, + "Name:8": "generic.fireAspect" + }, + "4:10": { + "Base:6": 1.0, + "Name:8": "generic.barehandedPower" + }, + "5:10": { + "Base:6": 0.0, + "Name:8": "generic.witchburn" + }, + "6:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction" + }, + "7:10": { + "Base:6": 0.0, + "Name:8": "generic.attraction_generation" + }, + "8:10": { + "Base:6": 200.0, + "Name:8": "generic.maxHealth" + }, + "9:10": { + "Base:6": 1.0, + "Name:8": "generic.knockbackResistance" + }, + "10:10": { + "Base:6": 0.5, + "Name:8": "generic.movementSpeed" + }, + "11:10": { + "Base:6": 0.0, + "Name:8": "generic.armor" + }, + "12:10": { + "Base:6": 0.0, + "Name:8": "generic.armorToughness" + }, + "13:10": { + "Base:6": 1.0, + "Name:8": "forge.swimSpeed" + }, + "14:10": { + "Base:6": 32.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 3477866854087018570, + "UUIDLeast:4": -9200951150694060418, + "Amount:6": -0.025515512459234575, + "Operation:3": 1, + "Name:8": "Random spawn bonus" + } + }, + "Name:8": "generic.followRange" + }, + "15:10": { + "Base:6": 12.0, + "Modifiers:9": { + "0:10": { + "UUIDMost:4": 9067913191699991537, + "UUIDLeast:4": -5095213541196854111, + "Amount:6": 0.546830952167511, + "Operation:3": 1, + "Name:8": "ESM_TWEAK_3" + } + }, + "Name:8": "generic.attackDamage" + } + }, + "Invulnerable:1": 0, + "FallFlying:1": 0, + "PortalCooldown:3": 0, + "AbsorptionAmount:5": 0.0, + "FallDistance:5": 0.0, + "DeathTime:2": 0, + "ForgeCaps:10": { + "nuclearcraft:capability_entity_rads:10": { + "consumed:1": 0, + "radawayBuffer:6": 0.0, + "shouldWarn:1": 0, + "radXUsed:1": 0, + "poisonBuffer:6": 0.0, + "radXCooldown:6": 0.0, + "radXWoreOff:1": 0, + "radawayCooldown:6": 0.0, + "recentRadawayAddition:6": 0.0, + "maxRads:6": 10000.0, + "radawayBufferSlow:6": 0.0, + "externalRadiationResistance:6": 0.0, + "totalRads:6": 0.0, + "setFromMaxHealth:1": 1, + "radiationLevel:6": 0.0, + "recentPoisonAddition:6": 0.0, + "recentRadXAddition:6": 0.0, + "radiationImmunityStage:1": 0, + "internalRadiationResistance:6": 0.0, + "radiationImmunityTime:6": 0.0 + }, + "tinkertoolleveling:entityxp:9": {}, + "epicsiegemod:modified_handler:10": { + "data:10": { + "epicsiegemod:general_spawn:10": { + "hasModifiers:1": 1, + "checkMobBomb:1": 1 + } + }, + "modified:1": 0 + }, + "twilightforest:cap_shield:10": { + "permshields:3": 0, + "tempshields:3": 0 + }, + "everlastingabilities:org.cyclops.everlastingabilities.api.capability.imutableabilitystore:9": {}, + "pneumaticcraft:hacking:10": {} + }, + "HandDropChances:9": { + "0:5": 0.085, + "1:5": 0.085 + }, + "PersistenceRequired:1": 0, + "id:8": "erebus:erebus.crushroom", + "Motion:9": { + "0:6": 0.0, + "1:6": -0.0784000015258789, + "2:6": 0.0 + }, + "Leashed:1": 0, + "UUIDLeast:4": -5796665668369595565, + "Health:5": 200.0, + "LeftHanded:1": 0, + "Air:2": 300, + "OnGround:1": 1, + "Dimension:3": 0, + "Rotation:9": { + "0:5": 48.40263, + "1:5": 0.0 + }, + "UpdateBlocked:1": 0, + "HandItems:9": { + "0:10": {}, + "1:10": {} + }, + "ArmorDropChances:9": { + "0:5": 0.085, + "1:5": 0.085, + "2:5": 0.085, + "3:5": 0.085 + }, + "UUIDMost:4": 3336468294748422388, + "Pos:9": { + "0:6": 23.5, + "1:6": 69.0, + "2:6": 78.5 + }, + "Fire:2": -1, + "ArmorItems:9": { + "0:10": {}, + "1:10": {}, + "2:10": {}, + "3:10": {} + }, + "CanPickUpLoot:1": 0, + "HurtTime:2": 0 + } + }, + "Damage:2": 1 + }, + "TrophyColorBlue:3": 55, + "TrophyName:8": "监狱长", + "TrophyColorRed:3": 228, + "TrophyEarnedAt:4": 1576786416 + }, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1183:10": { + "questID:3": 1201, + "preRequisites:11": [ + 195 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "mysticalagriculture:graphite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Graphite种子", + "desc:8": "" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 1, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 1, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "mysticalagriculture:graphite_seeds", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1184:10": { + "questID:3": 1202, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "extrautils2:teleporter", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "Deep Dark", + "desc:8": "一个充满矿物的维度,比如硼、星辉锭和海蓝宝石,但也充斥着很多怪物,包括格鲁。" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "extrautils2:teleporter", + "Count:3": 1, + "Damage:2": 1, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + }, + "1185:10": { + "questID:3": 1203, + "preRequisites:11": [ + 83 + ], + "properties:10": { + "betterquesting:10": { + "issilent:1": 0, + "snd_complete:8": "minecraft:record.11", + "lockedprogress:1": 1, + "tasklogic:8": "AND", + "repeattime:3": -1, + "visibility:8": "ALWAYS", + "simultaneous:1": 0, + "icon:10": { + "id:8": "simplevoidworld:portal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "globalshare:1": 0, + "questlogic:8": "AND", + "partysinglereward:1": 0, + "snd_update:8": "minecraft:entity.player.levelup", + "autoclaim:1": 0, + "ismain:1": 0, + "repeat_relative:1": 1, + "name:8": "只有虚空", + "desc:8": "什么都没有的维度" + } + }, + "tasks:9": { + "0:10": { + "partialMatch:1": 0, + "autoConsume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "consume:1": 0, + "requiredItems:9": { + "0:10": { + "id:8": "simplevoidworld:portal", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + } + }, + "taskID:8": "bq_standard:retrieval" + } + }, + "rewards:9": { + "0:10": { + "rewardID:8": "bq_standard:item", + "index:3": 0, + "rewards:9": { + "0:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 10, + "Damage:2": 0, + "OreDict:8": "" + } + } + } + } + } + }, + "questLines:9": { + "0:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 4, + "id:3": 0, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 60, + "id:3": 1, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 88, + "id:3": 2, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 4, + "y:3": 88, + "id:3": 3, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 140, + "y:3": 60, + "id:3": 4, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 244, + "y:3": 60, + "id:3": 5, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 244, + "y:3": 124, + "id:3": 6, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 116, + "id:3": 7, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 144, + "id:3": 8, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 172, + "id:3": 9, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 88, + "id:3": 10, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 244, + "y:3": 96, + "id:3": 11, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 116, + "y:3": 32, + "id:3": 12, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 244, + "y:3": 152, + "id:3": 13, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 244, + "y:3": 180, + "id:3": 14, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 244, + "y:3": 208, + "id:3": 15, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 92, + "y:3": 88, + "id:3": 16, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 92, + "y:3": 144, + "id:3": 18, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 92, + "y:3": 116, + "id:3": 19, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 92, + "y:3": 172, + "id:3": 20, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 88, + "y:3": 4, + "id:3": 21, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 60, + "id:3": 41, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 96, + "id:3": 83, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 124, + "id:3": 163, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 152, + "id:3": 164, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 60, + "id:3": 414, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 32, + "id:3": 472, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 116, + "id:3": 568, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 172, + "id:3": 569, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 200, + "id:3": 570, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 144, + "id:3": 571, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 140, + "y:3": 88, + "id:3": 573, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 140, + "y:3": 116, + "id:3": 574, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 4, + "y:3": 60, + "id:3": 598, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 4, + "y:3": 32, + "id:3": 599, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 4, + "y:3": 4, + "id:3": 600, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 4, + "id:3": 601, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 32, + "y:3": 32, + "id:3": 627, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 116, + "y:3": 4, + "id:3": 655, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 4, + "id:3": 656, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 172, + "y:3": 4, + "id:3": 657, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 200, + "y:3": 4, + "id:3": 658, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 4, + "id:3": 659, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 256, + "y:3": 4, + "id:3": 660, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 4, + "id:3": 758, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 200, + "y:3": 96, + "id:3": 904, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 200, + "y:3": 124, + "id:3": 905, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 200, + "y:3": 152, + "id:3": 906, + "sizeY:3": 24 + } + }, + "lineID:3": 0, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Alpha", + "icon:10": { + "id:8": "exnihilocreatio:block_sieve", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Ex Nihilo Creatio, Ceramics, tiny Progressions, 和tinkers\u0027 Construct,Furnace Overhaul." + } + }, + "order:3": 1 + }, + "1:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 240, + "id:3": 23, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 240, + "id:3": 24, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 240, + "id:3": 25, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 240, + "id:3": 26, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 240, + "id:3": 27, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 240, + "id:3": 28, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 270, + "id:3": 29, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 30, + "id:3": 30, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 30, + "id:3": 31, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 6, + "id:3": 32, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 54, + "id:3": 33, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 6, + "id:3": 34, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 54, + "id:3": 35, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 78, + "id:3": 36, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 102, + "id:3": 37, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 126, + "id:3": 38, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 150, + "id:3": 39, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 6, + "id:3": 40, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 12, + "id:3": 165, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 12, + "id:3": 166, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 174, + "id:3": 528, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 174, + "id:3": 529, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 204, + "id:3": 530, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 174, + "id:3": 534, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 204, + "id:3": 535, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 42, + "id:3": 880, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 114, + "id:3": 881, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 66, + "id:3": 882, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 42, + "id:3": 883, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 42, + "id:3": 884, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 90, + "id:3": 885, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 42, + "id:3": 886, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 12, + "id:3": 887, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 12, + "id:3": 888, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 114, + "id:3": 889, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 114, + "id:3": 890, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 30, + "id:3": 907, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 6, + "id:3": 908, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 30, + "id:3": 909, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 54, + "id:3": 910, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 78, + "id:3": 911, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 102, + "id:3": 912, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 126, + "id:3": 913, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 6, + "id:3": 914, + "sizeY:3": 24 + } + }, + "lineID:3": 1, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Beta", + "icon:10": { + "id:8": "actuallyadditions:block_display_stand", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Actually Additions, Mob Grinding Utils, Woot, /Dank/Null and Storage Drawers/YABBA." + } + }, + "order:3": 2 + }, + "2:10": { + "quests:9": { + "0:10": { + "sizeX:3": 60, + "x:3": 186, + "y:3": 96, + "id:3": 22, + "sizeY:3": 60 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 174, + "id:3": 63, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 174, + "id:3": 64, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 174, + "id:3": 65, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 66, + "id:3": 66, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 66, + "id:3": 67, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 66, + "id:3": 68, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 66, + "id:3": 69, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 66, + "id:3": 70, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 90, + "id:3": 71, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 66, + "id:3": 72, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 90, + "id:3": 73, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 42, + "id:3": 74, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 240, + "id:3": 76, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 276, + "y:3": 240, + "id:3": 77, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 210, + "id:3": 78, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 240, + "id:3": 79, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 258, + "id:3": 80, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 270, + "id:3": 87, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 300, + "id:3": 88, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 240, + "id:3": 981, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 210, + "id:3": 982, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 270, + "id:3": 983, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 360, + "id:3": 984, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 300, + "id:3": 1010, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 330, + "id:3": 1011, + "sizeY:3": 24 + } + }, + "lineID:3": 2, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Mu", + "icon:10": { + "id:8": "lordcraft:cyclicforge_advb", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "LordCraft." + } + }, + "order:3": 12 + }, + "3:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 54, + "id:3": 141, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 84, + "id:3": 142, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 246, + "y:3": 54, + "id:3": 143, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 246, + "y:3": 84, + "id:3": 144, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 114, + "id:3": 145, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 114, + "id:3": 146, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 144, + "id:3": 147, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 144, + "id:3": 148, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 144, + "id:3": 149, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 144, + "id:3": 150, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 126, + "id:3": 151, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 180, + "id:3": 152, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 240, + "id:3": 153, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 210, + "id:3": 154, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 114, + "id:3": 155, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 144, + "id:3": 156, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 174, + "id:3": 157, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 174, + "id:3": 158, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 270, + "id:3": 159, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 54, + "id:3": 160, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 84, + "id:3": 161, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 240, + "id:3": 162, + "sizeY:3": 24 + } + }, + "lineID:3": 3, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Xi", + "icon:10": { + "id:8": "botania:floatingspecialflower", + "Count:3": 1, + "tag:10": { + "type:8": "asgardandelion" + }, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Botania." + } + }, + "order:3": 14 + }, + "4:10": { + "quests:9": { + "0:10": { + "sizeX:3": 60, + "x:3": 18, + "y:3": 18, + "id:3": 189, + "sizeY:3": 60 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 36, + "id:3": 190, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 78, + "id:3": 191, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 78, + "id:3": 192, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 48, + "x:3": 156, + "y:3": 60, + "id:3": 193, + "sizeY:3": 48 + }, + "5:10": { + "sizeX:3": 60, + "x:3": 300, + "y:3": 54, + "id:3": 194, + "sizeY:3": 60 + }, + "6:10": { + "sizeX:3": 72, + "x:3": 498, + "y:3": 48, + "id:3": 195, + "sizeY:3": 72 + }, + "7:10": { + "sizeX:3": 60, + "x:3": 504, + "y:3": 258, + "id:3": 196, + "sizeY:3": 60 + }, + "8:10": { + "sizeX:3": 60, + "x:3": 300, + "y:3": 258, + "id:3": 197, + "sizeY:3": 60 + }, + "9:10": { + "sizeX:3": 60, + "x:3": 132, + "y:3": 258, + "id:3": 198, + "sizeY:3": 60 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 102, + "id:3": 199, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 126, + "id:3": 200, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 150, + "id:3": 201, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 174, + "id:3": 202, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 198, + "id:3": 203, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 198, + "id:3": 204, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 102, + "id:3": 205, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 126, + "id:3": 206, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 150, + "id:3": 207, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 174, + "id:3": 208, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 198, + "id:3": 209, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 222, + "id:3": 210, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 0, + "id:3": 211, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 0, + "id:3": 212, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 0, + "id:3": 213, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 114, + "id:3": 214, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 30, + "id:3": 215, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 30, + "id:3": 216, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 30, + "id:3": 217, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 90, + "id:3": 218, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 30, + "id:3": 219, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 138, + "id:3": 220, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 114, + "id:3": 221, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 138, + "id:3": 222, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 138, + "id:3": 223, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 54, + "id:3": 224, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 6, + "id:3": 225, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 6, + "id:3": 226, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 6, + "id:3": 227, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 6, + "id:3": 228, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 6, + "id:3": 229, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 6, + "id:3": 230, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 114, + "id:3": 231, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 72, + "id:3": 232, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 138, + "id:3": 233, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 138, + "id:3": 234, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 30, + "id:3": 235, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 0, + "id:3": 236, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 24, + "id:3": 237, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 48, + "id:3": 238, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 498, + "y:3": 0, + "id:3": 239, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 570, + "y:3": 0, + "id:3": 240, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 72, + "id:3": 241, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 24, + "id:3": 242, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 0, + "id:3": 243, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 0, + "id:3": 244, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 48, + "id:3": 245, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 72, + "id:3": 246, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 96, + "id:3": 247, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 120, + "id:3": 248, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 0, + "id:3": 250, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 144, + "id:3": 251, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 192, + "id:3": 252, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 144, + "id:3": 253, + "sizeY:3": 24 + }, + "64:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 120, + "id:3": 254, + "sizeY:3": 24 + }, + "65:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 96, + "id:3": 255, + "sizeY:3": 24 + }, + "66:10": { + "sizeX:3": 24, + "x:3": 594, + "y:3": 168, + "id:3": 256, + "sizeY:3": 24 + }, + "67:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 168, + "id:3": 257, + "sizeY:3": 24 + }, + "68:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 192, + "id:3": 258, + "sizeY:3": 24 + }, + "69:10": { + "sizeX:3": 24, + "x:3": 570, + "y:3": 192, + "id:3": 259, + "sizeY:3": 24 + }, + "70:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 168, + "id:3": 260, + "sizeY:3": 24 + }, + "71:10": { + "sizeX:3": 24, + "x:3": 570, + "y:3": 168, + "id:3": 261, + "sizeY:3": 24 + }, + "72:10": { + "sizeX:3": 24, + "x:3": 546, + "y:3": 0, + "id:3": 262, + "sizeY:3": 24 + }, + "73:10": { + "sizeX:3": 24, + "x:3": 570, + "y:3": 144, + "id:3": 263, + "sizeY:3": 24 + }, + "74:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 144, + "id:3": 264, + "sizeY:3": 24 + }, + "75:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 234, + "id:3": 265, + "sizeY:3": 24 + }, + "76:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 258, + "id:3": 266, + "sizeY:3": 24 + }, + "77:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 234, + "id:3": 267, + "sizeY:3": 24 + }, + "78:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 258, + "id:3": 268, + "sizeY:3": 24 + }, + "79:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 390, + "id:3": 269, + "sizeY:3": 24 + }, + "80:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 342, + "id:3": 270, + "sizeY:3": 24 + }, + "81:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 318, + "id:3": 271, + "sizeY:3": 24 + }, + "82:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 414, + "id:3": 272, + "sizeY:3": 24 + }, + "83:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 294, + "id:3": 273, + "sizeY:3": 24 + }, + "84:10": { + "sizeX:3": 24, + "x:3": 504, + "y:3": 234, + "id:3": 274, + "sizeY:3": 24 + }, + "85:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 234, + "id:3": 275, + "sizeY:3": 24 + }, + "86:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 258, + "id:3": 276, + "sizeY:3": 24 + }, + "87:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 390, + "id:3": 277, + "sizeY:3": 24 + }, + "88:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 366, + "id:3": 278, + "sizeY:3": 24 + }, + "89:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 390, + "id:3": 279, + "sizeY:3": 24 + }, + "90:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 342, + "id:3": 280, + "sizeY:3": 24 + }, + "91:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 234, + "id:3": 281, + "sizeY:3": 24 + }, + "92:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 258, + "id:3": 282, + "sizeY:3": 24 + }, + "93:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 234, + "id:3": 283, + "sizeY:3": 24 + }, + "94:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 414, + "id:3": 284, + "sizeY:3": 24 + }, + "95:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 318, + "id:3": 285, + "sizeY:3": 24 + }, + "96:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 294, + "id:3": 286, + "sizeY:3": 24 + }, + "97:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 366, + "id:3": 287, + "sizeY:3": 24 + }, + "98:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 276, + "id:3": 288, + "sizeY:3": 24 + }, + "99:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 228, + "id:3": 289, + "sizeY:3": 24 + }, + "100:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 228, + "id:3": 290, + "sizeY:3": 24 + }, + "101:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 324, + "id:3": 292, + "sizeY:3": 24 + }, + "102:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 324, + "id:3": 293, + "sizeY:3": 24 + }, + "103:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 324, + "id:3": 294, + "sizeY:3": 24 + }, + "104:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 228, + "id:3": 295, + "sizeY:3": 24 + }, + "105:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 228, + "id:3": 296, + "sizeY:3": 24 + }, + "106:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 324, + "id:3": 297, + "sizeY:3": 24 + }, + "107:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 324, + "id:3": 298, + "sizeY:3": 24 + }, + "108:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 228, + "id:3": 299, + "sizeY:3": 24 + }, + "109:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 240, + "id:3": 300, + "sizeY:3": 24 + }, + "110:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 312, + "id:3": 301, + "sizeY:3": 24 + }, + "111:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 240, + "id:3": 302, + "sizeY:3": 24 + }, + "112:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 264, + "id:3": 303, + "sizeY:3": 24 + }, + "113:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 264, + "id:3": 304, + "sizeY:3": 24 + }, + "114:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 240, + "id:3": 305, + "sizeY:3": 24 + }, + "115:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 102, + "id:3": 306, + "sizeY:3": 24 + }, + "116:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 150, + "id:3": 307, + "sizeY:3": 24 + }, + "117:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 126, + "id:3": 308, + "sizeY:3": 24 + }, + "118:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 138, + "id:3": 381, + "sizeY:3": 24 + }, + "119:10": { + "sizeX:3": 24, + "x:3": 498, + "y:3": 192, + "id:3": 437, + "sizeY:3": 24 + }, + "120:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 342, + "id:3": 470, + "sizeY:3": 24 + }, + "121:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 288, + "id:3": 531, + "sizeY:3": 24 + }, + "122:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 288, + "id:3": 532, + "sizeY:3": 24 + }, + "123:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 222, + "id:3": 533, + "sizeY:3": 24 + }, + "124:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 414, + "id:3": 550, + "sizeY:3": 24 + }, + "125:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 438, + "id:3": 754, + "sizeY:3": 24 + }, + "126:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 312, + "id:3": 755, + "sizeY:3": 24 + }, + "127:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 312, + "id:3": 756, + "sizeY:3": 24 + }, + "128:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 78, + "id:3": 860, + "sizeY:3": 24 + }, + "129:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 102, + "id:3": 861, + "sizeY:3": 24 + }, + "130:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 126, + "id:3": 862, + "sizeY:3": 24 + }, + "131:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 150, + "id:3": 863, + "sizeY:3": 24 + }, + "132:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 174, + "id:3": 864, + "sizeY:3": 24 + }, + "133:10": { + "sizeX:3": 24, + "x:3": 546, + "y:3": 192, + "id:3": 985, + "sizeY:3": 24 + }, + "134:10": { + "sizeX:3": 24, + "x:3": 546, + "y:3": 168, + "id:3": 986, + "sizeY:3": 24 + }, + "135:10": { + "sizeX:3": 24, + "x:3": 498, + "y:3": 168, + "id:3": 987, + "sizeY:3": 24 + }, + "136:10": { + "sizeX:3": 24, + "x:3": 456, + "y:3": 366, + "id:3": 988, + "sizeY:3": 24 + }, + "137:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 390, + "id:3": 989, + "sizeY:3": 24 + }, + "138:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 294, + "id:3": 990, + "sizeY:3": 24 + }, + "139:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 294, + "id:3": 991, + "sizeY:3": 24 + }, + "140:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 366, + "id:3": 992, + "sizeY:3": 24 + }, + "141:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 342, + "id:3": 993, + "sizeY:3": 24 + }, + "142:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 318, + "id:3": 995, + "sizeY:3": 24 + }, + "143:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 318, + "id:3": 996, + "sizeY:3": 24 + }, + "144:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 324, + "id:3": 997, + "sizeY:3": 24 + }, + "145:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 228, + "id:3": 998, + "sizeY:3": 24 + }, + "146:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 390, + "id:3": 1009, + "sizeY:3": 24 + }, + "147:10": { + "sizeX:3": 24, + "x:3": 504, + "y:3": 366, + "id:3": 1049, + "sizeY:3": 24 + }, + "148:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 366, + "id:3": 1050, + "sizeY:3": 24 + }, + "149:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 150, + "id:3": 1056, + "sizeY:3": 24 + }, + "150:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 126, + "id:3": 1057, + "sizeY:3": 24 + }, + "151:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 102, + "id:3": 1058, + "sizeY:3": 24 + }, + "152:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 78, + "id:3": 1059, + "sizeY:3": 24 + }, + "153:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 174, + "id:3": 1062, + "sizeY:3": 24 + }, + "154:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 168, + "id:3": 1095, + "sizeY:3": 24 + }, + "155:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 342, + "id:3": 1096, + "sizeY:3": 24 + }, + "156:10": { + "sizeX:3": 24, + "x:3": 504, + "y:3": 342, + "id:3": 1097, + "sizeY:3": 24 + }, + "157:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 252, + "id:3": 1098, + "sizeY:3": 24 + }, + "158:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 300, + "id:3": 1099, + "sizeY:3": 24 + }, + "159:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 276, + "id:3": 1106, + "sizeY:3": 24 + }, + "160:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 438, + "id:3": 1147, + "sizeY:3": 24 + }, + "161:10": { + "sizeX:3": 24, + "x:3": 480, + "y:3": 438, + "id:3": 1148, + "sizeY:3": 24 + }, + "162:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 144, + "id:3": 1201, + "sizeY:3": 24 + } + }, + "lineID:3": 4, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Delta", + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mysticalagriculture:watering_can", + "Count:3": 1, + "Damage:2": 4, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Mystical Agriculture." + } + }, + "order:3": 4 + }, + "5:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 54, + "id:3": 75, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 126, + "id:3": 81, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 24, + "id:3": 82, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 54, + "id:3": 167, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 84, + "id:3": 438, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 60, + "id:3": 440, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 108, + "id:3": 442, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 132, + "id:3": 448, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 156, + "id:3": 449, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 180, + "id:3": 450, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 204, + "id:3": 451, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 228, + "id:3": 452, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 402, + "y:3": 252, + "id:3": 453, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 84, + "id:3": 454, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 108, + "id:3": 455, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 132, + "id:3": 456, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 156, + "id:3": 457, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 180, + "id:3": 458, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 204, + "id:3": 459, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 228, + "id:3": 460, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 252, + "id:3": 461, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 84, + "id:3": 462, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 108, + "id:3": 463, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 132, + "id:3": 464, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 156, + "id:3": 465, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 180, + "id:3": 466, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 204, + "id:3": 467, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 228, + "id:3": 468, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 252, + "id:3": 469, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 24, + "id:3": 891, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 24, + "id:3": 892, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 24, + "id:3": 893, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 126, + "id:3": 894, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 54, + "id:3": 895, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 126, + "id:3": 896, + "sizeY:3": 24 + } + }, + "lineID:3": 5, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Epsilon", + "icon:10": { + "id:8": "magneticraft:crushing_table", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Magneticraft and Modular Machinery." + } + }, + "order:3": 5 + }, + "6:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 66, + "id:3": 541, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 96, + "id:3": 542, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": 96, + "id:3": 543, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 66, + "id:3": 544, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": 66, + "id:3": 545, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 36, + "id:3": 546, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 96, + "id:3": 547, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 6, + "id:3": 548, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 36, + "id:3": 549, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": 6, + "id:3": 551, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 6, + "id:3": 552, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 126, + "id:3": 553, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": 36, + "id:3": 554, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 156, + "id:3": 555, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 186, + "id:3": 556, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 216, + "id:3": 557, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 246, + "id:3": 558, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 66, + "id:3": 559, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 96, + "id:3": 560, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": 126, + "id:3": 561, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": 66, + "id:3": 1004, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": 36, + "id:3": 1005, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": 96, + "id:3": 1006, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 42, + "id:3": 1007, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 90, + "id:3": 1008, + "sizeY:3": 24 + } + }, + "lineID:3": 6, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Zeta", + "icon:10": { + "id:8": "immersiveengineering:wooden_device0", + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Immersive Engineering and Portality." + } + }, + "order:3": 6 + }, + "7:10": { + "quests:9": { + "0:10": { + "sizeX:3": 60, + "x:3": 84, + "y:3": 54, + "id:3": 168, + "sizeY:3": 60 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 198, + "id:3": 169, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 174, + "id:3": 170, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 150, + "id:3": 171, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 126, + "id:3": 172, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 126, + "id:3": 173, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 6, + "id:3": 174, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 102, + "id:3": 175, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 78, + "id:3": 176, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 54, + "id:3": 177, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 30, + "id:3": 178, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 102, + "id:3": 179, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 6, + "id:3": 180, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 6, + "id:3": 181, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 6, + "id:3": 182, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 6, + "id:3": 183, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 30, + "id:3": 184, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 30, + "id:3": 185, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 30, + "id:3": 186, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 6, + "id:3": 187, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 6, + "id:3": 188, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 150, + "id:3": 378, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 150, + "id:3": 475, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 174, + "id:3": 476, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 198, + "id:3": 477, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 12, + "y:3": 222, + "id:3": 478, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 576, + "y:3": 156, + "id:3": 479, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 576, + "y:3": 180, + "id:3": 480, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 60, + "id:3": 662, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 84, + "id:3": 663, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 108, + "id:3": 664, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 84, + "id:3": 665, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 60, + "id:3": 666, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 108, + "id:3": 667, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 120, + "id:3": 668, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 144, + "id:3": 669, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 168, + "id:3": 670, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 192, + "id:3": 671, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 216, + "id:3": 672, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 210, + "id:3": 874, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 186, + "id:3": 875, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 210, + "id:3": 876, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 186, + "id:3": 877, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 234, + "id:3": 878, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 210, + "id:3": 879, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 186, + "id:3": 948, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 6, + "id:3": 950, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 72, + "id:3": 951, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 60, + "x:3": 372, + "y:3": 96, + "id:3": 952, + "sizeY:3": 60 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 72, + "id:3": 953, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 498, + "y:3": 42, + "id:3": 954, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 576, + "y:3": 126, + "id:3": 955, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 576, + "y:3": 102, + "id:3": 956, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 42, + "id:3": 957, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 546, + "y:3": 42, + "id:3": 958, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 72, + "id:3": 959, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 432, + "y:3": 30, + "id:3": 960, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 36, + "x:3": 492, + "y:3": 108, + "id:3": 961, + "sizeY:3": 36 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 162, + "id:3": 962, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 186, + "id:3": 963, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 120, + "id:3": 964, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 90, + "id:3": 965, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 162, + "id:3": 966, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 90, + "id:3": 967, + "sizeY:3": 24 + }, + "64:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 162, + "id:3": 968, + "sizeY:3": 24 + }, + "65:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 150, + "id:3": 970, + "sizeY:3": 24 + }, + "66:10": { + "sizeX:3": 24, + "x:3": 234, + "y:3": 150, + "id:3": 971, + "sizeY:3": 24 + }, + "67:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 120, + "id:3": 972, + "sizeY:3": 24 + }, + "68:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 120, + "id:3": 973, + "sizeY:3": 24 + }, + "69:10": { + "sizeX:3": 24, + "x:3": 234, + "y:3": 120, + "id:3": 974, + "sizeY:3": 24 + }, + "70:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 0, + "id:3": 975, + "sizeY:3": 24 + }, + "71:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 0, + "id:3": 976, + "sizeY:3": 24 + }, + "72:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 0, + "id:3": 977, + "sizeY:3": 24 + }, + "73:10": { + "sizeX:3": 24, + "x:3": 234, + "y:3": 174, + "id:3": 978, + "sizeY:3": 24 + }, + "74:10": { + "sizeX:3": 24, + "x:3": 510, + "y:3": 156, + "id:3": 979, + "sizeY:3": 24 + }, + "75:10": { + "sizeX:3": 24, + "x:3": 486, + "y:3": 156, + "id:3": 980, + "sizeY:3": 24 + }, + "76:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 150, + "id:3": 1060, + "sizeY:3": 24 + }, + "77:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 162, + "id:3": 1082, + "sizeY:3": 24 + }, + "78:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 198, + "id:3": 1083, + "sizeY:3": 24 + }, + "79:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 24, + "id:3": 1084, + "sizeY:3": 24 + }, + "80:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 48, + "id:3": 1085, + "sizeY:3": 24 + }, + "81:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 48, + "id:3": 1086, + "sizeY:3": 24 + }, + "82:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 48, + "id:3": 1087, + "sizeY:3": 24 + }, + "83:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 24, + "id:3": 1088, + "sizeY:3": 24 + }, + "84:10": { + "sizeX:3": 24, + "x:3": 276, + "y:3": 0, + "id:3": 1089, + "sizeY:3": 24 + }, + "85:10": { + "sizeX:3": 24, + "x:3": 276, + "y:3": 48, + "id:3": 1090, + "sizeY:3": 24 + }, + "86:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 24, + "id:3": 1091, + "sizeY:3": 24 + } + }, + "lineID:3": 7, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Eta", + "icon:10": { + "id:8": "enderio:item_material", + "Count:3": 1, + "Damage:2": 44, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Thermal Foundation/Expansion/Dynamics and Ender IO." + } + }, + "order:3": 7 + }, + "8:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 18, + "id:3": 403, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 54, + "id:3": 404, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 84, + "id:3": 405, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 84, + "id:3": 406, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 84, + "id:3": 407, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 114, + "id:3": 408, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 114, + "id:3": 409, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 144, + "id:3": 410, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 18, + "id:3": 411, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 84, + "id:3": 412, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 54, + "id:3": 413, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 48, + "id:3": 767, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 78, + "id:3": 969, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 108, + "id:3": 1051, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 138, + "id:3": 1052, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 78, + "id:3": 1053, + "sizeY:3": 24 + } + }, + "lineID:3": 8, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Theta", + "icon:10": { + "id:8": "quantumflux:imaginarytime", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Industrial Foregoing and Quantum Flux." + } + }, + "order:3": 8 + }, + "9:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 36, + "id:3": 249, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 84, + "id:3": 291, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 426, + "id:3": 661, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 84, + "id:3": 749, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 120, + "id:3": 750, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 156, + "id:3": 751, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 192, + "id:3": 752, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 120, + "id:3": 753, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 66, + "id:3": 784, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 246, + "id:3": 785, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 378, + "id:3": 786, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 426, + "id:3": 787, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 66, + "id:3": 788, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 66, + "id:3": 789, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 66, + "id:3": 790, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 66, + "id:3": 791, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 96, + "id:3": 792, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 96, + "id:3": 793, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 66, + "id:3": 794, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 66, + "id:3": 795, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 96, + "id:3": 796, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 66, + "id:3": 797, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 96, + "id:3": 798, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 96, + "id:3": 799, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 96, + "id:3": 800, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 126, + "id:3": 801, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 96, + "id:3": 802, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 156, + "id:3": 803, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 126, + "id:3": 804, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 126, + "id:3": 806, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 126, + "id:3": 807, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 156, + "id:3": 809, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 156, + "id:3": 810, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 156, + "id:3": 811, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 126, + "id:3": 812, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 186, + "id:3": 813, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 156, + "id:3": 814, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 156, + "id:3": 815, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 126, + "id:3": 816, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 126, + "id:3": 817, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 156, + "id:3": 818, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 186, + "id:3": 819, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 186, + "id:3": 820, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 246, + "id:3": 821, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 246, + "id:3": 822, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 246, + "id:3": 823, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 246, + "id:3": 824, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 246, + "id:3": 825, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 306, + "id:3": 826, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 276, + "id:3": 827, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 246, + "id:3": 828, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 246, + "id:3": 829, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 276, + "id:3": 830, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 276, + "id:3": 831, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 276, + "id:3": 832, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 276, + "id:3": 833, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 276, + "id:3": 834, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 276, + "id:3": 835, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 306, + "id:3": 836, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 306, + "id:3": 837, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 306, + "id:3": 838, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 306, + "id:3": 839, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 306, + "id:3": 840, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 306, + "id:3": 841, + "sizeY:3": 24 + }, + "64:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 336, + "id:3": 842, + "sizeY:3": 24 + }, + "65:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 336, + "id:3": 843, + "sizeY:3": 24 + }, + "66:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 336, + "id:3": 844, + "sizeY:3": 24 + }, + "67:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 336, + "id:3": 845, + "sizeY:3": 24 + }, + "68:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 336, + "id:3": 846, + "sizeY:3": 24 + }, + "69:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 378, + "id:3": 847, + "sizeY:3": 24 + }, + "70:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 378, + "id:3": 848, + "sizeY:3": 24 + }, + "71:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 378, + "id:3": 849, + "sizeY:3": 24 + }, + "72:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 378, + "id:3": 850, + "sizeY:3": 24 + }, + "73:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 378, + "id:3": 851, + "sizeY:3": 24 + }, + "74:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 426, + "id:3": 852, + "sizeY:3": 24 + }, + "75:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 426, + "id:3": 853, + "sizeY:3": 24 + }, + "76:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 426, + "id:3": 854, + "sizeY:3": 24 + }, + "77:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 456, + "id:3": 855, + "sizeY:3": 24 + }, + "78:10": { + "sizeX:3": 24, + "x:3": 438, + "y:3": 426, + "id:3": 856, + "sizeY:3": 24 + }, + "79:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 456, + "id:3": 857, + "sizeY:3": 24 + }, + "80:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 456, + "id:3": 858, + "sizeY:3": 24 + }, + "81:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 426, + "id:3": 1119, + "sizeY:3": 24 + }, + "82:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 426, + "id:3": 1129, + "sizeY:3": 24 + } + }, + "lineID:3": 9, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Iota", + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "erebus:jade_chestplate", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Progression." + } + }, + "order:3": 9 + }, + "10:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 42, + "id:3": 42, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 42, + "id:3": 43, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 78, + "id:3": 44, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 78, + "id:3": 45, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 42, + "id:3": 46, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 114, + "id:3": 47, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 132, + "y:3": 6, + "id:3": 48, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 6, + "id:3": 49, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 6, + "id:3": 50, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 114, + "id:3": 51, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 150, + "id:3": 52, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 42, + "id:3": 53, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 78, + "id:3": 54, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 78, + "id:3": 55, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 114, + "id:3": 56, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 114, + "id:3": 57, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 114, + "id:3": 58, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 66, + "y:3": 150, + "id:3": 59, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 150, + "id:3": 60, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 186, + "id:3": 61, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 114, + "id:3": 62, + "sizeY:3": 24 + } + }, + "lineID:3": 10, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Gamma", + "icon:10": { + "id:8": "embers:ember_cluster", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Embers." + } + }, + "order:3": 3 + }, + "11:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 48, + "id:3": 84, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 84, + "id:3": 759, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 90, + "id:3": 760, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 72, + "id:3": 761, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 84, + "id:3": 762, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 246, + "y:3": 48, + "id:3": 763, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 24, + "id:3": 764, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 12, + "id:3": 765, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 6, + "id:3": 766, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 0, + "id:3": 915, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 0, + "id:3": 916, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 96, + "id:3": 917, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 0, + "id:3": 918, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 48, + "id:3": 919, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 48, + "id:3": 920, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 96, + "id:3": 921, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 6, + "id:3": 1140, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 36, + "id:3": 1198, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 66, + "id:3": 1202, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 96, + "id:3": 1203, + "sizeY:3": 24 + } + }, + "lineID:3": 11, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Lambda", + "icon:10": { + "id:8": "twilightforest:firefly", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Twilight Forest and Erebus." + } + }, + "order:3": 11 + }, + "12:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 42, + "id:3": 626, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 72, + "id:3": 628, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 12, + "id:3": 629, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 42, + "id:3": 630, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 42, + "id:3": 631, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 12, + "id:3": 632, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 72, + "id:3": 633, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 72, + "id:3": 634, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 132, + "id:3": 635, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 102, + "id:3": 636, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 102, + "id:3": 637, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 162, + "id:3": 638, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 192, + "id:3": 639, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 42, + "id:3": 640, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 42, + "id:3": 641, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 72, + "id:3": 642, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 102, + "id:3": 643, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 132, + "id:3": 644, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 162, + "id:3": 645, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 72, + "id:3": 646, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 42, + "id:3": 673, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 42, + "id:3": 674, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 534, + "y:3": 42, + "id:3": 675, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 360, + "y:3": 42, + "id:3": 676, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 102, + "id:3": 677, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 132, + "id:3": 678, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 72, + "id:3": 679, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 72, + "id:3": 680, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 132, + "id:3": 681, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 72, + "id:3": 682, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 12, + "id:3": 683, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 72, + "id:3": 684, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 102, + "id:3": 685, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 132, + "id:3": 686, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 162, + "id:3": 687, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 576, + "y:3": 42, + "id:3": 688, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 534, + "y:3": 72, + "id:3": 689, + "sizeY:3": 24 + } + }, + "lineID:3": 12, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Omicron", + "icon:10": { + "id:8": "abyssalcraft:oblivionshard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "AbyssalCraft" + } + }, + "order:3": 15 + }, + "13:10": { + "quests:9": { + "0:10": { + "sizeX:3": 48, + "x:3": 294, + "y:3": 66, + "id:3": 86, + "sizeY:3": 48 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 90, + "id:3": 89, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 114, + "id:3": 90, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 186, + "id:3": 91, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 138, + "id:3": 92, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 66, + "id:3": 93, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 186, + "y:3": 78, + "id:3": 94, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 126, + "id:3": 95, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 156, + "id:3": 96, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 186, + "id:3": 97, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 234, + "id:3": 98, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 78, + "id:3": 99, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": 78, + "id:3": 100, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 186, + "id:3": 101, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 138, + "id:3": 102, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 186, + "id:3": 103, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 162, + "id:3": 104, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 36, + "x:3": 390, + "y:3": 180, + "id:3": 105, + "sizeY:3": 36 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 396, + "y:3": 138, + "id:3": 106, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 396, + "y:3": 114, + "id:3": 107, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 210, + "id:3": 108, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 126, + "id:3": 109, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 186, + "y:3": 156, + "id:3": 110, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 186, + "id:3": 111, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": 234, + "id:3": 112, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 78, + "id:3": 113, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 186, + "id:3": 114, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": 186, + "id:3": 115, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 126, + "id:3": 116, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 36, + "id:3": 481, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 36, + "id:3": 482, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 36, + "id:3": 483, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 396, + "y:3": 36, + "id:3": 562, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 426, + "y:3": 36, + "id:3": 563, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 48, + "id:3": 999, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 234, + "id:3": 1000, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 186, + "y:3": 48, + "id:3": 1001, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 138, + "id:3": 1002, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 18, + "id:3": 1003, + "sizeY:3": 24 + } + }, + "lineID:3": 13, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Tau", + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "mekanism:machineblock3", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Mekanism." + } + }, + "order:3": 19 + }, + "14:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 504, + "y:3": 78, + "id:3": 85, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 30, + "id:3": 117, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 30, + "id:3": 118, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 30, + "id:3": 119, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 30, + "id:3": 120, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 90, + "id:3": 121, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 90, + "id:3": 122, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 60, + "id:3": 123, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 60, + "id:3": 124, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 60, + "id:3": 125, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 120, + "id:3": 126, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 90, + "id:3": 127, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 30, + "id:3": 128, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 66, + "id:3": 129, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 60, + "id:3": 130, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 0, + "id:3": 131, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 30, + "id:3": 132, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 96, + "id:3": 133, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 126, + "id:3": 134, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 96, + "id:3": 135, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 96, + "id:3": 136, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 66, + "id:3": 137, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 60, + "id:3": 138, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 66, + "id:3": 139, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 30, + "id:3": 140, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 96, + "id:3": 309, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 96, + "id:3": 310, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 156, + "id:3": 311, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 156, + "id:3": 312, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 156, + "id:3": 313, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 180, + "id:3": 314, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 204, + "id:3": 315, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 228, + "id:3": 316, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 252, + "id:3": 317, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 276, + "id:3": 318, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 300, + "id:3": 319, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 390, + "y:3": 324, + "id:3": 320, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 180, + "id:3": 321, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 204, + "id:3": 322, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 228, + "id:3": 323, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 252, + "id:3": 324, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 276, + "id:3": 325, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 180, + "id:3": 326, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 204, + "id:3": 327, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 228, + "id:3": 328, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 252, + "id:3": 329, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 276, + "id:3": 330, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 366, + "y:3": 300, + "id:3": 331, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 342, + "y:3": 300, + "id:3": 332, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 156, + "id:3": 333, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 126, + "id:3": 334, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 474, + "y:3": 66, + "id:3": 335, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 504, + "y:3": 54, + "id:3": 336, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 66, + "id:3": 474, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 156, + "id:3": 867, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 294, + "y:3": 156, + "id:3": 868, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 180, + "id:3": 869, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 294, + "y:3": 180, + "id:3": 870, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 132, + "id:3": 871, + "sizeY:3": 24 + } + }, + "lineID:3": 14, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Rho", + "icon:10": { + "id:8": "appliedenergistics2:part", + "Count:3": 1, + "Damage:2": 420, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Applied Energistics, ExtraCells, and Quantum Storage." + } + }, + "order:3": 17 + }, + "15:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 198, + "id:3": 536, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 168, + "id:3": 537, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 222, + "id:3": 538, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 78, + "id:3": 539, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 78, + "id:3": 540, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 174, + "id:3": 690, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 138, + "id:3": 691, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 42, + "id:3": 692, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 210, + "y:3": 18, + "id:3": 693, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 18, + "id:3": 694, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 18, + "id:3": 695, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 78, + "id:3": 696, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 138, + "id:3": 697, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 204, + "id:3": 698, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 48, + "id:3": 699, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 48, + "id:3": 700, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 48, + "id:3": 701, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 78, + "id:3": 702, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 96, + "id:3": 703, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 60, + "id:3": 704, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 138, + "id:3": 705, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 168, + "id:3": 706, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 138, + "id:3": 897, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 48, + "id:3": 922, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 108, + "id:3": 923, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 78, + "id:3": 924, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 486, + "y:3": 18, + "id:3": 925, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 18, + "id:3": 926, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 108, + "id:3": 927, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 486, + "y:3": 48, + "id:3": 928, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 138, + "id:3": 929, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 168, + "id:3": 930, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 138, + "id:3": 931, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 168, + "id:3": 932, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 198, + "id:3": 933, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 384, + "y:3": 228, + "id:3": 934, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 414, + "y:3": 198, + "id:3": 935, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 486, + "y:3": 78, + "id:3": 936, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 552, + "y:3": 18, + "id:3": 937, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 582, + "y:3": 18, + "id:3": 938, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 612, + "y:3": 18, + "id:3": 939, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 642, + "y:3": 18, + "id:3": 940, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 78, + "id:3": 941, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 450, + "y:3": 18, + "id:3": 942, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 522, + "y:3": 48, + "id:3": 943, + "sizeY:3": 24 + } + }, + "lineID:3": 15, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Nu", + "icon:10": { + "id:8": "astralsorcery:itemcraftingcomponent", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Astral Sorcery and Blood Magic." + } + }, + "order:3": 13 + }, + "16:10": { + "quests:9": { + "0:10": { + "sizeX:3": 54, + "x:3": 78, + "y:3": 72, + "id:3": 768, + "sizeY:3": 54 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 42, + "id:3": 769, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 42, + "id:3": 770, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 42, + "id:3": 771, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 42, + "id:3": 772, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 42, + "id:3": 773, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 102, + "id:3": 774, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 132, + "id:3": 775, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 132, + "id:3": 776, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 102, + "id:3": 777, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 132, + "id:3": 778, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 132, + "id:3": 779, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 102, + "id:3": 780, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 72, + "id:3": 781, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 72, + "id:3": 782, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 72, + "id:3": 783, + "sizeY:3": 24 + } + }, + "lineID:3": 16, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Sigma", + "icon:10": { + "id:8": "rftools:dimensional_shard", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "RFTools" + } + }, + "order:3": 18 + }, + "17:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 36, + "id:3": 485, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 66, + "id:3": 486, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 66, + "id:3": 487, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 66, + "id:3": 488, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 66, + "id:3": 489, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 36, + "id:3": 490, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 36, + "id:3": 491, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 6, + "id:3": 492, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 96, + "id:3": 493, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 36, + "id:3": 494, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 228, + "id:3": 495, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 228, + "id:3": 496, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 228, + "id:3": 497, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": 228, + "id:3": 498, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 228, + "id:3": 499, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 228, + "id:3": 500, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 228, + "id:3": 501, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 228, + "id:3": 502, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 204, + "id:3": 503, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 204, + "id:3": 504, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 204, + "id:3": 505, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 126, + "y:3": 204, + "id:3": 506, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 204, + "id:3": 507, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 204, + "id:3": 508, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 204, + "id:3": 509, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 204, + "id:3": 510, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 96, + "id:3": 511, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 126, + "id:3": 512, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 36, + "id:3": 513, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 126, + "id:3": 514, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 96, + "id:3": 515, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 66, + "id:3": 516, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 66, + "id:3": 517, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 282, + "y:3": 36, + "id:3": 518, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 126, + "id:3": 519, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 126, + "id:3": 520, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 36, + "id:3": 521, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 96, + "id:3": 522, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 96, + "id:3": 523, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 6, + "id:3": 524, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 36, + "id:3": 525, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 96, + "id:3": 526, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 6, + "id:3": 865, + "sizeY:3": 24 + } + }, + "lineID:3": 17, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Pi", + "icon:10": { + "id:8": "pneumaticcraft:air_compressor", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Pneumaticraft" + } + }, + "order:3": 16 + }, + "18:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 0, + "id:3": 1012, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 30, + "id:3": 1013, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 30, + "id:3": 1014, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 60, + "id:3": 1015, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 90, + "id:3": 1016, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 120, + "id:3": 1017, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 60, + "id:3": 1018, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 60, + "id:3": 1019, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 60, + "id:3": 1020, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 60, + "id:3": 1021, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 0, + "id:3": 1022, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 0, + "id:3": 1023, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 174, + "y:3": 0, + "id:3": 1024, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 30, + "id:3": 1025, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 30, + "id:3": 1026, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 90, + "id:3": 1027, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 90, + "id:3": 1028, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 90, + "id:3": 1029, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 90, + "id:3": 1030, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 120, + "id:3": 1031, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 120, + "id:3": 1032, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 150, + "id:3": 1033, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 150, + "id:3": 1034, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 180, + "id:3": 1035, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 120, + "id:3": 1036, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 54, + "y:3": 120, + "id:3": 1037, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 150, + "id:3": 1038, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 150, + "id:3": 1039, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 174, + "id:3": 1040, + "sizeY:3": 24 + } + }, + "lineID:3": 18, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Upsilon", + "icon:10": { + "ForgeCaps:10": { + "astralsorcery:cap_item_amulet_holder:10": {} + }, + "id:8": "extraplanets:item_tier10_electric_rocket", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Galacticraft and Extra Planets." + } + }, + "order:3": 20 + }, + "19:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 80, + "y:3": 120, + "id:3": 425, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 80, + "y:3": 88, + "id:3": 426, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 80, + "y:3": 56, + "id:3": 427, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 120, + "id:3": 428, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 152, + "id:3": 429, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 120, + "id:3": 430, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 16, + "y:3": 120, + "id:3": 431, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 152, + "id:3": 432, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 80, + "y:3": 24, + "id:3": 433, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 152, + "id:3": 434, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 120, + "id:3": 435, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 80, + "y:3": 152, + "id:3": 436, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 184, + "id:3": 707, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 88, + "id:3": 734, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 88, + "id:3": 735, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 58, + "id:3": 736, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 88, + "id:3": 737, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 118, + "id:3": 738, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 148, + "id:3": 739, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 178, + "id:3": 740, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 208, + "id:3": 741, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 28, + "id:3": 742, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 88, + "id:3": 743, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 88, + "id:3": 744, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 88, + "id:3": 745, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 58, + "id:3": 746, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 58, + "id:3": 747, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 118, + "id:3": 748, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 184, + "id:3": 1048, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 216, + "id:3": 1130, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 216, + "id:3": 1131, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 248, + "id:3": 1132, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 248, + "id:3": 1133, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 276, + "id:3": 1134, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 276, + "id:3": 1135, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 304, + "id:3": 1136, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 304, + "id:3": 1137, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 112, + "y:3": 332, + "id:3": 1138, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 144, + "y:3": 332, + "id:3": 1139, + "sizeY:3": 24 + } + }, + "lineID:3": 19, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Phi", + "icon:10": { + "id:8": "draconicevolution:awakened_core", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Draconic Evolution and ProjectE." + } + }, + "order:3": 21 + }, + "20:10": { + "quests:9": { + "0:10": { + "sizeX:3": 30, + "x:3": 18, + "y:3": 54, + "id:3": 575, + "sizeY:3": 30 + }, + "1:10": { + "sizeX:3": 30, + "x:3": 18, + "y:3": 108, + "id:3": 576, + "sizeY:3": 30 + }, + "2:10": { + "sizeX:3": 30, + "x:3": 18, + "y:3": 162, + "id:3": 577, + "sizeY:3": 30 + }, + "3:10": { + "sizeX:3": 30, + "x:3": 18, + "y:3": 216, + "id:3": 578, + "sizeY:3": 30 + }, + "4:10": { + "sizeX:3": 30, + "x:3": 18, + "y:3": 270, + "id:3": 579, + "sizeY:3": 30 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 84, + "id:3": 580, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 84, + "id:3": 581, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 138, + "id:3": 582, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 138, + "id:3": 583, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 192, + "id:3": 584, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 192, + "id:3": 585, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 246, + "id:3": 586, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 246, + "id:3": 587, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 300, + "id:3": 588, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 36, + "y:3": 300, + "id:3": 589, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 0, + "id:3": 590, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 24, + "y:3": 0, + "id:3": 591, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 0, + "id:3": 592, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 54, + "id:3": 593, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 108, + "id:3": 594, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 162, + "id:3": 595, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 216, + "id:3": 596, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 270, + "id:3": 597, + "sizeY:3": 24 + } + }, + "lineID:3": 20, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Chi", + "icon:10": { + "id:8": "openmodularturrets:rail_gun_turret", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Open Modular Turrets. A useful mod if planning to build a base in a hostile location like another planet or dimension." + } + }, + "order:3": 22 + }, + "21:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 378, + "id:3": 337, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 432, + "id:3": 338, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 354, + "id:3": 339, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 210, + "id:3": 340, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 456, + "id:3": 341, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 330, + "id:3": 342, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 330, + "id:3": 343, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 306, + "id:3": 344, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 186, + "id:3": 345, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 282, + "id:3": 346, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 432, + "id:3": 347, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 126, + "id:3": 348, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 102, + "id:3": 349, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 78, + "id:3": 350, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 54, + "id:3": 351, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 30, + "id:3": 352, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 42, + "id:3": 353, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 66, + "id:3": 354, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 90, + "id:3": 355, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 114, + "id:3": 356, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 138, + "id:3": 357, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 162, + "id:3": 358, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 6, + "y:3": 150, + "id:3": 359, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 30, + "id:3": 360, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 90, + "id:3": 361, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 60, + "x:3": 54, + "y:3": 156, + "id:3": 362, + "sizeY:3": 60 + }, + "26:10": { + "sizeX:3": 60, + "x:3": 54, + "y:3": 300, + "id:3": 363, + "sizeY:3": 60 + }, + "27:10": { + "sizeX:3": 96, + "x:3": 588, + "y:3": 138, + "id:3": 364, + "sizeY:3": 96 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 624, + "y:3": 234, + "id:3": 365, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 96, + "y:3": 90, + "id:3": 366, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 294, + "id:3": 367, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 318, + "id:3": 368, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": 90, + "id:3": 369, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 90, + "id:3": 370, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 468, + "y:3": 90, + "id:3": 371, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 90, + "id:3": 372, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 90, + "id:3": 373, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 396, + "y:3": 90, + "id:3": 374, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 66, + "id:3": 375, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 90, + "id:3": 376, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 66, + "id:3": 377, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 90, + "id:3": 379, + "sizeY:3": 24 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 66, + "id:3": 380, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 90, + "id:3": 382, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 90, + "id:3": 383, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 42, + "id:3": 384, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 42, + "id:3": 385, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 324, + "y:3": 42, + "id:3": 386, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 42, + "id:3": 387, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 90, + "id:3": 388, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 42, + "id:3": 389, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": 42, + "id:3": 390, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 42, + "id:3": 391, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 468, + "y:3": 42, + "id:3": 392, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 42, + "id:3": 393, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 396, + "y:3": 42, + "id:3": 394, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 42, + "id:3": 395, + "sizeY:3": 24 + }, + "57:10": { + "sizeX:3": 24, + "x:3": 516, + "y:3": 66, + "id:3": 396, + "sizeY:3": 24 + }, + "58:10": { + "sizeX:3": 24, + "x:3": 492, + "y:3": 66, + "id:3": 397, + "sizeY:3": 24 + }, + "59:10": { + "sizeX:3": 24, + "x:3": 468, + "y:3": 66, + "id:3": 398, + "sizeY:3": 24 + }, + "60:10": { + "sizeX:3": 24, + "x:3": 444, + "y:3": 66, + "id:3": 399, + "sizeY:3": 24 + }, + "61:10": { + "sizeX:3": 24, + "x:3": 420, + "y:3": 66, + "id:3": 400, + "sizeY:3": 24 + }, + "62:10": { + "sizeX:3": 24, + "x:3": 396, + "y:3": 66, + "id:3": 401, + "sizeY:3": 24 + }, + "63:10": { + "sizeX:3": 24, + "x:3": 372, + "y:3": 66, + "id:3": 402, + "sizeY:3": 24 + }, + "64:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 402, + "id:3": 527, + "sizeY:3": 24 + }, + "65:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 378, + "id:3": 565, + "sizeY:3": 24 + }, + "66:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 354, + "id:3": 566, + "sizeY:3": 24 + }, + "67:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 330, + "id:3": 567, + "sizeY:3": 24 + }, + "68:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 318, + "id:3": 602, + "sizeY:3": 24 + }, + "69:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 318, + "id:3": 603, + "sizeY:3": 24 + }, + "70:10": { + "sizeX:3": 24, + "x:3": 204, + "y:3": 318, + "id:3": 604, + "sizeY:3": 24 + }, + "71:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 360, + "id:3": 605, + "sizeY:3": 24 + }, + "72:10": { + "sizeX:3": 60, + "x:3": 246, + "y:3": 342, + "id:3": 606, + "sizeY:3": 60 + }, + "73:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 294, + "id:3": 607, + "sizeY:3": 24 + }, + "74:10": { + "sizeX:3": 24, + "x:3": 276, + "y:3": 318, + "id:3": 608, + "sizeY:3": 24 + }, + "75:10": { + "sizeX:3": 24, + "x:3": 336, + "y:3": 318, + "id:3": 609, + "sizeY:3": 24 + }, + "76:10": { + "sizeX:3": 24, + "x:3": 246, + "y:3": 402, + "id:3": 610, + "sizeY:3": 24 + }, + "77:10": { + "sizeX:3": 24, + "x:3": 222, + "y:3": 402, + "id:3": 611, + "sizeY:3": 24 + }, + "78:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 294, + "id:3": 612, + "sizeY:3": 24 + }, + "79:10": { + "sizeX:3": 24, + "x:3": 270, + "y:3": 402, + "id:3": 613, + "sizeY:3": 24 + }, + "80:10": { + "sizeX:3": 24, + "x:3": 294, + "y:3": 402, + "id:3": 614, + "sizeY:3": 24 + }, + "81:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 402, + "id:3": 615, + "sizeY:3": 24 + }, + "82:10": { + "sizeX:3": 24, + "x:3": 306, + "y:3": 318, + "id:3": 859, + "sizeY:3": 24 + }, + "83:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 402, + "id:3": 866, + "sizeY:3": 24 + }, + "84:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 0, + "id:3": 949, + "sizeY:3": 24 + }, + "85:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 6, + "id:3": 1061, + "sizeY:3": 24 + }, + "86:10": { + "sizeX:3": 60, + "x:3": 306, + "y:3": 342, + "id:3": 1069, + "sizeY:3": 60 + }, + "87:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 282, + "id:3": 1105, + "sizeY:3": 24 + }, + "88:10": { + "sizeX:3": 24, + "x:3": 780, + "y:3": 90, + "id:3": 1149, + "sizeY:3": 24 + }, + "89:10": { + "sizeX:3": 24, + "x:3": 756, + "y:3": 90, + "id:3": 1150, + "sizeY:3": 24 + }, + "90:10": { + "sizeX:3": 24, + "x:3": 732, + "y:3": 90, + "id:3": 1151, + "sizeY:3": 24 + }, + "91:10": { + "sizeX:3": 24, + "x:3": 708, + "y:3": 90, + "id:3": 1152, + "sizeY:3": 24 + }, + "92:10": { + "sizeX:3": 24, + "x:3": 684, + "y:3": 90, + "id:3": 1153, + "sizeY:3": 24 + }, + "93:10": { + "sizeX:3": 24, + "x:3": 660, + "y:3": 90, + "id:3": 1154, + "sizeY:3": 24 + }, + "94:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 66, + "id:3": 1155, + "sizeY:3": 24 + }, + "95:10": { + "sizeX:3": 24, + "x:3": 636, + "y:3": 90, + "id:3": 1156, + "sizeY:3": 24 + }, + "96:10": { + "sizeX:3": 24, + "x:3": 540, + "y:3": 66, + "id:3": 1157, + "sizeY:3": 24 + }, + "97:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 90, + "id:3": 1158, + "sizeY:3": 24 + }, + "98:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 66, + "id:3": 1159, + "sizeY:3": 24 + }, + "99:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 90, + "id:3": 1160, + "sizeY:3": 24 + }, + "100:10": { + "sizeX:3": 24, + "x:3": 612, + "y:3": 90, + "id:3": 1161, + "sizeY:3": 24 + }, + "101:10": { + "sizeX:3": 24, + "x:3": 732, + "y:3": 42, + "id:3": 1162, + "sizeY:3": 24 + }, + "102:10": { + "sizeX:3": 24, + "x:3": 636, + "y:3": 42, + "id:3": 1163, + "sizeY:3": 24 + }, + "103:10": { + "sizeX:3": 24, + "x:3": 612, + "y:3": 42, + "id:3": 1164, + "sizeY:3": 24 + }, + "104:10": { + "sizeX:3": 24, + "x:3": 588, + "y:3": 42, + "id:3": 1165, + "sizeY:3": 24 + }, + "105:10": { + "sizeX:3": 24, + "x:3": 804, + "y:3": 90, + "id:3": 1166, + "sizeY:3": 24 + }, + "106:10": { + "sizeX:3": 24, + "x:3": 828, + "y:3": 42, + "id:3": 1167, + "sizeY:3": 24 + }, + "107:10": { + "sizeX:3": 24, + "x:3": 804, + "y:3": 42, + "id:3": 1168, + "sizeY:3": 24 + }, + "108:10": { + "sizeX:3": 24, + "x:3": 780, + "y:3": 42, + "id:3": 1169, + "sizeY:3": 24 + }, + "109:10": { + "sizeX:3": 24, + "x:3": 756, + "y:3": 42, + "id:3": 1170, + "sizeY:3": 24 + }, + "110:10": { + "sizeX:3": 24, + "x:3": 708, + "y:3": 42, + "id:3": 1171, + "sizeY:3": 24 + }, + "111:10": { + "sizeX:3": 24, + "x:3": 684, + "y:3": 42, + "id:3": 1172, + "sizeY:3": 24 + }, + "112:10": { + "sizeX:3": 24, + "x:3": 660, + "y:3": 42, + "id:3": 1173, + "sizeY:3": 24 + }, + "113:10": { + "sizeX:3": 24, + "x:3": 756, + "y:3": 66, + "id:3": 1174, + "sizeY:3": 24 + }, + "114:10": { + "sizeX:3": 24, + "x:3": 732, + "y:3": 66, + "id:3": 1175, + "sizeY:3": 24 + }, + "115:10": { + "sizeX:3": 24, + "x:3": 708, + "y:3": 66, + "id:3": 1176, + "sizeY:3": 24 + }, + "116:10": { + "sizeX:3": 24, + "x:3": 684, + "y:3": 66, + "id:3": 1177, + "sizeY:3": 24 + }, + "117:10": { + "sizeX:3": 24, + "x:3": 660, + "y:3": 66, + "id:3": 1178, + "sizeY:3": 24 + }, + "118:10": { + "sizeX:3": 24, + "x:3": 636, + "y:3": 66, + "id:3": 1179, + "sizeY:3": 24 + }, + "119:10": { + "sizeX:3": 24, + "x:3": 612, + "y:3": 66, + "id:3": 1180, + "sizeY:3": 24 + }, + "120:10": { + "sizeX:3": 24, + "x:3": 564, + "y:3": 42, + "id:3": 1181, + "sizeY:3": 24 + }, + "121:10": { + "sizeX:3": 24, + "x:3": 780, + "y:3": 66, + "id:3": 1182, + "sizeY:3": 24 + }, + "122:10": { + "sizeX:3": 24, + "x:3": 804, + "y:3": 66, + "id:3": 1183, + "sizeY:3": 24 + }, + "123:10": { + "sizeX:3": 24, + "x:3": 828, + "y:3": 90, + "id:3": 1184, + "sizeY:3": 24 + }, + "124:10": { + "sizeX:3": 24, + "x:3": 852, + "y:3": 42, + "id:3": 1185, + "sizeY:3": 24 + }, + "125:10": { + "sizeX:3": 24, + "x:3": 828, + "y:3": 66, + "id:3": 1186, + "sizeY:3": 24 + }, + "126:10": { + "sizeX:3": 24, + "x:3": 852, + "y:3": 90, + "id:3": 1187, + "sizeY:3": 24 + }, + "127:10": { + "sizeX:3": 24, + "x:3": 876, + "y:3": 42, + "id:3": 1188, + "sizeY:3": 24 + }, + "128:10": { + "sizeX:3": 24, + "x:3": 852, + "y:3": 66, + "id:3": 1189, + "sizeY:3": 24 + }, + "129:10": { + "sizeX:3": 24, + "x:3": 876, + "y:3": 90, + "id:3": 1190, + "sizeY:3": 24 + }, + "130:10": { + "sizeX:3": 24, + "x:3": 900, + "y:3": 42, + "id:3": 1191, + "sizeY:3": 24 + }, + "131:10": { + "sizeX:3": 24, + "x:3": 876, + "y:3": 66, + "id:3": 1192, + "sizeY:3": 24 + }, + "132:10": { + "sizeX:3": 24, + "x:3": 900, + "y:3": 90, + "id:3": 1193, + "sizeY:3": 24 + }, + "133:10": { + "sizeX:3": 24, + "x:3": 924, + "y:3": 42, + "id:3": 1194, + "sizeY:3": 24 + }, + "134:10": { + "sizeX:3": 24, + "x:3": 900, + "y:3": 66, + "id:3": 1195, + "sizeY:3": 24 + }, + "135:10": { + "sizeX:3": 24, + "x:3": 924, + "y:3": 90, + "id:3": 1196, + "sizeY:3": 24 + }, + "136:10": { + "sizeX:3": 24, + "x:3": 924, + "y:3": 66, + "id:3": 1197, + "sizeY:3": 24 + } + }, + "lineID:3": 21, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Psi", + "icon:10": { + "id:8": "avaritia:singularity", + "Count:3": 1, + "Damage:2": 12, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Avaritia, Overloaded,扩展合成, and Creative items." + } + }, + "order:3": 23 + }, + "22:10": { + "quests:9": { + "0:10": { + "sizeX:3": 192, + "x:3": 48, + "y:3": 12, + "id:3": 1045, + "sizeY:3": 192 + } + }, + "lineID:3": 22, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Omega", + "icon:10": { + "id:8": "thermalfoundation:fluid_ender", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "End of normal quests." + } + }, + "order:3": 24 + }, + "23:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 42, + "id:3": 415, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 42, + "id:3": 416, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 42, + "id:3": 417, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 42, + "id:3": 418, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 42, + "id:3": 419, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 42, + "id:3": 420, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 42, + "id:3": 421, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 258, + "y:3": 42, + "id:3": 422, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 42, + "id:3": 423, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 318, + "y:3": 42, + "id:3": 424, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 72, + "id:3": 616, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 72, + "id:3": 617, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 102, + "id:3": 618, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 102, + "id:3": 619, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 72, + "id:3": 620, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 72, + "id:3": 621, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 168, + "y:3": 72, + "id:3": 622, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 198, + "y:3": 72, + "id:3": 623, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 228, + "y:3": 72, + "id:3": 624, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 102, + "id:3": 625, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 168, + "id:3": 647, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 138, + "id:3": 648, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 198, + "id:3": 649, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 228, + "id:3": 650, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 48, + "y:3": 258, + "id:3": 651, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 168, + "id:3": 652, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 78, + "y:3": 228, + "id:3": 653, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 108, + "y:3": 198, + "id:3": 654, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 138, + "id:3": 708, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 282, + "id:3": 709, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 282, + "id:3": 710, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 258, + "id:3": 711, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 48, + "x:3": 240, + "y:3": 186, + "id:3": 712, + "sizeY:3": 48 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 234, + "id:3": 713, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 258, + "id:3": 714, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 138, + "id:3": 715, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 186, + "id:3": 716, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 186, + "id:3": 717, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 354, + "y:3": 210, + "id:3": 718, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 264, + "y:3": 234, + "id:3": 719, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 234, + "id:3": 720, + "sizeY:3": 24 + }, + "41:10": { + "sizeX:3": 36, + "x:3": 294, + "y:3": 192, + "id:3": 721, + "sizeY:3": 36 + }, + "42:10": { + "sizeX:3": 24, + "x:3": 360, + "y:3": 138, + "id:3": 722, + "sizeY:3": 24 + }, + "43:10": { + "sizeX:3": 24, + "x:3": 330, + "y:3": 210, + "id:3": 723, + "sizeY:3": 24 + }, + "44:10": { + "sizeX:3": 24, + "x:3": 252, + "y:3": 354, + "id:3": 724, + "sizeY:3": 24 + }, + "45:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 162, + "id:3": 725, + "sizeY:3": 24 + }, + "46:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 162, + "id:3": 726, + "sizeY:3": 24 + }, + "47:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 186, + "id:3": 727, + "sizeY:3": 24 + }, + "48:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 186, + "id:3": 728, + "sizeY:3": 24 + }, + "49:10": { + "sizeX:3": 24, + "x:3": 192, + "y:3": 210, + "id:3": 729, + "sizeY:3": 24 + }, + "50:10": { + "sizeX:3": 24, + "x:3": 216, + "y:3": 210, + "id:3": 730, + "sizeY:3": 24 + }, + "51:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 108, + "id:3": 731, + "sizeY:3": 24 + }, + "52:10": { + "sizeX:3": 24, + "x:3": 288, + "y:3": 354, + "id:3": 732, + "sizeY:3": 24 + }, + "53:10": { + "sizeX:3": 24, + "x:3": 300, + "y:3": 264, + "id:3": 733, + "sizeY:3": 24 + }, + "54:10": { + "sizeX:3": 24, + "x:3": 348, + "y:3": 42, + "id:3": 1075, + "sizeY:3": 24 + }, + "55:10": { + "sizeX:3": 24, + "x:3": 378, + "y:3": 42, + "id:3": 1076, + "sizeY:3": 24 + }, + "56:10": { + "sizeX:3": 24, + "x:3": 408, + "y:3": 42, + "id:3": 1141, + "sizeY:3": 24 + } + }, + "lineID:3": 23, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Kappa", + "icon:10": { + "id:8": "bigreactors:ingotyellorium", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "ingotYellorium" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Solar Panels, Extreme Reactors, and Nuclearcraft." + } + }, + "order:3": 10 + }, + "24:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 150, + "id:3": 484, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 30, + "id:3": 757, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 0, + "id:3": 898, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 0, + "id:3": 899, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 0, + "id:3": 900, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 0, + "id:3": 901, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 0, + "id:3": 902, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 0, + "id:3": 903, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 30, + "id:3": 946, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 30, + "id:3": 947, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 30, + "id:3": 1041, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 30, + "id:3": 1077, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 60, + "id:3": 1078, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 90, + "id:3": 1079, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 120, + "id:3": 1080, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 60, + "id:3": 1081, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 30, + "id:3": 1107, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 60, + "id:3": 1108, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 60, + "id:3": 1109, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 60, + "id:3": 1110, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 60, + "id:3": 1111, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 90, + "id:3": 1112, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 90, + "id:3": 1113, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 90, + "id:3": 1114, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 90, + "id:3": 1115, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 120, + "id:3": 1116, + "sizeY:3": 24 + }, + "26:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 120, + "id:3": 1117, + "sizeY:3": 24 + }, + "27:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 120, + "id:3": 1118, + "sizeY:3": 24 + }, + "28:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 148, + "id:3": 1120, + "sizeY:3": 24 + }, + "29:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 150, + "id:3": 1121, + "sizeY:3": 24 + }, + "30:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 150, + "id:3": 1122, + "sizeY:3": 24 + }, + "31:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 120, + "id:3": 1123, + "sizeY:3": 24 + }, + "32:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 150, + "id:3": 1124, + "sizeY:3": 24 + }, + "33:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 180, + "id:3": 1125, + "sizeY:3": 24 + }, + "34:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 180, + "id:3": 1126, + "sizeY:3": 24 + }, + "35:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 180, + "id:3": 1127, + "sizeY:3": 24 + }, + "36:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 30, + "id:3": 1142, + "sizeY:3": 24 + }, + "37:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 60, + "id:3": 1143, + "sizeY:3": 24 + }, + "38:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 90, + "id:3": 1144, + "sizeY:3": 24 + }, + "39:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 120, + "id:3": 1145, + "sizeY:3": 24 + }, + "40:10": { + "sizeX:3": 24, + "x:3": 180, + "y:3": 150, + "id:3": 1146, + "sizeY:3": 24 + } + }, + "lineID:3": 24, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Rewards", + "icon:10": { + "id:8": "contenttweaker:rak_coin", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Yes, this is a micro-transaction type of reward system." + } + }, + "order:3": 0 + }, + "25:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 72, + "y:3": 36, + "id:3": 17, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 42, + "y:3": 36, + "id:3": 1064, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 102, + "y:3": 36, + "id:3": 1065, + "sizeY:3": 24 + } + }, + "lineID:3": 25, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "The End", + "icon:10": { + "id:8": "contenttweaker:chaos_block", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Mode Achievements." + } + }, + "order:3": 26 + }, + "26:10": { + "quests:9": { + "0:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 0, + "id:3": 872, + "sizeY:3": 24 + }, + "1:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 30, + "id:3": 873, + "sizeY:3": 24 + }, + "2:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 0, + "id:3": 1042, + "sizeY:3": 24 + }, + "3:10": { + "sizeX:3": 24, + "x:3": 294, + "y:3": 0, + "id:3": 1043, + "sizeY:3": 24 + }, + "4:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 30, + "id:3": 1044, + "sizeY:3": 24 + }, + "5:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 90, + "id:3": 1046, + "sizeY:3": 24 + }, + "6:10": { + "sizeX:3": 24, + "x:3": 30, + "y:3": 90, + "id:3": 1047, + "sizeY:3": 24 + }, + "7:10": { + "sizeX:3": 24, + "x:3": 294, + "y:3": 30, + "id:3": 1063, + "sizeY:3": 24 + }, + "8:10": { + "sizeX:3": 24, + "x:3": 90, + "y:3": 0, + "id:3": 1066, + "sizeY:3": 24 + }, + "9:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 0, + "id:3": 1067, + "sizeY:3": 24 + }, + "10:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 0, + "id:3": 1068, + "sizeY:3": 24 + }, + "11:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 36, + "id:3": 1070, + "sizeY:3": 24 + }, + "12:10": { + "sizeX:3": 24, + "x:3": 138, + "y:3": 36, + "id:3": 1071, + "sizeY:3": 24 + }, + "13:10": { + "sizeX:3": 24, + "x:3": 162, + "y:3": 36, + "id:3": 1072, + "sizeY:3": 24 + }, + "14:10": { + "sizeX:3": 24, + "x:3": 186, + "y:3": 36, + "id:3": 1073, + "sizeY:3": 24 + }, + "15:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 0, + "id:3": 1074, + "sizeY:3": 24 + }, + "16:10": { + "sizeX:3": 24, + "x:3": 114, + "y:3": 90, + "id:3": 1092, + "sizeY:3": 24 + }, + "17:10": { + "sizeX:3": 24, + "x:3": 150, + "y:3": 90, + "id:3": 1093, + "sizeY:3": 24 + }, + "18:10": { + "sizeX:3": 24, + "x:3": 186, + "y:3": 90, + "id:3": 1094, + "sizeY:3": 24 + }, + "19:10": { + "sizeX:3": 24, + "x:3": 84, + "y:3": 132, + "id:3": 1100, + "sizeY:3": 24 + }, + "20:10": { + "sizeX:3": 24, + "x:3": 120, + "y:3": 132, + "id:3": 1101, + "sizeY:3": 24 + }, + "21:10": { + "sizeX:3": 24, + "x:3": 60, + "y:3": 30, + "id:3": 1102, + "sizeY:3": 24 + }, + "22:10": { + "sizeX:3": 24, + "x:3": 156, + "y:3": 132, + "id:3": 1103, + "sizeY:3": 24 + }, + "23:10": { + "sizeX:3": 24, + "x:3": 0, + "y:3": 30, + "id:3": 1104, + "sizeY:3": 24 + }, + "24:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 90, + "id:3": 1199, + "sizeY:3": 24 + }, + "25:10": { + "sizeX:3": 24, + "x:3": 240, + "y:3": 132, + "id:3": 1200, + "sizeY:3": 24 + } + }, + "lineID:3": 26, + "properties:10": { + "betterquesting:10": { + "visibility:8": "NORMAL", + "name:8": "Simple Achievements", + "icon:10": { + "id:8": "apotheosis:null_book", + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "" + }, + "bg_image:8": "", + "bg_size:3": 256, + "desc:8": "Some are not so \"simple\"." + } + }, + "order:3": 25 + } + }, + "questSettings:10": { + "betterquesting:10": { + "livesdef:3": 3, + "pack_name:8": "Project Ozone 3", + "home_anchor_y:5": 0.0, + "livesmax:3": 50, + "home_anchor_x:5": 0.5, + "editmode:1": 0, + "hardcore:1": 0, + "home_image:8": "po3:textures/gui/logo_3.png", + "party_enable:1": 1, + "pack_version:3": 3040, + "home_offset_x:3": -128, + "home_offset_y:3": 0 + } + } +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/arcane_construct.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/arcane_construct.json new file mode 100644 index 000000000..f563a25bc --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/arcane_construct.json @@ -0,0 +1,1287 @@ +{ + "registryname": "arcane_construct", + "localizedname": "奥术制造机", + "color": "8400C1", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -3, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -2, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -2, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "lordcraft:mana_batteryb@0" + ] + }, + { + "x": -1, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "galacticraftplanets:mars@8" + ] + }, + { + "x": 0, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "lordcraft:mana_batteryb@0" + ] + }, + { + "x": 1, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -2, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 3, + "y": -2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 2, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 0, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -1, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -2, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -2, + "y": 2, + "z": 4, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -3, + "y": -2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "lordcraft:mana_batteryb@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -3, + "y": -2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -2, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": -1, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 0, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 4, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 1, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "lordcraft:mana_batteryb@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "lordcraft:crystal_basic_cosmicb@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "galacticraftplanets:mars@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -3, + "y": -2, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -2, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "lordcraft:crystal_basic_natureb@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 1, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "galacticraftplanets:mars@8" + ] + }, + { + "x": -3, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 2, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 3, + "y": -2, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -1, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 0, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 1, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 2, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 3, + "y": -2, + "z": 5, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 3, + "y": 1, + "z": -1, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "lordcraft:crystal_basic_lightningb@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": -3, + "y": -1, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -3, + "y": 1, + "z": -1, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 3, + "y": -1, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 3, + "y": 0, + "z": -1, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "lordcraft:mana_batteryb@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": -3, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "lordcraft:mana_batteryb@0" + ] + }, + { + "x": -3, + "y": -2, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -3, + "y": 0, + "z": -1, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": -2, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 0, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 3, + "y": -2, + "z": 4, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 3, + "y": -1, + "z": -1, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "enderio:block_alloy@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": -3, + "y": 1, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -3, + "y": -1, + "z": -1, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 1, + "z": 5, + "elements": [ + "immersiveengineering:sheetmetal@6" + ] + }, + { + "x": 3, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration1@5" + ] + }, + { + "x": 2, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "astralsorcery:blockblackmarble@3" + ] + }, + { + "x": 1, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": 0, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "appliedenergistics2:quartz_vibrant_glass@0" + ] + }, + { + "x": -1, + "y": -2, + "z": -1, + "elements": [ + "immersiveengineering:metal_decoration2@8" + ] + } + ] +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/auto_hammer.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/auto_hammer.json new file mode 100644 index 000000000..18c54853a --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/auto_hammer.json @@ -0,0 +1,359 @@ +{ + "registryname": "auto_hammer", + "localizedname": "自动锤", + "color": "1C77D8", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 3, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 3, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "magneticraft:multiblock_parts@2" + ] + }, + { + "x": 1, + "y": 3, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 3, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockfluidoutputhatch" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration0@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "minecraft:water@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "minecraft:water@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "minecraft:water@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/auto_sieve.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/auto_sieve.json new file mode 100644 index 000000000..3ca1cb6df --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/auto_sieve.json @@ -0,0 +1,791 @@ +{ + "registryname": "auto_sieve", + "localizedname": "自动筛子", + "color": "1C77D8", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "mob_grinding_utils:saw@1" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "minecraft:iron_block@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/chaos_crucible.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/chaos_crucible.json new file mode 100644 index 000000000..dcd5ba86a --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/chaos_crucible.json @@ -0,0 +1,1439 @@ +{ + "registryname": "chaos_crucible", + "localizedname": "混沌坩埚", + "color": "65F59B", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 5, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 5, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 0, + "y": 2, + "z": 5, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 5, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 5, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 3, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "botania:livingrock@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "botania:livingrock@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "botania:livingrock@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 4, + "elements": [ + "embers:block_caminite_brick@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 3, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 4, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "abyssalcraft:ingotblock@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 4, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 3, + "y": 1, + "z": 4, + "elements": [ + "embers:block_caminite_brick@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 3, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 4, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "abyssalcraft:ingotblock@1" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 4, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 3, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 1, + "z": 3, + "elements": [ + "embers:block_caminite_brick@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "abyssalcraft:ingotblock@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 1, + "z": 3, + "elements": [ + "embers:block_caminite_brick@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 6, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 0, + "y": -1, + "z": 6, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 1, + "y": -1, + "z": 6, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 2, + "y": -1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "abyssalcraft:ingotblock@1" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -1, + "y": 0, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 0, + "y": 0, + "z": 6, + "elements": [ + "modularmachinery:blockfluidoutputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": 0, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + "elements": [ + "embers:block_caminite_brick@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "nuclearcraft:tritium_lamp@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -1, + "y": 1, + "z": 6, + "elements": [ + "botania:livingrock@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + "elements": [ + "embers:block_caminite_brick@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 5, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 6, + "elements": [ + "botania:livingrock@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 5, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 6, + "elements": [ + "botania:livingrock@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 5, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 5, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 5, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 3, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -1, + "y": 2, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 5, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 0, + "z": 5, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 1, + "y": 2, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 5, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 0, + "z": 5, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 2, + "y": 0, + "z": 5, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -3, + "y": -1, + "z": 4, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 5, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 5, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 5, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 5, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "lordcraft:crystal_stoneb@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 5, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + "elements": [ + "astralsorcery:blockmarble@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 4, + "elements": [ + "bloodmagic:blood_rune@5" + ] + }, + { + "x": -3, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "draconicevolution:infused_obsidian@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@15" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "rftoolsdim:dimensional_blank_block@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/mechanical_empowerer.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/mechanical_empowerer.json new file mode 100644 index 000000000..b2407122f --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/mechanical_empowerer.json @@ -0,0 +1,591 @@ +{ + "registryname": "mechanical_empowerer", + "localizedname": "电容装配厂", + "color": "007F08", + "parts": [ + { + "x": -3, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": -3, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": -3, + "y": -2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": -2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -2, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "actuallyadditions:block_display_stand@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 7, + "elements": [ + "actuallyadditions:block_display_stand@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 5, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": -4, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 7, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 4, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 4, + "elements": [ + "actuallyadditions:block_display_stand@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "actuallyadditions:block_empowerer@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": -1, + "z": 6, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 4, + "elements": [ + "actuallyadditions:block_display_stand@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 4, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@4" + ] + } + ] +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/multi_compressor.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/multi_compressor.json new file mode 100644 index 000000000..f08144c7f --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/multi_compressor.json @@ -0,0 +1,359 @@ +{ + "registryname": "multi_compressor", + "localizedname": "大型压缩机", + "color": "750707", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "pneumaticcraft:pressure_chamber_glass" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "pneumaticcraft:pressure_chamber_glass" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "pneumaticcraft:pressure_chamber_glass" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "pneumaticcraft:pressure_chamber_glass" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "pneumaticcraft:pressure_chamber_glass" + ] + } + ] +} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/super_reactor.json b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/super_reactor.json new file mode 100644 index 000000000..0e4fc6f3a --- /dev/null +++ b/project/Project Ozone 3/3.3.61/config/modularmachinery/machinery/super_reactor.json @@ -0,0 +1,4009 @@ +{ + "registryname": "super_reactor", + "localizedname": "超级反应堆", + "color": "ffffff", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": 2, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": 3, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": 4, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": -3, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": -2, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": -1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 3, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": 3, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockenergyoutputhatch@7" + ] + }, + { + "x": 3, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -2, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -2, + "z": 7, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -1, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 0, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 1, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 3, + "y": 0, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 3, + "y": -2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -3, + "y": -3, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -2, + "y": -3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": -1, + "y": -3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": -3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 2, + "y": 1, + "z": 8, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": -1, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 3, + "y": 1, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -1, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 1, + "y": -3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 3, + "y": -1, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": -3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": -1, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 0, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -2, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -2, + "z": 6, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": -1, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -2, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 0, + "z": 7, + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": -1, + "y": -2, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 0, + "y": 0, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 1, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -2, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 2, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 0, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 3, + "y": 2, + "z": 8, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 0, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 1, + "y": -2, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 3, + "y": 0, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": -2, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 4, + "y": 0, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": -2, + "z": 6, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 1, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -3, + "y": -1, + "z": 6, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": -3, + "y": -3, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 1, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": -2, + "y": -3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 6, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": -3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 6, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 0, + "y": -3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 2, + "y": 1, + "z": 7, + + "elements": [ + "mekanismgenerators:reactorglass@1" + ] + }, + { + "x": 1, + "y": -1, + "z": 6, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 3, + "y": 1, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": -1, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": -3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": 1, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 6, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": -1, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 0, + "z": 6, + + "elements": [ + "modularmachinery:blockfluidinputhatch@7" + ] + }, + { + "x": -3, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -4, + "y": -2, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 6, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -3, + "y": -2, + "z": 5, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 0, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": -2, + "z": 5, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 0, + "z": 6, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": -2, + "z": 5, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 6, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 0, + "y": -2, + "z": 5, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 1, + "y": 0, + "z": 6, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 3, + "y": 2, + "z": 7, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": -2, + "z": 5, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 4, + "y": 2, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 0, + "z": 6, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 5, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 4, + "y": 0, + "z": 6, + + "elements": [ + "modularmachinery:blockinputbus@6" + ] + }, + { + "x": 3, + "y": -2, + "z": 5, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 1, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 6, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -1, + "z": 5, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": -3, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 5, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 6, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": 1, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 6, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -2, + "y": -3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 5, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": -3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 5, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 6, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": 0, + "y": -3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 3, + "y": 3, + "z": 7, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 6, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": -1, + "z": 5, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 3, + "y": 1, + "z": 6, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 5, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 1, + "y": -3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": 1, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 5, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": -1, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -4, + "y": 0, + "z": 5, + + "elements": [ + "modularmachinery:blockfluidinputhatch@7" + ] + }, + { + "x": -3, + "y": 2, + "z": 6, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -4, + "y": -2, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 5, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 6, + "elements": [ + "thermalfoundation:storage_alloy@6" + ] + }, + { + "x": -3, + "y": -2, + "z": 4, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 5, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 6, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 0, + "y": 2, + "z": 6, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": -2, + "y": -2, + "z": 4, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 0, + "z": 5, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": -1, + "y": -2, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 5, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": 1, + "y": 2, + "z": 6, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 0, + "y": -2, + "z": 4, + "elements": [ + "mysticalagradditions:special@1" + ] + }, + { + "x": 2, + "y": 2, + "z": 6, + "elements": [ + "thermalfoundation:storage_alloy@6" + ] + }, + { + "x": 1, + "y": 0, + "z": 5, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": 3, + "y": 2, + "z": 6, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 5, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 1, + "y": -2, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 4, + "y": 2, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 5, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 4, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 4, + "y": 0, + "z": 5, + "elements": [ + "modularmachinery:blockinputbus@6" + ] + }, + { + "x": 3, + "y": -2, + "z": 4, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 1, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 3, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 5, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -3, + "y": -1, + "z": 4, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 5, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": -1, + "y": 3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -3, + "y": -3, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 5, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": 3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 1, + "z": 5, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -2, + "y": -3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -1, + "y": -3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "mysticalagradditions:special@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 6, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 1, + "y": 1, + "z": 5, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 0, + "y": -3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 3, + "y": 3, + "z": 6, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 5, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 5, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": -3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": 1, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 4, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": -1, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -4, + "y": 0, + "z": 4, + + "elements": [ + "modularmachinery:blockfluidinputhatch@7" + ] + }, + { + "x": -3, + "y": 2, + "z": 5, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -4, + "y": -2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 4, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": -3, + "y": -2, + "z": 3, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -1, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:storage_alloy@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 5, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -2, + "y": -2, + "z": 3, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": -1, + "y": -2, + "z": 3, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "mysticalagradditions:special@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:storage_alloy@7" + ] + }, + { + "x": 0, + "y": -2, + "z": 3, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 5, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": 3, + "y": 2, + "z": 5, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": -2, + "z": 3, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 4, + "y": 2, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 4, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 3, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 4, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockinputbus@6" + ] + }, + { + "x": 3, + "y": -2, + "z": 3, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 1, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 3, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 4, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -3, + "y": -1, + "z": 3, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -1, + "y": 3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -3, + "y": -3, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": 3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "avaritia:block_resource@1" + ] + }, + { + "x": -2, + "y": -3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": -3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 5, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 1, + "y": 1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 0, + "y": -3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 3, + "y": 3, + "z": 5, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 3, + "y": 1, + "z": 4, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 1, + "y": -3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": 1, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 3, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 4, + "y": -1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -4, + "y": 0, + "z": 3, + + "elements": [ + "modularmachinery:blockfluidinputhatch@7" + ] + }, + { + "x": -3, + "y": 2, + "z": 4, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -4, + "y": -2, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 3, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": -3, + "y": -2, + "z": 2, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": -2, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 0, + "z": 3, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": -1, + "y": -2, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 0, + "y": 0, + "z": 3, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": 1, + "y": 2, + "z": 4, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 0, + "y": -2, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 2, + "y": 2, + "z": 4, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 1, + "y": 0, + "z": 3, + "elements": [ + "actuallyadditions:block_crystal_empowered@3" + ] + }, + { + "x": 3, + "y": 2, + "z": 4, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 1, + "y": -2, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 4, + "y": 2, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 3, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 4, + "y": 0, + "z": 3, + "elements": [ + "modularmachinery:blockinputbus@6" + ] + }, + { + "x": 3, + "y": -2, + "z": 2, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 3, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 3, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 3, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": -1, + "y": 3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 3, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 1, + "z": 3, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": 3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 1, + "z": 3, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -2, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": -1, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 2, + "y": 3, + "z": 4, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 1, + "y": 1, + "z": 3, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 0, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": 3, + "z": 4, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 3, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 3, + "y": 1, + "z": 3, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 4, + "y": 1, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 4, + "y": -1, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -3, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -4, + "y": 0, + "z": 2, + + "elements": [ + "modularmachinery:blockfluidinputhatch@7" + ] + }, + { + "x": -3, + "y": 2, + "z": 3, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -4, + "y": -2, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": -3, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:storage_alloy@7" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -2, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:storage_alloy@7" + ] + }, + { + "x": -1, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 0, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 2, + "z": 3, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "extendedcrafting:trimmed@5" + ] + }, + { + "x": 3, + "y": 2, + "z": 3, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": 2, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockinputbus@6" + ] + }, + { + "x": 3, + "y": -2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -2, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 1, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 3, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + + "elements": [ + "bigreactors:reactorfuelrod@0" + ] + }, + { + "x": -2, + "y": 3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": -1, + "y": 3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": 1, + "y": 3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "minecraft:redstone_block@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": 3, + "z": 3, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "extendedcrafting:lamp@1" + ] + }, + { + "x": 3, + "y": 3, + "z": 3, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "projectred-exploration:stone@11" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + "elements": [ + "avaritia:block_resource@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 4, + "y": 1, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": -1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -4, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -3, + "y": 2, + "z": 2, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:storage_alloy@6" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:storage_alloy@5" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "thermalfoundation:storage_alloy@6" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 3, + "y": 2, + "z": 2, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 4, + "y": 2, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": 0, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -4, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 3, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": 3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 1, + "y": 3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 2, + "y": 3, + "z": 2, + "elements": [ + "extraplanets:jupiter@8" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 3, + "y": 3, + "z": 2, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 4, + "y": 1, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -4, + "y": 2, + "z": 1, + + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -2, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "nuclearcraft:cooler@10" + ] + } + ]} \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/resources/contenttweaker/lang/zh_cn.lang b/project/Project Ozone 3/3.3.61/resources/contenttweaker/lang/zh_cn.lang new file mode 100644 index 000000000..812c84d4a --- /dev/null +++ b/project/Project Ozone 3/3.3.61/resources/contenttweaker/lang/zh_cn.lang @@ -0,0 +1,66 @@ +item.contenttweaker.rak_coin.name=RAK +item.contenttweaker.epeolatry.name=Epeolatry +item.contenttweaker.chaos_ingot.name=混沌锭 +item.contenttweaker.chaos_catalyst.name=混沌催化剂 +item.contenttweaker.infinite_chaos.name=无限混沌视频 +item.contenttweaker.klein_star_6_inert.name=惰性卡莱恩能量之星 +item.contenttweaker.neutral_steel_1.name=一级中性钢 +item.contenttweaker.neutral_steel_2.name=二级中性钢 +item.contenttweaker.neutral_steel_3.name=三级中性钢 +item.contenttweaker.neutral_steel_4.name=四级中性钢 +item.contenttweaker.neutral_steel_5.name=五级中性钢 +item.contenttweaker.neutral_steel_6.name=六级中性钢 +item.contenttweaker.neutral_steel_7.name=七级中性钢 +item.contenttweaker.neutral_steel_8.name=八级中性钢 +item.contenttweaker.neutral_steel_9.name=九级中性钢 +item.contenttweaker.neutral_steel_10.name=十级中性钢 +item.contenttweaker.neutral_steel_11.name=十一级中性钢 + +item.contenttweaker.got_metal.name=Gottobememanian金属锭 +item.contenttweaker.jak_metal.name=Jakeoide金属锭 +item.contenttweaker.kev_metal.name=Kevincavian金属锭 +item.contenttweaker.myt_metal.name=Mythian金属锭 +item.contenttweaker.lv_metal.name=LadyVerticalous金属锭 +item.contenttweaker.sey_metal.name=Seyeghtenite金属锭 +item.contenttweaker.bear_metal.name=Bearhuntian金属锭 +item.contenttweaker.jes_metal.name=Jesterite金属锭 +item.contenttweaker.car_metal.name=CarolineFrostic金属锭 +item.contenttweaker.og_metal.name=Arist0tleite金属锭 +item.contenttweaker.mis_metal.name=Misskwyate金属锭 +item.contenttweaker.caz_metal.name=Cazadorian金属锭 +item.contenttweaker.ann_metal.name=AnnoyedCherryous金属锭 +item.contenttweaker.sin_metal.name=Sinfuldeityic金属锭 +item.contenttweaker.hyp_metal.name=Hypnotizdous金属锭 +item.contenttweaker.edd_metal.name=EddieRuckusite金属锭 + +item.contenttweaker.slo_plate.name=Slothmonsterium板 +item.contenttweaker.tex_plate.name=TexCubite板 +item.contenttweaker.dad_plate.name=Dadcraftium板 +item.contenttweaker.mat_plate.name=Matrixite板 +item.contenttweaker.lew_plate.name=Lewdium板 +item.contenttweaker.but_plate.name=Buttite板 +item.contenttweaker.ske_plate.name=Sketchium板 +item.contenttweaker.ren_plate.name=Reninsanium板 +item.contenttweaker.dea_plate.name=Deadpinium板 +item.contenttweaker.hep_plate.name=Hephite板 +item.contenttweaker.mem_plate.name=MeMyselfandCJate板 +item.contenttweaker.dat_plate.name=DatFailium板 + +item.contenttweaker.wilx_gear.name=Wilxate齿轮 +item.contenttweaker.brae_gear.name=Braelynnium齿轮 +item.contenttweaker.chach_gear.name=Chachavate齿轮 +item.contenttweaker.kiki_gear.name=Kikiisyourfriendium齿轮 +item.contenttweaker.kire_gear.name=Kireina_Asrai_ite齿轮 +item.contenttweaker.maci_gear.name=Macinacite齿轮 +item.contenttweaker.fatp_gear.name=Fatpallyum齿轮 +item.contenttweaker.yzul_gear.name=Yzulfate齿轮 +item.contenttweaker.jack_gear.name=JackAtlasHarbingerite齿轮 +item.contenttweaker.taril_gear.name=TarilltheMadium齿轮 +item.contenttweaker.quirk_gear.name=QuirkyGeekium齿轮 +item.contenttweaker.mldeg_gear.name=MLDEGate齿轮 + +tile.contenttweaker.chaos_block.name=混沌核心 +tile.contenttweaker.aquamarine_block.name=海蓝宝石矿石 +tile.contenttweaker.ogasexy_block.name=OgaSexy + +fluid.c_fluid=液态混沌 \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/resources/extendedcrafting/lang/zh_CN.lang b/project/Project Ozone 3/3.3.61/resources/extendedcrafting/lang/zh_CN.lang new file mode 100644 index 000000000..b86be6f7f --- /dev/null +++ b/project/Project Ozone 3/3.3.61/resources/extendedcrafting/lang/zh_CN.lang @@ -0,0 +1,7 @@ +tile.ec.storage_ender.name=虚空金属块 +tile.ec.storage_enhanced_ender.name=增强虚空金属块 + +item.ec.material_ender_ingot.name=虚空金属锭 +item.ec.material_ender_nugget.name=虚空金属粒 +item.ec.material_enhanced_ender_ingot.name=增强虚空金属锭 +item.ec.material_enhanced_ender_nugget.name=增强虚空金属粒 \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/resources/modpack/texts/splashes.txt b/project/Project Ozone 3/3.3.61/resources/modpack/texts/splashes.txt new file mode 100644 index 000000000..010ec04e6 --- /dev/null +++ b/project/Project Ozone 3/3.3.61/resources/modpack/texts/splashes.txt @@ -0,0 +1,31 @@ +Cazador喜欢钓鱼 +我是Arist0tle +Seyeght.Sight.Site +League of Extraordinary Gamers (LEG) +套娃是真的 +Cazador很喜欢Mekanism +Kappa模式真的很难 +Project Ozone是Cazador的第一个包 +我听说你喜欢幸运方块... +所以我把幸运方块套娃了 +Garden_Variety +Error 404: Survival Not Found +Team Ozone +Team Ozone的四个成员 +预生成EMC中 +炮台杀人啦! +是时候做研究了! +Project E-zone +Arist0tlite金属锭 +Bearhuntian金属锭 +Seyeghtenite金属锭 +Cazadorian金属锭 +混沌锭 +#BlameBearhunter +#BlameSeyeght +#BlameOG_Arist0tle +#ThankCazador +对土豆很不友好 +PO3什么时候做好? +Apparently Cazador is the dark side +Epic Text \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/resources/quantumflux/lang/zh_CN.lang b/project/Project Ozone 3/3.3.61/resources/quantumflux/lang/zh_CN.lang new file mode 100644 index 000000000..9c766de98 --- /dev/null +++ b/project/Project Ozone 3/3.3.61/resources/quantumflux/lang/zh_CN.lang @@ -0,0 +1 @@ +item.graphiteDust.name=工业级石墨粉尘 \ No newline at end of file diff --git a/project/Project Ozone 3/3.3.61/scripts/all_modes/tooltips.zs b/project/Project Ozone 3/3.3.61/scripts/all_modes/tooltips.zs new file mode 100644 index 000000000..8e5156745 --- /dev/null +++ b/project/Project Ozone 3/3.3.61/scripts/all_modes/tooltips.zs @@ -0,0 +1,3 @@ +.addTooltip("放下来的声音跟铁砧一样"); +.addTooltip("被StompTheBean接替(因为PO3太吃内存和CPU了)"); +.addTooltip("双倍矿物和一些其他的物品/方块"); \ No newline at end of file diff --git a/project/Ragnamod 6/6.0.0/kubejs/client_scripts/jei.js b/project/Ragnamod 6/6.0.0/kubejs/client_scripts/jei.js new file mode 100644 index 000000000..875451509 --- /dev/null +++ b/project/Ragnamod 6/6.0.0/kubejs/client_scripts/jei.js @@ -0,0 +1,4 @@ +events.listen('jei.information', function (e) { + e.add('cursedearth:cursed_earth', ['为了得到诅咒之土', '你需要用凋零玫瑰对着泥土潜行右键']) + e.add('enigmaticlegacy:etherium_ore', ['你可以在冰与火这个模组的箱子中得到很多以太矿石']) + }) \ No newline at end of file diff --git a/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/blocks.js b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/blocks.js new file mode 100644 index 000000000..343617ca9 --- /dev/null +++ b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/blocks.js @@ -0,0 +1,10 @@ +events.listen('block.registry', function (e) { + e.create('platinum_block').material('iron').hardness(0.5).displayName('铂块') + e.create('quarkonium_block').material('iron').hardness(0.5).displayName('夸克块') + e.create('obsidian_ingot_block').material('iron').hardness(0.5).displayName('黑曜石块') + e.create('alfsteel_crux').material('rock').hardness(0.5).displayName('精灵钢核心') + e.create('aquamarine_block').material('iron').hardness(0.5).displayName('海蓝宝石块') + e.create('machinarium_block').material('iron').hardness(0.5).displayName('机械块') + e.create('ender_pearl_block').material('coral').hardness(0.5).displayName('末影珍珠块') + e.create('ultimate_comb_block').material('coral').hardness(0.5).displayName('终极蜜脾块') +}) \ No newline at end of file diff --git a/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/fluid.js b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/fluid.js new file mode 100644 index 000000000..8a7db3bc6 --- /dev/null +++ b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/fluid.js @@ -0,0 +1,7 @@ +events.listen('fluid.registry', e => { + e.create('molten_enderium').textureThick(0x0c5d7b).displayName('熔融末影').bucketColor(0x0c5d7b) + e.create('molten_signalum').textureThick(0xec3606).displayName('熔融信素').bucketColor(0xec3606) + e.create('molten_lumium').textureThick(0xdfba5c).displayName('熔融流明').bucketColor(0xdfba5c) + e.create('molten_redstone').textureThin(0xfc0000).displayName('熔融红石').bucketColor(0xfc0000) + e.create('molten_glowstone').textureThin(0xfcba5d).displayName('熔融荧石').bucketColor(0xfcba5d) + }) \ No newline at end of file diff --git a/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/foods.js b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/foods.js new file mode 100644 index 000000000..f358022fb --- /dev/null +++ b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/foods.js @@ -0,0 +1,29 @@ +events.listen('item.registry', function (e) { +e.create('miraculous_soup') +.displayName('奇迹之汤') +.food(foodConsumer => { +foodConsumer.hunger(20) + .saturation(20.0) + .alwaysEdible() + .eaten(eatenEvent => { + eatenEvent.player.tell("我好倒霉"); + eatenEvent.getEntity().getPotionEffects().add("minecraft:saturation",2000,4,false,false) + eatenEvent.getEntity().getPotionEffects().add("minecraft:regeneration",2000,4,false,false) + eatenEvent.getEntity().getPotionEffects().add("minecraft:unluck",6000,0,false,false) + }); +}); +e.create('ultimate_skewer') +.displayName('终极肉串') +.food(foodConsumer => { + foodConsumer.hunger(20) + .saturation(5.0) + .eaten(eatenEvent => { + eatenEvent.player.tell("我渴望鲜血!"); + eatenEvent.getEntity().getPotionEffects().add("minecraft:strength",6000,4,false,false) + eatenEvent.getEntity().getPotionEffects().add("minecraft:health_boost",6000,3,false,false) + eatenEvent.getEntity().getPotionEffects().add("minecraft:saturation",2000,4,false,false) + eatenEvent.getEntity().getPotionEffects().add("minecraft:regeneration",2000,4,false,false) + eatenEvent.getEntity().getPotionEffects().add("botania:bloodthirst",12000,0,false,false) + }); +}); +}) \ No newline at end of file diff --git a/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/items.js b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/items.js new file mode 100644 index 000000000..248a16118 --- /dev/null +++ b/project/Ragnamod 6/6.0.0/kubejs/startup_scripts/items.js @@ -0,0 +1,28 @@ +events.listen('item.registry', function (e) { + e.create('ultimate_netherite').displayName('终极下界合金锭') + e.create('ultimate_comb').displayName('终极蜜脾') + e.create('platinum_ingot').displayName('铂锭') + e.create('platinum_nugget').displayName('铂粒') + e.create('inferium_seed').displayName('§e下级种子') + e.create('prudentium_seed').displayName('§2初级种子') + e.create('tertium_seed').displayName('§6中级种子') + e.create('imperium_seed').displayName('§9高级种子') + e.create('supremium_seed').displayName('§c终极种子') + e.create('insanium_seed').displayName('§5究极种子') + e.create('ultimate_seed').displayName('超究极种子') + e.create('ultimate_essence').displayName('超究极精华') + e.create('ultimate_netherite_lattice').displayName('终极下届合金晶格') + e.create('sphere').displayName('万物之球') + e.create('brass_plate').displayName('黄铜板') + e.create('lapis_plate').displayName('青金石板') + e.create('zinc_plate').displayName('锌板') + e.create('etherium_photovoltaic_cell').displayName('以太光电电池') + e.create('gobber_photovoltaic_cell').displayName('戈伯光电电池') + e.create('ultimate_photovoltaic_cell').displayName('终极光电电池') + e.create('pile_of_quarkonium').displayName('夸克微粒') + e.create('quarkonium_nugget').displayName('夸克粒') + e.create('quarkonium_ingot').displayName('夸克锭') + e.create('machinarium_ingot').displayName('机械锭') + e.create('creative_plate').displayName('创造之板').glow(true) + e.create('antimatter_silicon').displayName('微型反物质橡胶').glow(true) +}) \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/loadingscreens/LoadingScreens.txt b/project/Sevtech Age of the Sky/3.2.1/config/loadingscreens/LoadingScreens.txt new file mode 100644 index 000000000..60a0d9f70 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/loadingscreens/LoadingScreens.txt @@ -0,0 +1,34 @@ + +background = addStretchedTexture("top_left", "test:textures/gui/title/background/sevtech_gradients.png") +background.setRelRender(1, 1) + +tips = addRandomText("top_left") +tips.setAbsXOffset(5) +tips.setAbsYOffset(5) +tips.addTip("只有在河流和海洋生物群系,水才是无限的。") +tips.addTip("行走的时候,玩家坐标就会改变。") +tips.addTip("有安装waila模组,但是你需要在进度中解锁才能使用!") +tips.addTip("Sevtech 有安装小地图!你不需要自己加一个!") +tips.addTip("连锁挖矿也装在整合中,你需要在游戏中发现并解锁它。") +tips.addTip("原版进度界面能够指导你游玩整合。你可以在原版菜单主界面,或者按下“l”按键(默认)。") +tips.addTip("点击物品栏的胡萝卜按钮能够显示你的营养水平。营养水平很高时候能够带来正面效果。反之就会带来负面效果。") +tips.addTip("解锁新的阶段才会显示新的物品!") +tips.addTip("解锁了新的阶段,矿物才会显示。") +tips.addTip("不知道如何制作出某个物品?看看 JEI ,那里也许有你要的答案。") +tips.addTip("特定方块上玩家移动速度会比较快,比如草径。") +tips.addTip("矿物按照大型矿脉方式生成,在一个区块的地面能够找到一些样本,从而推断地下的矿脉种类。") +tips.addTip("按下 F7 查看地表亮度等级,按下 F9 查看区块边界。") +tips.addTip("想要进入下一阶段?跟着进度走。") +tips.addTip("当你解锁了新的阶段,才能够进入其他维度。") +tips.addTip("一些方块会伪装成其他方块,只有在解锁后才会显示。所以适时会到你先前探索过的地方,看看你能够发现些什么新东西。") +tips.addTip("工业阶段才能够解锁双倍矿物。") +tips.addTip("远离 Glen !!!") +tips.addTip("游戏初期不会出现全部敌对生物。其中一些只会在后期生成。") +tips.addTip("要找到区块中矿脉的位置?使用 prospectors 模组中的物品吧。") +tips.addTip("无法使用 f3 查看坐标。解锁并使用 info accessories 可查看坐标,使用标记可以找到方向。") +tips.addTip("死亡后死亡指南针会出现在你的物品栏中。它会指引你找到你的墓碑。") +tips.addTip("拿着钥匙对着墓碑shift右击就可以获得你的物品了。") +tips.addTip("筏是早期的水上交通工具。它们更易坏且行驶更缓慢。") +tips.addTip("莫尼奶酪酱(1 gal);2 qt 全脂牛奶;2 qts 重奶油;面糊(250克黄油/ 250克面粉);香囊(海湾,胡椒,百里香);第戎(适量);切碎的干酪(大量/味道);将牛奶/奶油/小袋煮沸(去除小袋)然后减少热量,慢慢加入面糊(应该是金发)并搅拌直至吸收,加入第戎和切碎的奶酪味道") +tips.addTip("钥匙放在副手会自动将新放置的储物抽屉上锁。") +tips.addTip("尽量不要让马力工具和马横跨区块边界。") \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/auto-cauldron.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/auto-cauldron.json new file mode 100644 index 000000000..de3be207a --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/auto-cauldron.json @@ -0,0 +1,632 @@ +{ + "registryname": "auto_cauldron", + "localizedname": "\u81ea\u52a8\u5769\u57da", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": -1, + "y": -1, + "z": 3, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": 0, + "y": -1, + "z": 3, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": 1, + "y": -1, + "z": 3, + "elements": [ + "minecraft:fire" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockoutputbus@1" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 0, + "y": 2, + "z": 3, + "elements": [ + "modularmachinery:blockfluidinputhatch@0" + ] + }, + { + "x": -2, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "minecraft:cauldron" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": -2, + "y": 0, + "z": 4, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": -1, + "y": -2, + "z": 1, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": 0, + "y": -2, + "z": 1, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": -2, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": -1, + "y": 0, + "z": 4, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockinputbus@1" + ] + }, + { + "x": -1, + "y": -2, + "z": 3, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": 1, + "y": -2, + "z": 1, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": 0, + "y": 0, + "z": 4, + "elements": [ + "modularmachinery:blockenergyinputhatch@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 4, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 0, + "y": -2, + "z": 3, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": 2, + "y": -2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 1, + "y": -2, + "z": 3, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": 2, + "y": 0, + "z": 4, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 2, + "y": -2, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 3, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 0, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": -2, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": -2, + "y": 0, + "z": 3, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": -1, + "y": -2, + "z": 2, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 0, + "y": -2, + "z": 2, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": -2, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": -2, + "z": 2, + "elements": [ + "minecraft:netherrack", + "primal_tech:charcoal_block" + ] + }, + { + "x": -1, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 2, + "y": 0, + "z": 3, + "elements": [ + "minecraft:iron_bars" + ] + }, + { + "x": 0, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 2, + "y": -2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 1, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@2" + ] + }, + { + "x": 2, + "y": -2, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": -1, + "z": 4, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/chemical-mixer.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/chemical-mixer.json new file mode 100644 index 000000000..b3dba01b7 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/chemical-mixer.json @@ -0,0 +1,199 @@ +{ + "registryname": "chemical_mixer", + "localizedname": "\u5316\u5b66\u6df7\u5408\u5668", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockfluidoutputhatch" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ] +} diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/ethylitic_enricher.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/ethylitic_enricher.json new file mode 100644 index 000000000..83ee71868 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/ethylitic_enricher.json @@ -0,0 +1,143 @@ +{ + "registryname": "ethylitic_enricher", + "localizedname": "\u4e59\u70ef\u5bcc\u96c6\u5668", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "tconstruct:seared_tank@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "tconstruct:seared_tank@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/hydraulic_press.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/hydraulic_press.json new file mode 100644 index 000000000..f7a844848 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/hydraulic_press.json @@ -0,0 +1,214 @@ +{ + "registryname": "hydraulic_press", + "localizedname": "\u6db2\u538b\u673a", + "color": "7C7C7C", + "parts": [ + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "galacticraftcore:machine2" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": -1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -1, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": 2, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": 2, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 2, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit.json new file mode 100644 index 000000000..ddbe03036 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit.json @@ -0,0 +1,207 @@ +{ + "registryname": "industrial_drying_unit", + "localizedname": "\u5de5\u4e1a\u5e72\u71e5\u5668", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit_mk2.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit_mk2.json new file mode 100644 index 000000000..f6ad6e809 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit_mk2.json @@ -0,0 +1,207 @@ +{ + "registryname": "industrial_drying_unit_mk2", + "localizedname": "\u5de5\u4e1a\u5e72\u71e5\u5668 Mk2", + "color": "5A5050", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit_mk3.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit_mk3.json new file mode 100644 index 000000000..4deb164ef --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_drying_unit_mk3.json @@ -0,0 +1,207 @@ +{ + "registryname": "industrial_drying_unit_mk3", + "localizedname": "\u5de5\u4e1a\u5e72\u71e5\u5668 Mk3", + "color": "916FB3", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "chisel:technical@14" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_mill.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_mill.json new file mode 100644 index 000000000..3e1787d85 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/industrial_mill.json @@ -0,0 +1,94 @@ +{ + "registryname": "industrial_mill", + "localizedname": "\u5de5\u4e1a\u78e8\u7c89\u673a", + "color": "3c3c3c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "betterwithmods:single_machine@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@5" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@3" + ] + } + ]} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/liquid-processor.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/liquid-processor.json new file mode 100644 index 000000000..e36ea08c7 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/liquid-processor.json @@ -0,0 +1,191 @@ +{ + "registryname": "liquid_processor", + "localizedname": "\u6d41\u4f53\u5904\u7406\u5668", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockfluidoutputhatch" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ] +} diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/loom.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/loom.json new file mode 100644 index 000000000..79ae1b627 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/loom.json @@ -0,0 +1,119 @@ +{ + "registryname": "industrial_loom", + "localizedname": "\u5de5\u4e1a\u7ec7\u5e03\u673a", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer.json new file mode 100644 index 000000000..cfb2a3029 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer.json @@ -0,0 +1,215 @@ +{ + "registryname": "mixer", + "localizedname": "\u6df7\u5408\u5668", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "betterwithmods:cooking_pot@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer_mk2.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer_mk2.json new file mode 100644 index 000000000..59e81d351 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer_mk2.json @@ -0,0 +1,215 @@ +{ + "registryname": "mixer_mk2", + "localizedname": "\u6df7\u5408\u5668 Mk2", + "color": "5A5050", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "betterwithmods:cooking_pot@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "pneumaticcraft:compressed_iron_block@0" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer_mk3.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer_mk3.json new file mode 100644 index 000000000..53575d6fb --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/mixer_mk3.json @@ -0,0 +1,215 @@ +{ + "registryname": "mixer_mk3", + "localizedname": "\u6df7\u5408\u5668 Mk3", + "color": "916FB3", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "betterwithmods:cooking_pot@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "tconstruct:metal@2" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000.json new file mode 100644 index 000000000..fc81d1e64 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000.json @@ -0,0 +1,287 @@ +{ + "registryname":"orematic5000", + "localizedname":"\u77ff\u77f3\u5904\u7406\u4e2d\u5fc3 5000", + "color":"AAB4BA", + "parts":[ + { + "x":1, + "y":2, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockoutputbus" + ] + }, + { + "x":0, + "y":2, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":2, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockinputbus" + ] + }, + { + "x":0, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x":1, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":1, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":3, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":1, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":1, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":3, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":3, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":1, + "z":1, + "elements":[ + "mekanism:machineblock@3" + ] + }, + { + "x":1, + "y":3, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":1, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-1, + "y":1, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":1, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":1, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":1, + "z":2, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-1, + "y":2, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":2, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":2, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":2, + "z":1, + "elements":[ + "enderutilities:machine_0@0" + ] + }, + { + "x":1, + "y":2, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-1, + "y":2, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + } + ] + } \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000_mk2.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000_mk2.json new file mode 100644 index 000000000..962f4d91b --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000_mk2.json @@ -0,0 +1,751 @@ +{ + "registryname":"orematic5000_mk2", + "localizedname":"\u77ff\u77f3\u5904\u7406\u4e2d\u5fc3 5000 Mk2", + "color":"AAB4BA", + "parts":[ + { + "x":-1, + "y":2, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":1, + "y":2, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockoutputbus" + ] + }, + { + "x":-1, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":2, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x":2, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockinputbus" + ] + }, + { + "x":1, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":3, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":1, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":3, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":1, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":3, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":1, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":1, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":3, + "z":3, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":3, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":1, + "z":2, + "elements":[ + "abyssalcraft:materializer" + ] + }, + { + "x":2, + "y":3, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":1, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":3, + "z":3, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":1, + "z":2, + "elements":[ + "enderutilities:machine_0@0" + ] + }, + { + "x":-2, + "y":1, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":1, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":1, + "y":3, + "z":3, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":1, + "z":2, + "elements":[ + "abyssalcraft:crystallizer" + ] + }, + { + "x":-1, + "y":1, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":2, + "y":3, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":1, + "z":4, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":2, + "y":1, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":1, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":2, + "y":1, + "z":4, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-2, + "y":2, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":2, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":2, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":2, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":2, + "z":2, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":2, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-1, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":2, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":2, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":2, + "z":4, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":2, + "y":2, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":2, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":4, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":1, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":3, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":1, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":3, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":1, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-1, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":3, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":3, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":1, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":1, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":2, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":1, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":2, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-1, + "y":2, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":0, + "y":2, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":2, + "z":3, + "elements":[ + "chisel:technical@14" + ] + } + ] + } \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000_mk3.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000_mk3.json new file mode 100644 index 000000000..bbb4f58a0 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/orematic5000_mk3.json @@ -0,0 +1,965 @@ +{ + "registryname":"orematic5000_mk3", + "localizedname":"\u77ff\u77f3\u5904\u7406\u4e2d\u5fc3 5000 Mk3", + "color":"AAB4BA", + "parts":[ + { + "x":-1, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":4, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-2, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x":1, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":3, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":1, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":0, + "y":3, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-1, + "y":1, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":3, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":0, + "y":1, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":2, + "y":3, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":1, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":1, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":1, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-1, + "y":1, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":1, + "z":4, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":1, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":2, + "y":1, + "z":4, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-2, + "y":4, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":2, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":4, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":4, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":2, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":4, + "z":1, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":2, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":2, + "y":4, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":2, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-2, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":2, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":2, + "z":4, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":2, + "y":2, + "z":4, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":1, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":3, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":3, + "z":0, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":3, + "z":0, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":3, + "z":0, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":-2, + "y":1, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-1, + "y":3, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":3, + "z":4, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":1, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":1, + "y":3, + "z":4, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":0, + "y":1, + "z":3, + "nbt":{ + "id":"overloaded:infinite_barrel" + }, + "elements":[ + "overloaded:infinite_barrel@0" + ] + }, + { + "x":2, + "y":3, + "z":4, + "elements":[ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x":1, + "y":1, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":2, + "y":1, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":4, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":4, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":4, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":4, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":4, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":4, + "z":0, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":2, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-1, + "y":4, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":4, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockoutputbus" + ] + }, + { + "x":-1, + "y":2, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":1, + "y":4, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-1, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":4, + "z":4, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":2, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":2, + "y":2, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":2, + "elements":[ + "modularmachinery:blockinputbus" + ] + }, + { + "x":-2, + "y":3, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":1, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":3, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":0, + "y":3, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-1, + "y":1, + "z":2, + "elements":[ + "abyssalcraft:crystallizer" + ] + }, + { + "x":1, + "y":3, + "z":3, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":0, + "y":1, + "z":2, + "elements":[ + "enderutilities:machine_0@0" + ] + }, + { + "x":2, + "y":3, + "z":3, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":1, + "y":1, + "z":2, + "elements":[ + "abyssalcraft:materializer" + ] + }, + { + "x":2, + "y":1, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":4, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":2, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":4, + "z":3, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":4, + "z":3, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":1, + "y":4, + "z":3, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":2, + "z":2, + "elements":[ + "mysticalagriculture:ultimate_furnace" + ] + }, + { + "x":-1, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":0, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":4, + "z":3, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":2, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":2, + "y":0, + "z":1, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":3, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-2, + "y":1, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-1, + "y":3, + "z":2, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":-1, + "y":1, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":1, + "y":3, + "z":2, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":0, + "y":1, + "z":1, + "nbt":{ + "id":"overloaded:infinite_tank" + }, + "elements":[ + "overloaded:infinite_tank@0" + ] + }, + { + "x":2, + "y":3, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":1, + "y":1, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":2, + "y":1, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-2, + "y":4, + "z":2, + "elements":[ + "modularmachinery:blockcasing@0" + ] + }, + { + "x":-2, + "y":2, + "z":1, + "elements":[ + "chisel:technical@14" + ] + }, + { + "x":-1, + "y":4, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":0, + "y":4, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + }, + { + "x":-1, + "y":2, + "z":1, + "elements":[ + "xnet:netcable@1" + ] + }, + { + "x":1, + "y":4, + "z":2, + "elements":[ + "appliedenergistics2:quartz_glass@0" + ] + } + ] + } \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/paperclip_factory.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/paperclip_factory.json new file mode 100644 index 000000000..cff91a451 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/paperclip_factory.json @@ -0,0 +1,507 @@ +{ + "registryname": "paperclip_factory", + "localizedname": "\u56de\u5f62\u9488\u5de5\u5382", + "color": "FF0013", + "parts": [ + { + "x": -2, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -2, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 2, + "y": 0, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -3, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 3, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -1, + "z": 0, + "elements": [ + "actuallyadditions:block_crystal_empowered@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": -2, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -3, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": -3, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -2, + "y": -1, + "z": 0, + "elements": [ + "actuallyadditions:block_crystal_empowered@0" + ] + }, + { + "x": -2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 2, + "y": 1, + "z": 0, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 3, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": 1, + "z": 2, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 3, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 2, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -3, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": -2, + "y": 0, + "z": 1, + "nbt": {"conveyorBeltSubtypeNBT":{"dyeColour":"-1","direction":"0"},"conveyorBeltSubtype":"immersiveengineering:conveyor","id":"immersiveengineering:conveyorbelt"}, + "elements": [ + "immersiveengineering:conveyor@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "nbt": {"conveyorBeltSubtypeNBT":{"dyeColour":"-1","direction":"0"},"conveyorBeltSubtype":"immersiveengineering:conveyor","id":"immersiveengineering:conveyorbelt"}, + "elements": [ + "immersiveengineering:conveyor@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "nbt": {"conveyorBeltSubtypeNBT":{"dyeColour":"-1","direction":"0"},"conveyorBeltSubtype":"immersiveengineering:conveyor","id":"immersiveengineering:conveyorbelt"}, + "elements": [ + "immersiveengineering:conveyor@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "nbt": {"conveyorBeltSubtypeNBT":{"dyeColour":"-1","direction":"0"},"conveyorBeltSubtype":"immersiveengineering:conveyor","id":"immersiveengineering:conveyorbelt"}, + "elements": [ + "immersiveengineering:conveyor@0" + ] + }, + { + "x": 2, + "y": 0, + "z": 1, + "nbt": {"conveyorBeltSubtypeNBT":{"dyeColour":"-1","direction":"0"},"conveyorBeltSubtype":"immersiveengineering:conveyor","id":"immersiveengineering:conveyorbelt"}, + "elements": [ + "immersiveengineering:conveyor@0" + ] + }, + { + "x": 3, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": -3, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -2, + "y": 1, + "z": 1, + "elements": [ + "minecraft:piston@0" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "minecraft:piston@0" + ] + }, + { + "x": -3, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -2, + "y": -1, + "z": 2, + "elements": [ + "actuallyadditions:block_crystal_empowered@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "immersiveengineering:metal_decoration1@1" + ] + }, + { + "x": 2, + "y": 1, + "z": 1, + "elements": [ + "minecraft:piston@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 3, + "y": 1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": 2, + "y": -1, + "z": 2, + "elements": [ + "actuallyadditions:block_crystal_empowered@0" + ] + }, + { + "x": 3, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": -3, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ]} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/plastic-molder.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/plastic-molder.json new file mode 100644 index 000000000..521a6c27c --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/plastic-molder.json @@ -0,0 +1,143 @@ +{ + "registryname": "plastic_molder", + "localizedname": "\u5851\u6599\u5851\u578b\u673a", + "color": "4c4c4c", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + } + ] +} diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/scamulator.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/scamulator.json new file mode 100644 index 000000000..be4499144 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/scamulator.json @@ -0,0 +1,143 @@ +{ + "registryname": "scamulator", + "localizedname": "\u706b\u7bad\u56fe\u7eb8\u5236\u9020\u5668", + "color": "31323A", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "appliedenergistics2:sky_stone_block@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "extendedcrafting:lamp@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "appliedenergistics2:sky_stone_block@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:sky_stone_block@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockinputbus" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "appliedenergistics2:sky_stone_block@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@4" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/volcanic_crystalizer.json b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/volcanic_crystalizer.json new file mode 100644 index 000000000..9701813da --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/modularmachinery/machinery/volcanic_crystalizer.json @@ -0,0 +1,215 @@ +{ + "registryname": "volcanic_crystalizer", + "localizedname": "\u706b\u5c71\u7ed3\u6676\u5668", + "color": "DDDDDD", + "parts": [ + { + "x": -1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": -1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockoutputbus" + ] + }, + { + "x": 1, + "y": 0, + "z": 0, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": -1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 1, + "elements": [ + "tconstruct:seared_tank@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 0, + "z": 2, + "elements": [ + "modularmachinery:blockfluidinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@3" + ] + }, + { + "x": -1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 0, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": 1, + "z": 1, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": 1, + "y": 1, + "z": 0, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": 1, + "z": 1, + "elements": [ + "actuallyadditions:block_breaker" + ] + }, + { + "x": 1, + "y": 1, + "z": 1, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": 0, + "y": 1, + "z": 2, + "elements": [ + "chisel:technical@4" + ] + }, + { + "x": -1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": 1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": -1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + }, + { + "x": 0, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 1, + "y": -1, + "z": 1, + "elements": [ + "modularmachinery:blockcasing@0" + ] + }, + { + "x": 0, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockenergyinputhatch" + ] + }, + { + "x": 1, + "y": -1, + "z": 2, + "elements": [ + "modularmachinery:blockcasing@1" + ] + } + ] +} \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/mputils/addons/mpbasic/onscreen_notifications.json b/project/Sevtech Age of the Sky/3.2.1/config/mputils/addons/mpbasic/onscreen_notifications.json new file mode 100644 index 000000000..7c320beb3 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/mputils/addons/mpbasic/onscreen_notifications.json @@ -0,0 +1,65 @@ +{ + "onScreenNotifications": [ + { + "id": "darkosto", + "soundlocation": "minecraft:entity.player.levelup", + "lines": [ + "§9§nHappy Birthday!!!", + "§2Happy BirthDay to you!", + "§2Happy BirthDay to you!", + "§5Happy BirthDay Darkosto!", + "§2Happy BirthDay to you!" + ] + }, + { + "id": "example", + "soundlocation": "minecraft:entity.creeper.primed", + "lines": [ + "§c§nBoom!!!", + "§eDid I scare you?" + ] + }, + { + "id": "stage_one", + "lines": [ + "§c§nWelcome to", + "§eAge 1" + ] + }, + { + "id": "stage_two", + "lines": [ + "§c§nWelcome to", + "§eAge 2" + ] + }, + { + "id": "stage_three", + "lines": [ + "§c§nWelcome to", + "§eAge 3" + ] + }, + { + "id": "stage_four", + "lines": [ + "§c§nWelcome to", + "§eAge 4" + ] + }, + { + "id": "stage_five", + "lines": [ + "§c§nWelcome to", + "§eAge 5" + ] + }, + { + "id": "stage_creative", + "lines": [ + "§c§nWelcome to the", + "§eCreative Age" + ] + } + ] +} diff --git a/project/Sevtech Age of the Sky/3.2.1/config/mputils/changelog.txt b/project/Sevtech Age of the Sky/3.2.1/config/mputils/changelog.txt new file mode 100644 index 000000000..98d5d7840 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/mputils/changelog.txt @@ -0,0 +1,2155 @@ +打开进度界面即可查看游戏流程(默认按钮为“L”) + +WAILA 和小地图在这个整合的一开始阶段都是不可用的,需要玩家游戏中解锁。还有很多方块在玩家通过进度解锁之前都是隐藏的! + +**请注意,在游戏中途修改了材质包,需要重启游戏。否则物品隐藏和合成显示会出一点问题,对此造成的不便我们感到十分抱歉!** + +对于多人游戏组队,请使用“Together Forever”模组,在游戏聊天框中输入“/tofe”指令来进行检查核实。 +--------------------------------------------------------------------- + +3.2.1 Skyblock + +Bug Fixes: +* Removed Sevadus skull drop to prevent potential lag + +--------------------------------------------------------------------- + +3.2.0 Skyblock + +Enhancements: +* SevTech, but now in Skyblock! +* Increased Volarkite durability +* The Hunting Dimension, Twilight Forest, Nether, and Beneath have void generation +* Added a recipe to turn rocks into gravel +* Added additional methods to obtain clay +* Added AbyssalCraft ritual to summon a Raven +* Add tooltips for Rustic bees +* Added Primal's Stacked Logs and Charcoal Pit mechanics +* Increased Rustic Apiaries crop aging frequency +* Add Rustic bee advancement +* Move Rustic bees to age 1 from age 2 +* Add Twilight Forest trees to Bonsai pots +* Add liveroot and liveroot block conversion recipes +* Added location description tooltips to all ores and ore samples +* Add liveroot to Twilight Forest loot chests +* Staged loot in loot tables (chests, etc) +* Changed saddle advancement to piggy backpack +* Add trollber to Twilight Forest loot tables +* Enabled fishing! + +Bug Fixes: +* Correct rat's meat drops & added wolf meat drop to dire wolf +* Create recipes for Abyssalcraft's animated darklands log +* Remove "WIP" natura doors +* Rustic liquids appearing too early +* Add Primal's Yew Stick to stickWood oredict +* Enabled AE2 paint balls +* Added Amethyst, Cobalt, and Ardite to prospectors detection lists + +Mods Added: +* Drafty Kites +* Topography (1.14.4) +* ZenLoot + +Mod Updates: +* ExtraPlanets (0.5.6 -> 0.7.0) +* Galacticraft (4.0.2.236 -> 4.0.2.280) + * Core, Planets, & MicdoodleCore +* MJRLegendsLib (1.1.8 -> 1.2.0) +* SevPatches (1.5-6 -> 1.7-8) +* SevTweaks (0.3.1-25 -> 0.4.0-1) +* Wall-Jump! (1.2.3 -> 1.3.2) + +Mods Removed: +* Better Bedrock +* BringBedrockBack + +--------------------------------------------------------------------- + +3.1.7 + +Enhancements: +* Code cleanup +* Tweaked tooltip grammar and lengths + +Mods Updated: +* Bring Bedrock Back (0.0.1 -> 0.0.4) + +--------------------------------------------------------------------- + +3.1.6 Hotfix 1 + +Bug Fixes: +* Fixed unintentional change to shoggoth generation chance in swamps +* Resolved potential issue with bedrock generation in unintended dimensions + +--------------------------------------------------------------------- + +3.1.6 + +Mods Added: +* Bring Back Bedrock (0.0.1) + * A HUGE thank you to JayJay for making this for us! + * Resolves issue introduced with latest Better Bedrock update + +Mods Added: +* Corail Tombstone (4.0.0) + +Mods Removed: +* Advanced Mortars +* Tombstone: Revived + * Corail Tombstone is back + +--------------------------------------------------------------------- + +3.1.5 + +Mods Updated: +* Tombstone: Revived (4.0.0-2 -> 4.0.1-3) + * Fixes server startup crash + +--------------------------------------------------------------------- + +3.1.4 + +Bug Fixes: +* Correctly stage the Stray and its equipment +* Wool being visible in the world before intended +* Remove unnecessary imp leather drops (#4143) +* Fixed BWM Anchor and Pulley uncraftable in stage one +* Slime boots in conflicting stages +* Moved Void Sack to Age 5 as the recipe reciquired items from that age +* Staged the application of the iChisel (hitech) modifier on tinkers' tools +* Strange mob spawn counts potentially caused by low view distance + +Enhancements: +* Remove Barley Flour - Barley now produces regular flour instead +* Cutting a wooden slab using the BWM Saw will convert it to a thin slab if one exists for that material +* Stop Forge logging cascading world generation +* Adjusted the Betweenland's Boulder Sprite spawn rates + +Mods Added: +* Tombstone: Revived + +Mod Updates: +* AbyssalCraft (1.9.19.1) +* AbyssalCraft Integration (1.11.2) +* AppleSkin (1.0.9 -> 1.0.14) +* Bedrock B Gone/Better Bedrock (5.1.11) +* Better Foliage (2.3.1) + * Now works with Optifine F4 and later +* BnBGamingCore (0.11.0 -> 0.12.0) +* Bonsai Trees (1.1.4-b170) +* CD4017BE Library (6.4.6 -> 6.4.18) +* Cooking for Blockheads (6.4.70 -> 6.5.0) +* CraftTweaker (4.1.20.57) +* Custom Main Menu (2.0.9 -> 2.0.9.1) +* Cyclic (1.19.11 -> 1.20.3) +* Dark Utilities (1.8.226 -> 1.8.230) +* Dimensional Control (2.13.0) +* Enchantment Descriptions (1.1.15) +* Ender Storage 1.8.+ (2.4.5.135 -> 2.4.6.137) +* Ender Utilities (0.7.12 -> 0.7.15) +* Extended Crafting (1.5.4 -> 1.5.6) +* Farming for Blockheads (3.1.26 -> 3.1.28) +* Farseek (2.3.2 -> 2.5) +* FastWorkbench (1.7.3) +* Game Stages (2.0.123) +* Hunting Dimension (1.0.42) +* Improved Backpacks (1.4.0.0 -> 1.5.0.0) +* Immersive Engineering (0.12-92 -> 0.12-98) +* Inductive Logistics (1.3.3 -> 1.3.4) +* Industrial Foregoing (1.12.12-236 -> 1.12.13-237) +* Inventory Tweaks (1.64+dev.146 -> 1.64+dev.151) +* Iron Chests (7.0.69.845 -> 7.0.72.847) +* KleeSlabs (5.4.11 -> 5.4.12) +* McJtyLib (3.5.3 -> 3.5.4) +* Modular Routers (3.2.1 -> 3.3.0-33) +* More Overlays (1.14 -> 1.15.1) +* Ocean Floor - Clay Sand and Dirt (1.0.1 -> 1.0.2) +* RandomPatches (1.21.0.3 -> 1.22.0.0) +* Reborn Storage (3.3.4.85 -> 3.3.4.1) +* Refined Storage (1.6.14 -> 1.6.16) +* Refined Storage Addons (0.4.4 -> 0.4.5) +* RFTools (7.71 -> 7.73) +* Rustic (1.1.0 -> 1.1.4) +* SevPatches (1.4-5 -> 1.5-6) +* Simple Storage Network (1.7.6 -> 1.7.11) +* Steve's Carts Reborn (2.4.30.134 -> 2.4.32.137) +* Storage Drawers (5.3.8 -> 5.4.2) +* Thirsty Bottles (1.1.4 -> 2.0.1) +* ViesCraft - Airships! (5.9.13 -> 5.9.16) +* Wawla - What Are We Looking At (2.5.273 -> 2.6.275) +* XNet (1.8.1 -> 1.8.2) + +Mods Removed: +* Corail's Tombstone + +--------------------------------------------------------------------- + +3.1.3 + +Bug Fixes: +* Remove/alter additional recipes using Refined Storage Processors +* Use a staged output bus in the auto-cauldron structure (#3851) +* Dying eight slime blocks will now produce eight slime blocks rather than just one (#3899) +* Black Quartz and Silicon can now be crafted using their respective essences (#3833, #3913) +* Scamulator blueprint now has a recipe (#3870) +* Painted wood crafting recipe readded (#3685) +* The colour of quantum storage bags can now be changed (#3743) +* Fix Together Forever command in getting started text (#3943) +* Update Tartaric Forge removed recipes as changed upstream (#3942) +* Vanilla bookshelves can now only be crafted using vanilla planks, preventing conflict with natura (#3940) +* Lapis blocks are now be chiselable (#3932) +* Dupe bug as a result of TCon Crafting Station exposing Auto Chisel slots to JEI fixed (#3956) +* Enchantments now staged by definition, meaning books remain hidden even in old worlds where enchant IDs are different +* Properly stage the "easy" recipe for the Compacting Storage Drawer (#4100) +* Re-Added Cyclic GPS Marker for use in the Sensor Display (#4093) +* Removed recipe for TConstruct EFLN (as it was not intended to be craftable) (#4062) +* Fix Biodiesel not working with UltimateCarMod (#3885) +* Base tier Viescraft airship now triggers advancement (#4021) +* Blacklisted The Betweenland's Item Shelf from carryon to prevent item loss (#4121) +* Fixed incorrect ouput from some recipes in the Mekanism sawmill (#4111) +* Glass crafting in arc furnace now accepts all sand from the oredict (#3963) +* Fixed Cinnabar mineral vein not being overriden as intended. Cinnabar mineral veins now give redstone dust. (#4071) +* Removed Rusted Mineshafts from spawning +* Mekanism ore crushing yielding incorrect amount of dust (now yields 2 dust) +* Stage One Chisel recipe contained iron (which is unobtainable) +* Many damaged items should now appear as staged + +Enhancements: +* Graves will now have their outline highlighted +* Applied Energistics standard energy cells are now available in stage 4 (#4082) +* Increased Gasoline energy density in Advanced Generators to be the same as Simple Generators' (#4076) +* Adjusted the spawning of many mobs to reduce lag or increase diversity: + * Limited the amount of JAFF fish: + * Cod: 20 + * Clownfish: 6 + * Pufferfish: 4 + * salmon: 20 + * Increased weight of hammerhead sharks and applied minimums and maximums + * Limited pigs, cows, sheeps, and chickens to 100 to increase passive mob diversity + * Limited the amount of Steppe wolves to 15 + * Made all Custom-constrolled mobs spawn with minecraft spawning rules (per chunk) +* Manyullyn alloying added to arc furnace (#3965) +* Crusher recipes for stardust from starmetal ore and ingots (#3963) +* Added ability for Apple Trees to grow in Bonsai Pots (#3916, #3917) +* Add ground meat & meatball recipes for Modular Machinery (#3882, #4026) +* Crafting stumps show cracks before breaking +* Added recipe for corn seeds - work blade + corn cob (#4131) +* Tweaked the biome texture for Void in Antique Atlas +* Added repair options to the Volarkite using either a waterlilly or volarpad. +* Set Odin Rounded as default font +* Add Nutrient values for Sushi and Spirit Fruit +* Increase FBP particle effects +* Increase range and size of underground clay clusters +* Add Sugar Cane to Survivalist Strainer +* Add glider tooltip to Volarkite +* Add Ardite and Cobalt dusts +* Death Compass can now be crushed into Bone Meal + +Mods Added: +* Loading Screens +* RandomPatches (1.21.0.3) +* SevPatches +* Wall-Jump! + +Mod Updates: +* Forge (14.23.5.2854) +* AbyssalCraft (1.9.15) + * Using the sigil of the green grove (and other non-stackable bone meal like items) in purged lnads will no longer cause the item to be consumed (#3914) + * Resolves crash with Materializer (#3967) +* Applied Energistics 2 (rv6-stable-7) +* Astral Sorcery (1.10.21) + * Carminite ghastlings are now harmed by Discidia Ritual (#3817) + * Fixes potion handler, players should no longer find themselves + invincible (#3874) +* Building Gadgets (2.8.3) +* Carry On (1.12.3) +* CodeChicken Lib (3.2.3.358) +* Controlling (3.0.9) +* CraftTweaker (4.1.20.570) +* Extra Planets (0.5.6) +* Foamfix (0.10.10) +* Galacticraft (4.0.2.236) + * Fixes an incompatibility with Sponge (#3909) +* In Control! (3.9.16) +* Immersive Engineering (0.12-92) + * Assembler is now able to craft staged and scripted recipes (#1803) +* JustEnoughIDs (1.0.3-55) +* Mekanism (9.8.3.390) +* MultiBlock Stages (1.2.0) +* Ore Excavation (1.4.150) +* Overloaded (0.0.59) +* Primal Tech (0.3.5) + * Fixes an issue which meant the clay kiln would only become fired if it had an item inside it (#3846) + * Work stumps will visibly show when close to breaking +* Recipe Stages (1.1.3) + * Fixes an issue where JEI would display certain staged shaped recipes as shapeless (#3863) +* Smooth Font (2.1.2) +* Streams (0.4.8) + * Resolves ecursive stream generation issue (#3902) +* Stuff A Sock In It (1.1.32) +* The Betweenlands (3.5.10) + * Fixes an incompatibility with Optifine (#3865) + * Adds Volarkite + * Elixir of Starvation no longer causes negative saturation (#3982) +* Tinkers' Complement (0.4.3) + * Steel Nuggets recipe will no longer be registered without the corresponding item (#3911) +* Translocators (2.5.2.81) +* Triumph (3.19.2) +* Tumbleweed (0.4.7) +* ZenStages (0.4.2) + +Mods Removed: +* ArcFurnacePatch +* JustEnoughIDs Integration + * Deprecated with JEIDs update +* Tips + +--------------------------------------------------------------------- + +3.1.2 + +Bug Fixes: +* Fixed Horse Power dye recipes being flipped +* Moved BiblioCraft Framed Tool Rack & Framed Shelf to correct stage (#3625) +* Fixed bark workblade recipes on servers (#3621) +* Fixed dyed wool crafting recipes (#3642) +* Fixed Amadron trades using emeralds as currency (#3648) +* Restaged Hemp Seeds to zero, matching when hemp may be obtained (#3649) +* Prevent pickup of Transport Cart with carryon (#3640) +* Restaged Better With Addons pies to two, where they are obtainbale (#3633) +* Fixed item drops for various blocks that were overridden in scripts (#3673) +* Removed JEID error biome from Nature's Compass search GUI (#3612) +* Correctly stage Aqueduct constructed from stone bricks (#3635) +* Galacticraft Emergency Kits can now be crafted using their normal recipe (#3692) +* Blacklist chisels and bits blocks from being picked up using carryon (#3711) +* Cyclic cables should no longer drop sticks (#3709) +* Fixed Mekanism recipe staging (#3636, #3628) +* Stop backpacks from being swapped to armour slots when right clicked +* Stage RFTools Control Workbench container, allowing it to craft staged recipes (#3697) +* Fixed crash when using carryon with enderstorage by blacklisting the mod (#3729) +* Remove unused primal ores from world generation (#3730) +* Fixed jukebox saw recipes giving diamond instead of quartz (#3667) +* Added missing leaf -> stick recipes (#3668) +* Added missing plank recipes (#3669) +* Replace certain recipes still using rose red with recipes that use Red Dye Powder (#3682) +* Correctly stage Inductive Logistics Autocrafters +* Remove uncraftable recipes for BWM Fertilizer and prevent blank recipe for key displaying (#3651) +* Stop Sports Car being casually carried around (#3666) +* Alter recipe of Tier 8 Heavy Duty Plates to match pattern set by previous tiers (#3676) +* Barrel types are now craftable with different wood varieties (#3691) +* Pink Slime ingots now consume steel instead of iron - preventing a conflict with compressed iron (#3765) +* Prevent NetherEx Golden Wither Bone tools being placed in Item Repairer or Diamond Powered Anvil (#3774) +* Mossy Cobblestone Blocks now have same stage as item and recipe - can be seen in the world from age 0 (#3775) +* "Iron" Bits Chisel is now only in stage one (made from tin in this pack) preventing Unfamiliar Item and mis-staged recipe problems (#3775) +* Remove MREs from loot tables (#3776) +* Replace disabled cord in Yoyo book recipe with String Cord (#3717) +* Many more blocks now work with the chisel as expected - inc. metals, (char)coal, gem blocks, etc. (#2092) +* Ciniscotta and Terracotta from Primal now have crafting paths (#3714) +* Resolved issue with crafting of metal Spartan Shields (#3650) +* Adjusted staging and recipes of certain items from Cyclic (#3805) + * Interdiction Pulsar moved to stage 5 as it seems to serve the same purpose as the fan, only better + * Merchant Almanac disabled as it offers no real benefit in this pack - villager trading is a thing of the past by the time it's available + * Entity Detector has a new recipe that only uses items from stage 3 +* Increase output of Hemp Fibers and Ground Resin from the Industrial Mill (#3791) +* Fixed recipe name mismatch between server and client that was causing certain Mystical Agriculture essence recipes to behave strangely (#3818) +* Config change - blood magic altar tier 6 is available again (#3841) + +Enhancements: +* Removed primal tech twine (had no use) +* Re-introduce Infused Crystal Pickaxe +* Both carts from AstikorCarts will now trigger the "Love and Carriage" advancement, text clarified +* More Metal Press packaging recipes can be reversed using an unpacking mold (#3694) +* Light gray dye powder now accepted by the AE2 Color Applicator (#3683) +* Added a crafting recipe for Ironwood Bark/Stripped Ironwood (#3622) +* Made Charcoal Hopper's Age One recipe to be craftable in a 2x2 grid +* Added tooltip to clarify how to obtain a car key +* Stripped unnecessary nulls from recipes; plenty of shaped recipes are now less picky about having their ingredients in the exact right spots in the crafting grid! (@pupnewfster) +* Ground Netherrack can now be made in the Industrial Mill or the IE Crusher from all types of Netherrack (#3757) +* Actually Additions Crushed Quartz replaced with AE2 Nether Quartz Dust in all recipes (#3757) +* Full range of BWM Adobe can now be crafted using Betweenlands Compost in place of dung - see https://ftb.gamepedia.com/Adobe +* Added an auto-cauldron multiblock machine - making glue now 10x more futuristic (#2545) +* Hide most Armor Forge variants from JEI - same as is done for the Tool Forge +* Increased the ceremony times for many of the Totemic Ceremonies. The most difficult: Eagle, Baykok, flute imbuing have been made much easier to attain especially for Single Player worlds. Every ceremony is at least 50% longer +* Added a new machine to Modular Machinery "Scamulator". This machine's purpose is to allow the crafting of all Galacticraft and Extra Planet schematics by using resources found on planets. This should alleviate the headache of randomly searching for dungeons and hoping the loot you needed dropped. Every schematic requires Liquid Cheese, (because science)! +* Antique Atlas Markers can now be copied to JourneyMap waypoints. This is done automatically when the JMapStages Waypoint stage is reached. This can also be triggered manually using "/waypoints" +* Added a final quest to the modpack to summon Sevadus. You will need to use AbyssalCraft to summon him +* Huge number of mobs added to RFTools Spawner (#3825) + +Mods Added: +* ArcFurnacePatch (1.0.0.3) + * Fixes #3718 +* JustEnoughIDsIntegration (1.2.1.29) + * Fixes biome changing in various other mods + +Mod Updates: +* AbyssalCraft (1.9.8) +* AbyssalCraft Integration (1.8.1) +* Actually Additions (r149) +* Advanced Mortars (1.6.23) +* Antique Atlas (4.5.1) + * Fixes end city crash (#3731) +* ArmoreableMobs (1.1.8) +* AstikorCarts (0.1.2.7) +* Astral Sorcery (1.10.19) +* AutoRegLib (1.3-31) +* BASE (3.13.0) +* Better Advancements (0.1.0.77) +* Better Builders Wands (0.13.2.271) +* Better with Addons (0.50) +* Blood Magic (2.4.1-103) + * Fixes an issue where a Blood Letters Pack could be voided if right clicked when in off hand (#3722) +* BnBGamingCore (0.11.0) +* BnBGamingLib (2.17.6) +* Bonsai Trees (1.1.3-b156) +* Bookshelf (2.3.581) +* BuildCraft (7.99.24.1) +* Building Gadgets (2.6.8) +* CD4017BE Library (6.4.6) +* Ceramics (1.3.7) +* Chisels and Bits (14.33) +* Common Capabilities (2.4.1) +* Compact Machines (3.0.18-b278) +* Construct's Armory (1.2.4) +* Cooking for Blockheads (6.4.70) +* Corail Tombstone (3.5.3) +* CraftTweaker (4.1.18) +* Cyclic (1.19.11) + * Fixes an issue with hydrator recipe caching (#3700) +* Cyclops Core (1.3.0) +* DarkUtils (1.8.226) +* Dimensional Control (2.11.0) +* Environmental Tech (2.0.20.1) +* Elevator Mod (1.4.2) +* Extended Crafting (1.5.4) +* ExtraPlanets (0.5.3) +* Farseek (2.3.2) +* Fast Furnace (1.3.1) +* FastWorkbench (1.7.2) +* Foamfix (0.10.5) +* Galacticraft Core (4.0.2.211) +* Galacticraft Planets (4.0.2.211) +* Gamestages (2.1.115) +* Geolosys (2.2.6) +* Horse Power (2.6.3.74) +* Hunting Dimension (1.0.39) +* ImmCraft (1.6.0) +* In Control! (3.9.8) +* Industrial Foregoing (1.12.11-235) +* Integrated Dynamics (1.0.14) +* Iron Chests (7.0.69.845) + * Fixes issue with inventories not being visible when in the same chunk as a TConstruct Smeltery Controller (#3696) +* Item Stages (2.0.49) +* JEI (4.15.0.278) +* JourneyMapStages (2.0.9) + * Fixes an issue where JourneyMap minimap would not display when unlocked (#3613) +* Mantle (1.3.3.55) +* MCJtyLib (3.5.3) +* Mekanism (9.7.9.380) +* MicDoodleCore (4.0.2.211) +* ModTweaker (4.0.17) +* MTLib (3.0.6) +* MystAgrad (1.3.2) +* Mystical Agriculture (1.7.5) +* Natura (4.3.2.69) +* Nutrition (4.3.0) +* OreExcavation (1.4.140) +* Overloaded (0.0.57) +* Pickle Tweaks (2.1.3) +* Placebo (1.6.0) +* PlayerBosses (1.0.0) +* PneumaticCraft: Repressurized (0.11.1-361) + * Adds a way to transmit redstone along pressure tubes using the Redstone Screen Module +* Primal Tech (0.3.4) + * Fixes saw stripping NBT (#3542) +* Quark (r1.5-158) +* RebornCore (3.13.12.447) +* RebornStorage (3.3.4.85) +* Recurrent Complex (1.4.8.2) +* Refined Storage (1.6.14) +* Refined Storage Addons (0.4.4) +* RFTools (7.71) +* RFTools Control (2.0.2) +* SevTweaks (0.3.1-25) +* Simple Generators (2.0.20.2) +* Simple Storage Network (1.7.6) +* Smooth Font (2.0) +* Spartan Shields (1.5.2) +* Steve's Carts Reborn (2.4.30.134) +* Streams (0.4.7) +* The Beneath (1.5.1) +* Tinkers Construct (2.12.0.135) +* Tinkers' Complement (0.4.1) +* TipTheScales (1.0.4) +* Toast Control (1.8.1) +* Together Forever (1.0.12-22) +* Totemic (0.11.6) +* Triumph (3.17.0) +* ValkyrieLib (2.0.20.1) +* WAWLA (2.5.273) +* Weirding Gadget (2.1.16) +* YNot (0.2.4) +* Yoyos (1.3.0.21) +* Xnet (1.8.1) + +Mods Removed: +* AppleCore + * Not required - AppleSkin supersedes +* Caliper + * Debug tool - not needed in release +* Sampler + * Debug tool - not needed in release +* World Stripper + * Debug tool - not needed in release + +--------------------------------------------------------------------- + +3.1.1 + +Bug Fixes: +* Propene recipe not matching inputs (#3614) +* Changed BWM Adobe recipe to not require Dung + +Enhancements: +* Hide junk from JEI + +Mod Updates: +* Modular Machinery (1.9.5) +* MPBasic Tools (1.4.11) + +--------------------------------------------------------------------- + +3.1.0 + +Important Notes: +* The modpack has had a complete re-write of all the CraftTweaker Scripts to make our lives easier during development along with easier updates. However in the process some bugs may show from items +being staged wrong. Or recipes not working correctly, we have done all the testing we can to ensure this won't happen. But with all development processes things will get past QA. So if you find +any problems please report them to our tracker, thanks! +* Tomb Many Graves has been removed! So what does this mean for me? Well if you have any graves lying around they are now gone. The change has been done due to the lack of support from other mods +in the pack which TMG was not getting all the player items. Leading to item loss and users not playing the pack again. So we have changed to using Corails Tombstone which has the mod support we +need, along with some added items which will help the player in the long run. Also for you builders out there, you now have graves to place around your base! We're sorry if you've lost items from +the old graves. But this is a major update and we had to make the change now rather than later. We hope you can understand this. +* If you get a crash relating to `java.lang.NoSuchFieldError: OpenGL45` your LWJGL is out of date. The needed version is 2.9.4 if your using MultiMC you can change the version in the instance settings. +Twitch you should use the Jar Launcher as this will auto use the correct version. Likewise for ATLauncher. +* Refined Storage (1.6) has a major change in how the mod works. So please review the changes to see what's broken on your network. There is nothing we can do on the pack side to help with, the possible +breakage of your networks/autocrafting etc... So please ensure you read the changelog and understand the changes done by the mod. The modder has put work into upgrading current networks. But expect to find +issues! This is your only warning about this. So don't open issues on the tracker about issues. Unless it's an actual bug with the mod! +* Viescraft has been updated (which the mod did a refactor) this means that your ships will vanish, along with some items. This is another thing we can't control with mod updates. All we can say is sorry. Feel free to +spawn in components to re-make your ships. Note: Ship building changed a bit so please read up on the changes. +* ContentTweaker Molten Fiery is now removed (deprecated in 3.0.8) +* Astral Sorcery has a new perk system, and as a result the mod will reset your perk experience. +* Astral Sorcery rituals may not be active after upgrading. To restart them, simply pick up the crystal from the pedestal and place it back down. +* The Compact Machines Advancement ("Project Miniaturization") may have been reset if you currently had the advancement. See https://github.com/DarkPacks/SevTech-Ages/issues/3594#issuecomment-471080837 for a resolution. + +Bug Fixes: +* Fixed Betweenland items being repairable in the Cyclic Anvil. As it's not intended from the mod. +* Fixed Bronze Tool recipe issue and added Copper Tool recipes (#2802) +* Fixed "Broken" tooltip from displaying on the Cyclic swords and Twilight Forest's Glass Sword. +* Fixed Cyclic player launcher recipe. +* Fixed Bloodwood and Ghostwood planks crafting each others slabs (#3173) +* Fixed Steve's Carts Liquid Sensor recipe to fit age 3 (#3152) +* Fixed Better With Mod's Bamboo Chimes recipe to be craftable in age 1, and made the Metal Chimes recipe match +* Fixed Primal Tech fibre torch to vanilla torch recipe to allow lit fibre torches (#797) +* Disabled "pistons move t es" from Quark to prevent crash with Cyclic Redstone Clock (#3110) +* Disabled "What is 11?" Easter Egg with Actually Additions (#3140) +* Disabled Coal Block to Diamonds in PneumaticCraft config to force it off. +* Disabled "Right-Click Places Torch from Hotbar" in ClientTweaks config to fix incompatibility with Tinkers Construct Smelteries (#2892) +* Disabled Iridium Singularity (#2985) +* Disabled Compressed Zinc (#3168) +* Fixed Unrefined Desh not smelting in Mekanism smelters +* Blacklisted Tinkers' Tools & Construct's Armory Armor from the Powered Diamond Anvil to prevent some issues. As well, we feel these items +should not be repairable anyways using this method. (#2925) +* Fix exploit to obtain Mystical Agriculture ores early using oredict conversion machines. (#2840) +* Fixed Chisel Temple block recipe giving incorrect recipe output amount. (#2814) +* Disabled pickup of the GCPlan spout with the sack of holding. +* Fixed custom bedrock not being in the allowed bedrock for Ender Utilities (#3201) +* Fixed dye recipes not being removed (some missed ones) and fixed current recipes (#3217) +* Fixed Constructs Armory's book not being able to go into bookshelves (#3227) +* Fixed jukebox missing recipe (#2905) +* Fixed removed dupe processing recipe for Lapis (#3083) +* Added missing recipes for some power inputs for MM (#3090) +* Fixed inconsistent recipe for VC frame upgrades (#2568) +* Fixed raw pigman pelt processing recipe (#2912) +* Fixed Content Tweaker ores only working in quartz grindstone (#3147) +* Fixed custom Geolosys Ores generating in un-wanted dimensions (#2184) +* Added recipes for Priaml cosmetic stones (#1672) +* Fixed Pneumaticraft assembly laser recipe to use correct dye. +* Added recipes for missing Natura Grass blocks/slabs/stairs (#3310) +* Fixed missing recipe for emptying rustic bottles (#2157) +* Tweaked staging for rustic slate blocks (#3372) +* Fixed conflicting recipes with a diamond apple (#3446) +* Fixed Creative advancement trigger being called by two advancements (#3596) +* Fixed Compact Machines Advancement ("Project Miniaturization") being in incorrect stage (#3594) +* Fix IE excavator not yielding geolosys clusters (#3025) + +Enhancements: +* Disabled more Cyclic Enhancements not needed for this pack. +* Added Ferdiand's Flowers glass blocks to sealable block list for Galacticraft (#2797) +* Made ore advancement descriptions uniform and corrected Y values. +* Added trade with the FFBH mod to get Corn Seeds. +* Fixed inconsistent recipes with Rice and some Bread recipes. +* Increased age 3 coal coke torch recipe to make 4 torches instead of 2. +* Nerfed Better With Mod's nether coal recipe to make 1 instead of 4. +* Fixed remaining recipes using the wrong lead ingot, also hidden the ingot and block in JEI to prevent confusions. +* Added Industrial Mill recipes for Bone Meal (#3189) +* Added some more ingredients to the CWBH compact module (#2051) +* Fixed some FakePlayers not being staged (more will be added as we find them). #progress! +* Hid Totemic's netherumbrian pipes, bark stripper, and Primal Tech's water powered saw from JEI +* Add recipe to the Industrial Mill to process Low Grade Charcoal to Charcoal (#2843) +* Add better bucket recipe via the Hydraulic Press (Age 5) (#2777) +* Added recipe for low grade charcoal to the BWM Kiln (#2786) +* Added recipe for Sticks from the BWM Saw via Wood Slabs (#2786) +* Added more recipes to the Industrial Loom (#2293) +* Added Bibliocraft shelf recipe with BWM siding (#1476) +* Tweaked the spawn weight for Steppe Wolves (#3315) +* Re-Stage water bottle to Stage Two (#1648) +* Added recipes to the Squeezer to help Alcohol Production (#2724) +* Added more wood items from Natura to OreDict to enforce more barrel compat. +* Changed stage advancements to now show regardless of their parent being completed (If you have the age, you can see all advancements) +* Tweaked the portal color of the Hunting Dimension Portal +* Removed Shoggoth Acid Spit +* Disabled Shoggoth item destruction +* Decreased the health of Lesser Shoggoths to 50 +* Decreased the health of Shadow Beasts to 50 +* Decreased the health of Shadow Creatures to 10 +* Decreased the health of Shadow Monsters to 35 +* Increased the spawn chance of meteors +* Disabled Galacticraft "Harder Difficulty" & enabled "Quick Game Mode" - This reduces the cost of plates, and in general aims to reduce the grind +* Added a Meteoric Iron dust and unified Meteoric Iron +* Allow fire sticks to be used as a fire source (for lighting torches, etc) +* Removed Meteorite Compass as it was not used for anything (#3517) +* Reordered advancement tabs so SevTech advancements are first (in order of stage) followed by the remaining in alphabetical order +* Astikoor Wheel & Steve's Carts Wooden Wheel recipes altered slightly +* Added Abyssalcraft ritual to get Mooshroom Essence for RF Tools Peaceful Dimlet (#3093) +* Increased the chances of finding Shoggoth Lairs +* Changed Carbon Wafer to Advanced Wafer in Creative Jetpack recipe +* Remove useless Wafers +* Add tooltip to Death Compass Singularity to indicate how a Death Compass can be obtained +* Add tooltip to Coralium Ore & Pearl (#3591) +* Add tooltip to BWM Mill Stone (#3585) +* Disable Better Foliage's falling leaves to help improve performance +* Add chocolate recipe to Modular Machinery Mixer +* Reduce HP of Steppe Wolf by half (25-12.5) +* Allow death compasses to be stackable & add a recipe to clear NBT data +* Allow NetherEx Basalt Blocks to be obtained by chiseling other basalt blocks +* Blacklist Shoggoth Lairs from Twilight Forest + +Forge: 14.23.5.2815 + +Mods Added: +* BetterWithLib (1.5) + * Now needed with a BWM update. Yay more libs! >.< +* Building Gadgets (26.6) +* Corails Tombstone (3.3.2) + * This replaces Tomb Many Graves. +* Fast Furnace (1.2.1) + * Caches the last recipe used. Helps with tick time and look up speed etc... +* In-Game Wiki + * Needed for the mods which don't have only docs but support IGW. +* JustEnoughIDs (1.0.2-26) + * Allows us to add more content #ContentUpdateAnyone? +* LibEx (1.0.8) + * Now required by Nether Ex (2.0.0+) +* Mekatweaks (1.0.0) +* More Overlays (1.14) +* Playerbosses (0.1.0) +* Proportional Destruction Particles (1.2.4) +* Tips (1.0.7) + * JustTheTips replacement +* ZenStages (0.4.0-18) + * Allows us to create staging modpacks far easier. + +Mods Removed: +* CraftStudio API +* JustTheTips +* NotEnoughItems + * Conflicting more and more with JEI and other utilities +* Tomb Many Graves + * This mod was causing more problems than solving. So we have decided to drop the mod in favour of another which has mod support + and active development. + +Mod Updates: +* A Block of Charcoal (1.2) +* AbyssalCraft (1.9.5.2) + * Acid Projectiles no longer break blocks with Tile Entities when hitting Players or other mobs + * Fixed a dupe bug in the Materializer GUI + * Reduced the range of Cha'garoth's melee attacks + * Slowed down the initial velocity of the Acid Projectile, increased the time between each projectile being fired, and made it so baby Lesser Shoggoths won't fire them + * Any NBT checks for crafting recipes and/or rituals are now a lot less strict (the placed item needs to contain the recipe item NBT tags) + * Increased the range of the Corruption, Cleansing and Purging rituals to 8x8 chunks (previously 3x3) + * Lesser Shoggoths now swim faster (and can move against flowing water) + * If two mobs/players/whatevers close to each other both have Dread Plague I, they can infect each other with Dread Plague II + * Lesser Shoggoths now have an AI for monolith construction, which makes the construction happen more frequently + * The purging ritual now only converts biomes that are Dreadlands biomes + * Cha'garoth now opens his mouth during his barf attack (courtesy of Enderman_Of_D00m) + * Fixed the crystallizer recipes for processing Bronze + * J'zahar has been buffed with new attacks (including shouts, earthquakes and conjuring black holes and gravity anomalies) + * The Dreadlands Portal now spawn Dreadlings instead of Dread Spawns + * Energy Containers can now display values over 32767 in their GUIs + * Doubled the time it takes for a Lesser Dreadbeast to spawn a Dread Spawn + * Lesser Shoggoths have a new model + * Lesser Shoggoths are now multipart entities +* AbyssalCraft Integration (1.7.0) +* Actually Additions (r146) + * Added redstone sensitivity / comparator output to Bio Reactor. + * The farmer will now only plant from seed slots. + * The farmer will now only attempt to plant if the current block can be replaced. + * The crusher is no longer animated when not crushing. + * Fixed the farmer (and other inventories) failing to add items if all items have a stacksize of 1. +* Advanced Mortars (1.6.22) +* Animalium (0.3.8) +* Antique Atlas (4.5.0) +* Apple Core (3.2.0) +* Applied Energistics 2 (rv6-stable-6) +* Aroma Core (2.0.0.2) +* Aroma Backup (2.1.1.4) +* AstikorCarts (0.1.2.6) +* Astral Sorcery (1.10.11) +* AutoRegLib (1.3-26) +* B.A.S.E (3.12.0) +* Better Advancements (0.0.17.75) +* Better Foliage (2.2.0) +* Better With Addons (0.47-hotfix) + * Changes Lanterns to only extinguish when sneaking while rightclicking. + * Fixes some networking issues in multiplayer when using a writing table +* Better With Mods (2.3.20-1027) +* BiblioCraft (2.4.5) +* Blood Magic (2.4.0-102) + * Fixed Teleposition Sigil not checking for a Teleposer at it's destination + * Fixed Lava Crystal not syphoning LP + * Fixed the Ritual of the Green Grove not working on Cactus and Reeds + * Fixed Mob Sacrifice Array so it no longer kills bosses and players + * Fixed issues with inter-dimensional teleportation + * Fixed the Lava, Water, and Void sigils so they now work properly with tanks +* BnBGamingCore (0.10.0) +* BnBGamingLib (2.17.5) +* Bookshelf (2.3.574) +* Bonsai Trees (1.1.2-b144) +* BuildCraft (7.99.22) +* Caliper (1.1.41) +* Car Mod (1.2.12) +* CarryOn (1.12.1) + * When a carried object somehow gets out of the hand of the player and gets moved anywhere in the inventory, it gets automatically removed and placed in the world. + * Fixed a bug that could force-close certain GUI's even if the block was blacklisted + * Carry-Key could get stuck when entering through dimensions + * More blocks are now rotated properly when placed down +* Caliper (1.1.37) +* CD4017BE Lib (6.3.3) +* Ceramics (1.3.6) +* Chargers (1.2.0.4) +* Chisel (0.2.1.35) +* Chisel & Bits (14.30) + * Fix a crash when rendering invalid ghost blocks. + * Enhance API to provide collisions and other bounding box information + * Fix performance when placing bits with a ridiculous surplus of extra bits. + * Dye-able bit bags. + * Sort/Combine/Condense Button for Bit Bag. + * Rotate X / Z buttons. +* Client Tweaks (3.1.11) + * Removed Hotbar Torch Tweaks +* Clumps (3.1.2) +* Code Chicken Lib (3.2.2.353) +* Coloured Tooltips (1.0.7) +* Common Capabilities (2.0.4) +* Compact Machines (3.0.15-b249) +* Connected Textures Mod (0.3.3.22) +* Construct's Armory (1.2.3) +* ContentTweaker (4.9.1) +* Cooking With Blockheads (6.4.69) + * Added Storage Drawers support + * Only actual drawer blocks are supported, controllers can not be connected. + * Added Heating Unit + * Apply it to an oven (via right-click) to power the oven via Forge Energy compatible mods + * Added rendering of water inside the sink + * Made tool racks and spice racks placeable on non-solid blocks (like glass) + * Fixed crafting of recipes with tools not working when the tool is damaged + * Fixed wrong rock material of the placed cutting board (instead of wood) +* CraftTweaker (4.1.14) +* Cucumber (1.1.3) +* CustomMainMenu (2.0.9) +* Cyclic (1.17.16) + * Entity Detector lag busting: it now only scans serverside, and ticks 4 times per second instead of 20 times per second. + * Fixed RF Energy bars in machine GUI's not updating clientside when certain cables/fluxducts/generators would insert energy serverside. + * Forester GUI now has size and height controls. + * Fixed Auto User not gathering drops from certain plants and bushes. + * Fix crash when Block Placer uses some directional blocks. + * Block Placer no longer has a timer bar, it just places when it can. +* Cyclops Core (1.0.5) +* Dark Utilities (1.8.223) +* Default Options (9.2.8) +* Despawning Spawners (1.2.0-2) +* Dimensional Control (2.10.3) +* Dimension Stages (2.0.23) +* EmberRootZoo (1.3.10) +* Enchantment Descriptions (1.1.13) +* Ender Storage (2.4.5.135) +* Ender Utilities (0.7.12) +* Environmental Tech (2.0.19.1) +* Extended Crafting (1.5.2) + * WAILA will now show what's being crafted for the Crafting Core and Quantum Compressor + * Fixed the Automation Interface not working properly with the Ender Crafter + * Fixed the Ender Crafter not saving it's inventory in some cases + * Fixed the Automation Interface not saving the result of an Ender Crafting recipe properly +* ExtraPlanets (0.5.0) +* Fancy Block Particles (2.4.1) +* Farming For Blockheads (3.1.26) + * Remove villager idle noises from merchants because they're so annoying +* Farseek (2.3.1) +* FastWorkbench (1.6.1) +* Ferdinand's Flowers (1.10.4.1) +* FindMe (1.1.0-8) +* FoamFix (0.10.3) + * Please note that this is the formerly "Anarchy" version; the "Lawful" version is no longer distributed. + * Optimized model deduplication speed, though with the increased number of recursion it won't be noticeable in practice - however, it should lead to more RAM saved. + * Add patch which lowers the expensive "player presence" check for mob spawners from being done every tick to being done every 10 ticks (by default; you can increase or decrease it). The default will be changed to vanilla behaviour if it's proven that it causes a perceptible difference in gameplay, particularly with regards to automation - but it really shouldn't... + * Fix compatibility with ArmorPlus. +* Forge Multi Part (2.6.1.81) +* ForgeLin (1.7.4) +* Galacticraft (4.0.1.181) +* Galacticraft Planets (4.0.1.181) +* Galacticraft Tweaker (1.0.3) +* Game Stages (2.0.112) +* Geolosys (2.1.4) + * NEW: Depleting a mineral resource prevents it from showing up with the prospector's pick on the surface + * CHANGED: ProPick and guide book now use depth relative to sea-level instead of just Y level + * FIX: log outputs with the Mineral tracking process; this was causing lots of lag. + * CHANGED: storage method of internal variables to an almost-no-latency method; helps with mineral tracking too. +* Guide API (2.1.8-63) +* Horse Power (2.6.2.71) + * Fixed rare crash with the error display of the blocks while holding a lead. +* Hunting Dimension (1.0.36) +* Immersive Craft (1.5.1) +* Immersive Engineering (0.12-89) + * Added a "Distribute Inputs" button to the ArcFurnace GUI. It keeps splitting the biggest stacks in the input if there is space available +* Improved Backpacks (1.4.0.0) +* In Control (3.9.4) +* Inductive Logistics (1.3.3) +* Industrial Foregoing (1.12.7-231) +* Informational Accessories (1.0.11) +* Integrated Dynamics (1.0.7) + * Add visual indicator in operator dropdown list on next/prev elements + * Fix simple omnidirectional copy recipe resetting IDs + * Fix variables with operations not updating after chunk reload + * Fix incomplete flipped operators throwing errors + * Add state-type check to display panel TESR this fixes a rare crash where swapping dimensions could cause conflicting part states. +* Inventory Tweaks (1.64+dev.146) +* Iron Chests (7.0.59.842) +* Iron Jetpacks (1.1.0) +* Item Stages (2.0.46) +* JourneyMap (5.5.4) +* JourneyMapStages (2.0.8) +* Just Enough Items (4.15.0.268) +* KleeSlabs (5.4.11) +* Mantle (1.3.3.42) +* MTLib (3.0.5) +* Mekanism (9.6.0.351) +* MicDoodleCore (4.0.1.181) +* MicJty Lib (3.1.1) +* MJRLegends Lib (1.1.8) +* Mob Grinding Utils (0.3.13) + * Changed mob masher to extend kill zone slightly past the block bounds - now exceeds the block by 1 pixel all around - be careful. + * Changed some code with the Fans due to reports of them causing server crashes when broken. + * Fixed overlooked derp that meant Mob Mashers could be broken by Withers and the Dragon - doh! + * Should fix beheading attribute on mobmasher returning null for mobs without heads and crashing people - whoops. +* Mob Stages (2.0.13) +* Modular Machinery (1.9.6) +* Modular Routers (3.2.1) + * Added the Distributor Module, a way to distribute items across multiple target inventories. Can do round-robin, random, nearest-first or furthest-first. +* Mod Tweaker (4.0.16) +* Morpheus (3.5.106) +* MouseTweaks (2.10) +* MPBasic Tools (1.4.10) +* MPUtils (1.5.7) +* MulitBlock Stages (1.1.1) +* Mundane Redstone Ore (1.1.4) +* Mystical Agradditions (1.3.1) +* Mystical Agriculture (1.7.3) + * Fixed a crash involving PneumaticCraft harvest drones +* Natura (4.3.2.66) +* Neat (1.4-17) +* Nether Ex (2.0.8) + * Pigtificate Villages not spawning + * Potion effects from decreasing performance + * Forge population not being triggered + * Features not generating during the correct stages + * A crash caused by the Ghast Queen's Urn position being null + * A crash caused when right-clicking Zombie Pigmen +* Not Enough Items (4.2.1.238) +* Nutrition (3.5.0) +* OpenBlocks Elevator (1.3.8) +* Ore Excavation (1.4.137) +* Ore Excavation Integration (2.3.4) +* Ore Prospector (1.0.2) +* Ore Stages (2.0.37) +* Overloaded (0.0.53) +* PickleTweaks (2.1.1) +* PrimalCore (0.6.102) + * Cauldron item storage size has increased, existing cauldrons will need to be picked up and placed again + * Fix Corn worldgen issues + * Fix Worldgen issues + * Tonnes of other changes/fixes. #Content! +* Placebo (1.5.1) +* PneumaticCraft (0.8.4-303) + * The Omnidirectional Hopper and Liquid Hopper now have comparator support to measure their fullness. + * Logistics Drones now grab as many of the requested item type as can fit in a single item stack, instead of taking simply the first stack from the inventory. + * Fix: items not always transferring in Logistics Network (using tubes & Logistics Modules) + * Fixed drones having their AI overridden by carried entities (Entity Import program piece) + * Fixed possible lockup (endless loop) on startup with drones + * Fixed occasional crashes when teleporting into areas with client-side (TESR) renderers + * Drones will now auto-equip the best (highest damage, taking enchantments into account) weapon in their inventory when entering combat (only applies with upgraded inventories, of course). + * Drones have been taught how to melee 1.9 style. They were still fighting 1.7.10 style, which made them hopeless at melee. + * Fix: server crash if a drone carrying multiple buckets tried to milk a cow. Now the drone will drop any milk buckets that it has no inventory space for on the ground. + * Fix: right clicking a refinery block with a bucket or other fluid container will now extract the right fluid (previously it always tried to extract from the bottom block in the stack, regardless of which block was clicked) + * Pneumatic Door now plays a (suitably pneumatic) opening/closing sound effect. + * Some performance improvement work, particularly around Omni and Liquid Hoppers. In particular, extracting from the Refinery with Liquid Hoppers caused significant FPS drops. + * Liquid Hoppers no longer accept input fluids on their output face, and will no longer output fluids from their input face. (Related to performance improvements mentioned above) + * Reworked 3rd party wrench support: many more wrenches are now supported + * Fixed NPE when using a newly-crafted GPS Area Tool + * Fixed (hopefully) semiblocks rendering leaking across dimensions (semiblocks are logistics frames, heat frames, crop supports, spawner agitators & transfer gadgets) +* Prestige (1.1.30) +* PrimalCore (0.6.104) +* Quantum Storage (4.6.8) +* Quark (r1.5-146) +* Realistic Item Drops (1.2.14) +* Reborn Core (3.13.5.421) +* Reborn Storage (3.3.2.79) +* Recipe Stages (1.1.1) +* Redstone Flux (2.1.0.6) +* Refined Storage (1.6.12) + * TLDR: The mod changed a lot and some things are gone/changed. So check your networks/recipes, basically check all your setup! And read the changelog below! + * Changes: https://minecraft.curseforge.com/projects/refined-storage/files/2587374 +* Refined Storage Addons (0.4.3) + * Removed Network Bag + * Removed Network Picker + * Removed Infinite Wireless Transmitter +* RFTools (7.61) + * Support for COFH RF API is removed. Only Forge Energy is supported now +* RFTools Control (1.9.3) + * Support for COFH RF API is removed. Only Forge Energy is supported now +* Rustic (1.1.0) +* Scannable (1.6.3.24) +* SevTweaks (0.2.3-20) +* Simple Generators (2.0.19.1) +* SimpleHarvest (1.2.7-20) +* Simple Storage Network (1.5.7) +* Smooth Font (1.16.2) +* Steve Carts (2.4.29.132) +* Storage Drawers (5.3.8) +* Super Sound Muffler (1.0.2.10) +* Tesla Core Lib (1.0.15.13) +* The Beneath (1.5.0) +* Together Forever (1.0.11-20) +* Translocators (2.5.1.77) +* Triumph (3.12.0) +* The Betweenlands (3.4.6) + * Fixed water invisible when in Weedwood Rowboat with Galacticraft installed + * Fixed a crash when certain items were rendered in Weedwood Workbench + * Fixed apparent crash when entering the Betweenlands + * Fixed some shader textures uninitialized in first frame when loading world causing a crash with Optifine + * Fixed player mounting Harlequinn Toad when healing with Dragonfly Wings + * Fixed Harlequinn Toad healing causing a null stack crash in a specific situation + * Tonnes of other changes see: https://minecraft.curseforge.com/projects/angry-pixel-the-betweenlands-mod/files/2631583 and https://minecraft.curseforge.com/projects/angry-pixel-the-betweenlands-mod/files/2635610 +* The Twilight Forest (3.8.689) +* The Weirding Gadget (2.0.13) +* Tinkers Construct (2.12.0.115) + * New Pattern Chest model! + * Patterns/Toolparts can now be rightclicked into chests +* Tinker Tool Leveling (1.1.0) +* Tinker Stages (2.0.17) +* Tinkers Construct (2.10.1.87) +* TipTheScales (1.0.3) +* To The Bat Poles (1.1.0.1) +* Toast Control (1.8.0) +* Together Forever (1.0.10-17) +* Totemic (0.11.5) +* Translocators (2.5.0.73) +* Traverse (1.6.0-69) +* Triumph (3.13.0) +* ValkyrieLib (2.0.19.1) +* Viescraft (5.9.13) +* WanionLib (2.2) +* Wawla (2.5.270) +* Wither Skeleton Tweaks (2.6.3) +* World Stripper (1.6.0) +* XNet (1.7.6) + * Support for COFH RF API is removed. Only Forge Energy is supported now +* YNot (0.2.3) + +--------------------------------------------------------------------- + +3.0.8 + +Important Notes: +* Molten Fiery liquid has changed. The old liquid is now deprecated and a new one will take over provided by Twilight Forest + +Bug Fixes: +* Fix platinum crushing / etc recipes (#2315) +* Fix wool dying recipe giving 1x output instead of 8x - No, we are not jerks (#2307) +* Adjusted tooltip of Journeymap Token to clarify it needs to be eaten not just obtained (#2291) +* Fix Ore Excavation modifier recipe not working (#2314) +* Fixed some buckets being shown/hidden incorrectly +* Blacklist aspectrus crop from carryon (#2341) +* Adjust fiery sword and pickaxe recipes to be craftable in age 2 (#2288) +* Add a few more entries to book array (#2363) +* Twilight Forest Castle Doors now drop the right item +* Re-remove tiny iron dust recipe (#2298) +* Move Garden Scythe into proper age 3 to match items used in recipe +* Add back Ironberry Juice recipe (#2298) +* Add missing platinum magical crop (#2350) +* Add missing Rope Block decompression recipe (#2379) +* Fixed dupe cocoa bean recipe (#2386) +* Fixed staging on the Unchant Pylon (#2380) +* Fix many logs not working with BWM Sawmill (#2369) +* Add missing recipes for Diamond and Emerald Workblades (#2260) +* Re-add ingot -> dust crushing recipes (#2353) +* Fixed Mantle of Stars Aevitas not giving any hunger/saturation (#2371) +* Fixed Bone dupe when repairing sharp bone in crafting grid (#2358) +* Turned off Better with Mods handling of default Mossy Cobble and Mossy Stone Brick recipes (#2393) +* Fixed dupe bug by Blacklisted Immersive Engineering blocks from the Cyclic Sack of Holding (#2410) +* Fix Arc Furnace bronze alloying giving incorrect output amount (#2334) +* Mining Ilmenite with silk touch will now give the block +* Fix Chisels and Bits chisel recipe to work in 2x2 grid +* Removed ability to put ironbackpacks inside of ironbackpacks (#2402) +* Fixed Parchment advancement not triggering in some situations (#2416) +* Disabled the Uncrafter for good (#2436) +* Fixed Paperclip Factory not forming when conveyors weren't facing/moving items north (#2404) +* Fixed Orematic Mk2 and Mk3 requiring some blocks being placed in a specific orientation +* Fixed more dupe bugs caused by Cyclic Uncrafting Grinder and Cyclic Sack of Holding +* Fixed Better with Mods Saw no longer working on leaves and melons (#2428 and #2483) +* Fixed Explorer Map now showing for the Cartographer (#2480) +* Moved Galacticraft Battery and Energy Storage Module to stage 4 to allow for the Tier 1 Space Suit to be charged (#2503) +* Move sign recipe to age 0 (#2507) +* Fix Power adapter breaking instantly with no drop (#2478) +* Move Flat Bread to age 0 to match Flour (#2508) +* Fix Mekanism Tank clearing recipe giving creative tank in return (#2513) +* Fix Astral Sorcery Rock Crystal Sample not showing in JEI (#1271) +* Fixed missed recipes in ExPlant with it's uranium (#2539) +* Fixed Blood Magic bound tools being able to break in some situations +* Hopefully fix the spawn rate for Imps (#1910) +* Fixed Wither Skulls not craftable with withering souls (#2564) +* Fixed invalid recipe for a few Extra Planet things (#2575) +* Fix Car Mod Yellow Painter using the wrong dye (#2594) +* Fix Diamond Block not having an uncraft recipe back to Diamonds (#2599) +* Fix IE Bottling Machine being staged wrong (#2607) +* Fix Molten Stone exploit with melting Seared Cobblestone (#1673) +* Fix Nether Wart turning into beetroot when breaking the block below it (#1274) +* Fix Netherrack breaking into Low Grade Charcoal from explosions etc (#1941) +* Move the Tinkers Bacon back a stage to allow usage when you have Pig Iron Tools (#2614) +* Remove the Actually Additions Crafting stick in favour for the Extended Crafting version (#2198) +* Allow Leather Cordage to be made in top or bottom slots +* Blacklist Buggy Fueling pad from carry-on +* Blacklist all of PneumaticCraft from Carry-On to prevent crashes (#2651) +* Add missing Gray Wool dying recipe (#2653) +* Fix glue cauldron recipes for pelts being derpy (#2680) +* Fix Tier 4 space suit using Tier 1 armor layer (#2695) +* Fix inconsistency with the Mining Level on Nether Quartz Ores (#1782) +* Fix remove Prismarine variants from the Chisel to force the crafting recipe also fixes dupe issue (#2450) +* Remove recipe for the clay armour as we force another recipe (#1674) +* Fix recipe conflict with cocoa beans turning into dye powder instead of cocoa powder (#2386) +* Fix incorrect tooltip on Tier 4 Rocket Schematic (#1908) +* Fix missing recipe for the pipe pulsar due to the pack not having the assembler table (#2762) +* Staged Skeleton Trap Horses in Age 1 (#1611) +* Add hardness to Reinforced Coke Brick (#2784) + +Enhancements: +* Updated Privacy Policy +* Experiment 115 now grants all nutrition groups instead of only protein +* Add dying recipes for the Twilight Forest Castle Doors +* Removed the Cyclic conveyors as they are not needed and the new ones claims more Ids which we don't want to waste +* Adjusted Aevitas attunement perk and Mineralis ritual to only spawn Geolosys ores +* Added recipes for the Bronze tools added by Pickle Tweaks +* Added recipe for rice dough to the Mixer modular machine (#2447) +* Updated Better with Mods potash recipes so they are more clear +* Allow any Heavy Oxygen Tank to be used in the Oxygen Storage Module recipe (#2479) +* Allow a larger selection of cobblestone slabs for the Kiln recipe (#2482) +* Add a additional 50% drop chance for Wild Dog Pelts from Wild Dogs and also added a higher drop rate with Looting +* Added upgrade recipe for the Primal Chest Advanced to a Minecraft Chest +* Added Startlight Transmutation for Kepler Iron and Copper to Inferium and Prosperity Ores (#2514) +* Updated Desh Ore advancement to trigger on Unrefined Desh as well as Desh Ore for those that don't use silk touch (#1516) +* Add recipe to decompress arrow bundle (#1391) +* Added a recipe to turn Mud Clumps into Wet Mud blocks (#1551) +* Added Flame String to the String Ore Dictionary (#2628) +* Added recipe for the Quark Trowel in stage one +* Added recipe for the Blood Magic Crystal Cluster (#2112) +* Added grinding/crushing recipe for the Prismarine Block (#2657) +* Added recipes from the TiC drying rack to the Industrial Drying Unit (#2721) +* Added tooltips to Space Suit so players are aware of how to charge them +* Added tooltip to BWM Hibachi telling players to use a redstone signal to light +* Crafting the Tier 1 Space suit now yields a fully charged version +* Added a recipe to the ArcFurnace for Glass Panes using Pile of Sand +* Adjusted the cost for making Steel in the ArcFurnace (#1796) +* Added recipes to the ArcFurnace for Redstone Alloy and Modularium (#2437) +* Added more blocks to be classed as sealable for GC thanks to @Iorce! (#2764) +* Added Charcoal Block recipe to the Crystallizer (#2791) +* Changed the size of the Bit Bag by x4 + +Forge: 14.23.4.2707 + +Mods Added: +* Aroma Backup (2.1.1.3) +* Aroma Core (1.3.0.2) + * Needed for Aroma Backpack +* Construct's Armory (0.0.21-rc1) + * Armor add-on mod for Tinkers' Construct +* SevTweaks (0.1.0) + * Custom mod to allow more integration with mods in the pack. + +Mod Updates: +* Actually Additions (r135) +* Advanced Mortars (1.6.21) +* Antique Atlas (4.4.9) + * The Biome id fix from 4.4.8 wasn't actually merged. This was fixed. +* B.A.S.E (3.7.2) + * Fixes crash when invalid items are fed +* Bedrock B Gone (5.0-b8) + * Fixed Better Bedrock's Itemblock not registering correctly +* Better With Addons (0.41) + * Fixes a crash where BWA has been using a deprecated slipperiness method for months. +* Better With Mods (2.1.24) + * Fix server crash with HCFurnace tooltips. + * Greatly optimize the kiln, saw and turntable recipe handlers. + * Improve syncing of progress bars in UIs. + * Fix dupe with Filtered Hoppers. +* BiblioCraft (2.4.4) +* BnBGamingCore (0.8.0) + * Added Module for next Triumph update +* BNBGamingLib (11.2) + * Script parser now properly reads hexadecimal values +* Bonsai Trees (1.0.5-b77) + * Improvement: Skip loading tree shapes of unregistered trees saving a bit of memory +* BuildCraft: Builders (7.99.17) +* BuildCraft: Core (7.99.17) +* BuildCraft: Factory (7.99.17) +* BuildCraft: Robotics (7.99.17) +* BuildCraft: Silicon (7.99.17) +* BuildCraft: Transport (7.99.17) +* Carry On (1.9) + * Fixed a common issue where some blocks could not get picked up +* CD4017BE Library (6.2.4) + * Added opaqueness feature to block covers + * Added improved FakePlayer implementation +* Chisels & Bits (14.17) + * Special case air when determining colors, to prevent crashing when another mod registers their color handler for air. +* Client Tweaks (3.1.8) + * Torches will only be placed via right-click now if the offhand slot is either empty or also a torch tool +* Connected Textures Mod (0.3.0.15) +* Compact Machines (3.0.12-b215) + * Try to avoid crashing when rendering TE in machine view. This fixes e.g. crashes with PneumaticCraft and other mods. +* Cyclops Core (0.11.6) +* Cyclic (1.15.8) + * Tweaked item models for Torch Launcher, Randomizer, and Auto Torch. + * Upgraded cable models. + * Export cables now connect and pump out on all sides. + * Exchange Scepters updated to be compatible with GameStages, and working in off-hand. + * Storage Sack will now auto-close if it leaves your hand for any reason. + * Storage Sack can no longer be opened in the off-hand. + * Fix compatibility with Block Placer and Better With Mods mini-blocks. + * Fixed Wireless Receiver not dropping as a block when it gets mined. + * Fixed a dupe exploit related to Player Interface from AA. + * Brush Scythe now more compatible with special block drops (such as causing plant fibers from Primal Core now drop from grass with scythe). + * Fixed hydrator mismatching some ore dict entries (such as Biomass recipe not working). + * Fixed block transparency bug with Moon Phase Sensor. + * Greatly reduced tick lag from cables when they are empty. +* Dark Utilities (1.8.210) + * Fixed some blocks allowing torches to be placed on them when it shouldn't. +* Dung Pipe (1.2) +* Ender Storage (2.4.3.130) +* Environmental Tech (2.0.11a) + * Fixed Lightning rod spamming console with energy gen values. + * Fixed Lenses not working properly. +* Extended Crafting (1.3.7) + * Fixed combination crafting ignoring NBT + * Fixed some shaped table recipes showing incorrectly in JEI + * Added an indicator to JEI categories for table recipes with required tiers + * Moved the shapless icons in in the table crafting JEI categories + * Fixed the progress arrow in the Ender Crafter gui being incorrectly located + * Fixed combination crafting not accepting items with NBT tags when no tags are set for an input item + * Fixed lighting issues with some blocks + * Fixed items with NBT not working in combination crafting recipes that don't require it + * Fixed the Automation Interface outputting only stacks of 1 when auto crafting + * Fixed the Automation Interface ignoring NBT when outputting during auto crafting +* Extra Planets (0.3.8) + * See: https://minecraft.curseforge.com/projects/extraplanets/files/2564038 +* Farming for Blockheads (3.1.17) +* Farseek (2.3) +* Fast Workbench (1.5.0) + * Contains a compat fix for a mod interaction bug between FW, RealBench, and AA. +* Forge MultiPart CBE (2.4.2.58) +* GameStages (1.0.86) +* Geolosys (1.9.2) + * ADDED: Ore-swapping: replaces other mod ores with Geolosys ones after they've generated (like for Twilight Forest). + * ADDED: Compatibility for Astral Sorcery's Infused Crystal Pickaxe. + * FIXED: Various crashes with field manual. + * FIXED: Dimension Blacklisting issues with custom entries +* Hwyla (1.8.26-B41) + * Don't attempt to render the overlay if the tooltip is somehow null. + * Add a config to render current state values in the tooltip. + * Reduced network usage by the villager handler. +* Horse Power (2.6.1.64) + * Added needed area visualisation when placing HP blocks + * Fixed not using correct item for jei catalysts, issue with itemstages +* Immersive Tech (1.3.10) + * Fixed BlockITMultiblock.getPickBlock() null pointer issue +* Improved Backpacks (1.2.0.3) + * Fixed duplication glitch + * Open backpack hotkey now works for Baubles slot + * Backpack in Baubles slot now shows on you (you definitely should check out chestplate backpack combined with baubles backpack) +* Industrial Foregoing (1.9.2-173) + * Black Hole Tank Block now changes color depending of the fluid it contains + * Black hole unit extract button now respects stack sizes + * Mob Crusher and Mob Slaughter Factory do same amount of damage + * Improved fluid handling + * Improved tank color handling + * Mob duplicator and Animal Sewer shouldnt waste power anymore + * Fixed Enchantment Extractor not splitting enchanted books + * Tree fluid extractor no longer resets progress when the wood is broken +* Inductive Logistics (1.2.3) + * Pipe model parts and contents hidden under opaque covers is no longer rendered (the server won't even send update packets for them) for performance improvement. + * Item Placer crash with vanilla blocks that have GUIs. + * Pipe connection issues with immersive multiblocks and potential other TileEntities that take time to initialize after load. + * Fixed div / 0 crash when Portable Autocrafter tries recipes with empty stacks as result + * Fixed server & client thread race condition on 'RECURSION' flag in Overflow Trash +* Integrated Dynamics (0.11.12) + * Fix incorrect regex_groups operators output type. +* Just Enough Items (4.9.1.196) +* KleeSlabs (5.4.10) +* Mekanism (9.4.11.346) +* MJRLegends Lib (1.1.4) +* Modular Routers (3.1.5) + * Fix item dupe with Dropper/Flinger in some circumstances. +* ModTweaker (4.0.12) +* Mystical Agriculture (1.6.10) + * Added PneumaticCraft crops: Compressed Iron +* No Recipe Book (1.2.2) +* Overloaded (0.0.52) + * Multi-Tool now gives better error message when unable to break / place +* PrimalCore (0.6.56) + * Fix Barrel Crash with FBP + * Fix Side sensitive Capabilities for Cauldron and Fish Traps +* Primal Tech (0.3.3) + * Added overlooked world side check - should stop fire sticks spamming the server with packets. +* PneumaticCraft: Repressurized (0.6.6-192) + * Fix: crash when crafting Speed Upgrades in some situations. + * Fix: Gas Lift now works with infinite fluid blocks such as Better With Addons Aqueducts. + * Fix: crash when right-clicking some PneumaticCraft blocks with other mods' wrenches +* ReAuth (3.6.0) +* Reborn Core (3.5.8.293) +* Reborn Storage (3.1.0.50) + * Fix IO port lag + * Add IO Port + * Add IItemHandler capability to TileMultiCrafter +* Redstone Flux (2.0.2.3) +* Refined Storage (1.5.34) + * Allow crafters to be daisy-chained. + * Empty patterns can no longer be inserted in the pattern result slot in the Pattern Grid with hoppers. + * Added OR search operator to the Grid with "|". +* Rustic (1.0.5) + * Possibly fixed some bugs +* RebornCore (3.8.7.295) +* Scannable (1.6.3.19) + * Fixes potential crashes/issues due to some mods still using null instead of ItemStack.EMPTY. + * Disable debug logging of failed item lookups by default, add config to allow enabling it. Fixes potential timeout when first +* SevTweaksNPC (0.0.4) + * ( ͡~ ͜ʖ ͡°) +* Simple Generators (2.0.11a) +* Steve's Carts Reborn (2.4.19.99) + * Fixed fluid manager not moving on when constantly using up the carts tanks. + * Rail remover fix for activator block. + * Fixed usage of wrong resize method for aabb, fixed recipe for cart assembler. +* Streams (0.4.4) +* Tinkers Construct (2.10.0.84) + * Implement a FastWorkbench approach in the Crafting Station. This should help with big modpacks with lots of recipes + * Fix faucets trying to drain from the wrong side + * Several smaller fixes/changes that got lost in translation + * Try to impliment FastWorkbench +* Tinkers' Tool Leveling (1.0.5) + * Fix a rare crash when having a level up at the same time as dropping your weapon. +* Toast Control (1.6.0) +* Triumph (1.13.0) + * Added support for new Better Advancements options +* Twilight Forest (3.7.424) + * See: https://minecraft.curseforge.com/projects/the-twilight-forest/files/2561393 +* ValkyrieLib (2.0.11a) +* Wawla - What Are We Looking At (2.5.257) + * Fixed horse speed and jump strength not showing. #93 + +--------------------------------------------------------------------- + +3.0.7 + +Bug Fixes: +* Downgraded the Scannable mod to eliminate players getting kicked out of their first world join +* Added DarkLands wood slab to the ore dictionary (#1627) +* Fixed Arrow heads/bows being staged incorrectly (#964) +* Fixed Shields being uncraftable in the Smeltery due to incorrect staging (#944) +* Removed the Primal Dust bin (#841) +* Fixed incorrect recipes for Reborn Storage Storage Parts (#1635) +* Fixed Minecraft Cookie being incorrectly staged. +* Fixed Abyssalcraft Wasteland ores not being staged/masked correctly (#1625) +* Fixed Diamond Tools staging for recipe showing (#902) +* Fixed Skeletons being immune to Cacti and Punji Stick damage (#1419) +* Fixed the Saturn and Neptune advancements not triggering when entering the dimension (#1599) +* Fixed the Creative Tank Advancement triggering incorrectly (#1743) +* Better With Mods Leather Straps now have a recipe (#1736) +* Fixed incorrect advancement name for Compressor in stage 4 +* Disable Quark's hotbar swap feature to prevent carry-on bugs (#1623) +* Removed the Astral Sorcery marble slab recipe/block from JEI until it's completed in the mod itself (#1608) +* Fixed broken compressed steel recipe for the Compressor (#1687) +* Fixed Tartaric Forge recipes (#1341) +* Added more tiles to Carry On blacklisting (#1590, #1610, #1630, #1770, #1824, #1804) +* Remove melting for Merchant to prevent infinite blood exploit; also gave villagers the same treatment (#1487) +* Fixed some logs missing plank conversions (#1861) +* Removed Diamond creation from the Pneumaticraft Pressure Chamber (not supposed to be available in this manner) +* Fixed the Mob Grinding Utils Saw to not require a diamond +* Fixed the Wicker in the Compost recipe to not require stage one +* Removed Carry-on allowing the pickup of Improved Backpacks +* Disabled MouseTweaks WheelTweak config...again. +* Fixed broken recipe for Chemical Injector (#2000) +* Inconsistent behaviour with barley (#1966) +* Fixed being unable to craft Drying Rack with Yew slabs (#1944) +* Fixed dupe recipes for the Map (#1798) +* Fixed Quantum Storage Crate being hidden in JEI (#1967) +* Fixed Crystallized Obsidian armour being staged incorrectly (#1477) +* Fixed recipe for Fire Charm due to staging (#1807) +* Fixed missed recipes for CarMod (#1852) +* Fixed "Broken" tooltip from displaying on the Bound Blade +* Moved raw and cooked ghast meat to age 2 from 3 (#1793) +* Removed default recipe left in for Mechanical Squeezer (#1795) +* Fix Bio-Mash not being able to be crafted in player inventory and in any 2x2 area of grid (#2019) +* Fix End Crystal advancement +* Disabled Liquid Coralium Transmutation to prevent massive lag (#1915) +* Disabled Buildcraft fluid shards to prevent a dupe (#1602) +* Fixed recipe for Filtered Buffer (#2014) +* Fixed missing processing recipe for Ilmenite ore in the crusher (#1411) +* Removed Automatic Fishing Net from villager trades (#2037) +* Fixed staging for Elemental Inscription Tool: Dusk and hide Efficency Rune (#1075) +* Fixed staging on various Blood Magic items (#1238) +* Fixed staging on Charcoal piece (#1248) +* Fixed old recipe not being removed for Arcane Ashes (#1779) +* Fixed incorrect staging for Electrum/Constantan (#1517) +* Remove slimeball dupe (#2040) +* Fixed Lonsdaleite Cystal being missing in the Environmental Tech config (#1708) +* The Ladder recipe now gives 3 instead of 1 +* Switched the Unfired Porcelain millstone recipe to require white dye instead of bonemeal to stop a conflicting recipe interfering with progression +* Added recipe for sextant (#1995) +* Fixed staging issue with some light Oxygen Tanks (#2098) +* Fixed recipes and staging issues with Cyclic baubles (#1994) +* Removed casting recipe for Furnace Controller as it breaks progression +* Fixed titanium shards dropping on GC ores which had no use (#1455) +* Remove & hide and printing press until the mod is updated/fixed (#1429) +* Fixed Immersive Engineering Excavator not harvisting ores as expected (#2008) +* Moved the incorrectly item staged Stone Builder's Wand to stage 1 where it belongs +* IE Crusher gives proper dye from wool -> string recipes & AA Crusher gives proper dye from flower -> dye recipes (#593) +* Removed useless ironpane group from chisel +* Removed some recipes of items that dont exist +* Blacklist Compact Machines from Carry-On (#2193) +* Removed conflicting Arc Furnace recipes (Any that used a metal dust as a primary item) +* Fixed issue with mining Redstone ore with Silktouch not giving the correct ore block (#1875) +* Fixed Iron duplication exploit involving Iron Bars in the Stoked Crucible (#2187) +* Moved the Cyclic Dungeon Finder item to stage 3 and staged its recipe properly +* Fixed Creative Jetpack Thruster being incorrectly staged (#2227) +* Fixed Ender Crafter advancemnt triggering without both items being crafted. (#2209) +* Fixed Autunite not being detected by the Ultimate Prospector (#1895) +* Fix "Ender Alloy" advancement triggered on wrong ender alloy (#2240) +* Fixed Astral Sorcery Aevitas attunement converting stone into ores that should not be accessible. (#1240) +* Fixed an incorrect tooltip on the Inductive Logistics autocrafters to say stage 4 instead of 3 +* Fixed the Cyclic Slow Slime Conveyor being staged incorrectly +* Removed dying wool in the Crucibal to correct a duplication bug +* Removed Elytra recipe from the Abyssal Craft Materializer since it was craftable in stage 3 +* Added Mekanism cables and pipes to the carry-on blacklist to prevent potential crash +* Modified Containment Chalice recipe and pushed it back to age 3 (#2256) +* Re-Staged and changed the recipe for the AS Exchange Wand (#1005) +* Fix blood being staged wrong (#1168) +* Allow the Wild Dog to be spawnable in the RFTools Spawner (#2150) +* Remove Leather recipes from the Drying Basin (#2107) +* Disable AE2 Formation Plane Entity spawning until a fix is made in regards to spawning +* Re-Stage Containment Chalice to stage 3 (#2556) + +Enhancements: +* Doubled the chances of vanilla style dungeons to spawn in the Beneath Dimension +* Increased the drop chance of bones for most passive and hostile animal mobs +* Blazes and Endermen drops are now affected by looting +* Added the Ring of Ascent to 100% chance drop from Betweenlands Bosses and a small chance to drop from Pyrads, Peat Mummies, Wights, Gas Clouds, & Tar Beasts +* Lowered the creative tank recipe Blood Tank requirement to level 10 instead of 16 +* Added a stage 2 recipe to create Astral Sorcery Stardust using Blood Magic +* Removed the Industrial Foregoing Fisher machine since it was not usable due to the fishing table being cleared (#1760) +* Added an Advancement to alert players on how to create a Nugget Cast +* Altered the recipe for the RFTools Machine Base for consistency +* The Market recipe was changed yet again +* Added an advancement for creating and using End Crystals in stage 4 +* Added prismarine drops to mobs primarily located in the Dark Forest Maze (the one with the Knight Phantoms) +* Added an Advancement to alert players that Sea Lanterns can be used as Blood Magic Tier 3 Altar Caps +* Added an Advancement for the Galacticraft Oxygen Collector Fuel method +* Created a Steve's Carts Singularity +* Added a recipe to the Creative Tank to clear the liquid out of it +* Re-added the transmutation recipe for Starmetal Ore (#1792) +* Added crusher recipes for Salt block to dusts (#1717) +* Added clay block creation to the press (#1734) +* Added Chisel support for some of the Betweenland stones (#1686) +* Add Totempedia to Bibliocraft bookshelf (#1840) +* Created a Modular Machine for Paperclips +* Added a new recipe for the Creative Flight Modifier +* Tweaked the Supremium Armor Boot recipe +* Added glue recipe for Buffalo hide to the Cauldron (#1851) +* Added glass recipe to the ArcFurnace (#1858) +* Added all Geolosys ore to the Scannable Config in the proper category (rare & common) +* Removed the Scannable Structure Card. It was not picking up any structures and is a useless item +* Added Improved Backpacks and Shulker Boxes to the Iron Backpacks Blacklist so you cannot nest backpacks +* Increased the Y level range for the following Geolosys Veins: Coal, Rock Crystal, Gold, Lapis, Quartz, Kimberlite, Limonite, Malachite +* Add Environmental Tech JEI Descriptions and tooltips to Lightning Rod and Nanobot structures (#1592) +* Added recipe for Porcelain to the Industrial Mill (#2002) +* Allow Fiery Tears in Lava Crystal recipe (#1975) +* Fix the immersive engineering windmill advancement typo (#1845) +* Enabled rustic clay walls and staged in (#1822) +* Added recipe to convert Raw PigMan hide to salted hide (#1787) +* Added tooltip to the Quarry/Miner about usage in Space (#1452) +* Added Valus Melon to staging (#1349) +* Added more books to the ImmCraft Bookshelf (#1368) +* Added tooltip to the Creeping Moss on how to use it (#1968) +* Disabled Black Quartz from BWM (#1937) +* Added Betweenlands Infuser & Mortar to CarryOn blacklist (#1935) +* Diabled the BWM Manual being given by the mod via the config (#1724) +* Removed the Wolf Ash from JEI as we don't have a use for it. +* Added usage for the Wolf Head (#851) +* Changeds Starlight Advancement to use right click on the upgraded table (#978) +* Added tooltips to the GC rocket schematics to help users on what planet to find them (#2052) +* Added more foods to Cooking For Blockheads (#2051) +* Moved the Blood Magic Sentient sword to Stage One and gave it a new recipe +* Added support for any bucket type in Astral Sorcery recipes (#1809) +* Any unsupported plank type for barrels will now make an Oak Barrel (#2085) +* Disabled the Cyclic Shear block to force the path in the pack. (#2106) +* Added more food items to Nutrition (#2017) +* Changed durability on the Dog Boots +* Fixed staging on Iron Matchpick (#1503) +* Removed recipe for Reinforced Mesh (#1415) +* Added Black Iron recipe to the Arc Furnace (#1416) +* Added more seeds to be pressed into dirt +* Disabled the Extra Planets Radiation Mechanic +* Added Death Compass drops to Player Skinned mobs +* Add flower crushing recipes to Mekanism crusher (#1665) +* Add Bronze Ingot alloying to Arc Furnace (#1665) +* Added a Modular Machine to allow faster Compressed and Heavy Duty Plate Creation for stage 5 +* Added an Advancement to alert players of the Spawner Seeker and its helpfulness when locating Galacticraft Dungeons +* Set Quark deposit to chest default behavior to stack with existing instead of dumping your entire inventory (#2231) +* Added The Betweenlands limestone to oreDict (#2196) +* Adjusted the Astral Sorcery Aevitas attunement hunger and saturation per tick +* Re-add Minecraft wool dying recipes +* Ore Changes: + * Ore processing has been changed in this version. Many processing recipes have been removed in favour for other mods and/or had values + tweaked. Processing is now performed on a Tier system starting with basic machines to top tier machines. With this update we have a new + Modular Machine which enables easier Ore processing this is based on the Mekanism spec but does not require all the normal machines as + you'd normally needed. Also you grain the secondary outputs for valid ores. So your getting more Dollars per Bill! All the recipes are + listed in JEI. Note however due to how the JEI is built for Modular Machinery the UI is not scaling correctly this may be solved in a + later update but we'll post on the Wiki the power usage/conversions for the machines to give more details. +* Added Twilight Forest to the Betweenlands Portal whitelist (#2205) +* Re-Stage the chisel to better suit the villager trade and enables players to start being creative eariler (#2258) + +Mods Added: +* BuildCraft: Silicon (7.99.16) + * Needed for the .16 update to BuildCraft to keep the plugs/facades. +* FindMe (1.0.1-5) + * FindMe allows you to search for items in nearby inventories by pressing a key. For that you simply need to hover over an item (JEI Compatible) and press "Y". +* MystAgrad Cloche Compat (1.2) + * Add support for Tier 6 seeds in the Cloche. +* ReAuth (3.5.2) + * Fixes the Problem of having to restart your Client when your Session is invalid +* Just Enough Petroleum (0.1) + * Adds JEI support for Immersive Petroleum +* Bedrock B Gone + * Flattens Bedrock in the Overworld, Nether, Twilight Forest, and Hunting dimensions +* Nature's Compass + * Added the Nature's Compass mod to help players better locate certain Biomes + +Mod Updates: +* Forge: 14.23.3.2678 + +* AbyssalCraft (1.9.4.9) + * Many Changes See: https://minecraft.curseforge.com/projects/abyssalcraft/files/2551262 + * Also: https://minecraft.curseforge.com/projects/abyssalcraft/files/2553883 +* Actually Additions (r134) + * Worm should no longer attempt to post a UseHoeEvent on farmland. + * Only items with FE capability can be placed in the energizer. + * Oil generator outputs now properly scale with configured values. +* Animalium (0.3.7) + * Increased Bear Claw Paxel's mining speed on blocks that harvest slower to make it faster than punching them. + * Removed Flying Cake Monster spawning on Darkosto's Birthday due to it constantly spawning. +* Antique Atlas (4.4.8) + * Fixes unknown biome id crashes (Thanks The-Fireplace) +* Astral Sorcery (1.8.10) + * Tonnes of fixes! +* AutoRegLib (1.3-17) +* Better Advancements (0.0.7.42) +* Better With Addons (0.40hotfix) + * Fixes another stray CME from hardcore packing. It just keeps happening. + * Fixes two crashes with getBlockFaceShape. Oops. + * Fixes Aqueduct Water acting like a fluid tank and adds a config option to preserve that behavior + * Fixes Mooshrooms fissioning into two cows and 10 mushrooms. + * Fixes Saplings not breaking instantly because they were trying very hard to be leaves instead probably + * Fixes Greatarrows crash when impacting Biomes o Plenty soil (for how much shit i gave them about the farming crash i make a lot of the same mistakes) + * Fixes Paper Lantern recipe missing entirely + * Fixes cullfaces on recessed Tatami Mats aka they'll look better when combined with other slat block +* Better With Mods (2.1.15) + * Fixes NPE when Kiln has invalid heat source + * Fixes NPE when mods add null oredict names + * Fixes crash when placing a waterwheel in forge fluids (Oops) + * Internal Changes for CT integration +* Betweenlands (3.3.8) + * Workaround for Intel graphics driver crash + * Fixed some block models causing crash when non-forge lighting pipeline is used + * Fixed double tall underwater plant stalks not breaking when flower is broken + * Fixed Mortars not saving their rotation + * Fixed changing translation causing crash when opening Herblore book + * Fixed Valonite Shield causing crash when charging into each other + * Fixed world locations sometimes not syncing properly when teleporting +* Blood Magic (2.2.10-97) + * Fixed a client side null-pointer exception with the Blood Lamp + * It's a bright idea to fix this as soon as I can. + * Fixed a server crash when handling dye recipes + * Fixed a crash when trying to use unbound toggle-able sigils in the Sigil of Holding + * Fixed Turret Array crash on servers. + * Fixed the Blood Altar so it can actually fill Blood Orbs (derp). + * Fixed the Alchemy Array from voiding items when broken when it shouldn't have. + * Fixed Blood Tank NBT transfer between item/tile form. + * Fixed Hellfire Forge and Alchemy Table's shape-crafted-ness. + * Fixed the Living Armour Upgrade that provides night vision, so it is no longer as finicky. +* BNBGamingLib (2.11.1) +* Bonsai Trees (1.0.4-b71) + * Breaking a bonsai pot with an axe is now faster + * Fix crashes/issues caused by always returning a capability even when it shouldnt. +* Bookshelf (2.3.544) +* BuildCraft: Builders (7.99.16) +* BuildCraft: Core (7.99.16) +* BuildCraft: Factory (7.99.16) +* BuildCraft: Robotics (7.99.16) +* BuildCraft: Transport (7.99.16) +* Caliper (1.1.35) +* CD4017BE Library (6.2.3) +* Ceramics (1.3.4) + * Minor tweaks and fixes. +* Code Chicken Lib (3.1.7.341) +* Compact Machines (3.0.10-b207) + * Fix NPE when tunnels are being checked on the client side + * Only consume one catalyst item instead of the whole stack +* CraftTweaker (4.1.8) +* Cucumber (1.1.0) + * Add guide book system POGGERS +* Cyclic (1.14.9) + * Sleeping mat now correctly dismounts for you if you try to sleep on the saddle. + * Emerald Carrot retextured and renamed as Infected Carrot - new recipe, same effect. + * Fixed a small glitch where Auto Crafter fuel slot would not consuming items when fuel is at zero. + * Added a small optimization to network traffic on player join (Thanks to darkh4x). + * Fixed a dupe bug with certain items that have durability. +* Death Compass (0.0.3) + * Added a Time and date stamp to the compass so people know which is which when +* Default Options (9.2.7) + * Fixed crash on keys with colons in their names +* Dimensional Control (2.10.2) +* EnderUtils (0.7.8) + * Add a Pet Contract item, which allows changing the ownership of tameable mobs + * Add camouflage ability to the Barrel + * Add Portal type Link Crystals, allowing Portals to be "paired" + * Fix/improve some Drawbridge retraction/extension logic issues (which blocks get taken/placed in which situations) + * Fix camouflage model overlays on items (elevators) + * Fix some items always eating the keybinds even when they don't have any + * Update some registrations to new Forge events (now requires Forge 2571+) +* Environmental Tech (2.0.9c) +* Extended Crafting (1.3.1) + * Fixed the arrow in the Quantum Compressor GUI not rendering properly for recipes with large power requirements + * Fixed the Quantum Compressor ejecting ItemStacks with larger than max stack sizes + * Fixed the Quantum Compressor overwriting NBT tags +* ExtraPlanets (0.3.3) + * Fixed a few Server/Client packet handling issues + * Fixed player spawning in liquid when re-spawning after death + * Fixed NullPointerException +* Fancy Block Particles (2.4.0) +* Farming for Blockheads (3.1.12) + * Change the feeding trough range to five blocks + * Fix the feeding trough prioritizing certain animals over others, it should be more natural now + * Fix merchant falling sound not playing for other players in multiplayer +* Ferdinand's Flowers (1.10.1b) + * Hopefully fixed a naming issue- found & fixed 2 mistakes (Issue #2) +* Foamfix (0.9.9.1) + * Fix invalid Forge dependency + * #137] Fix 3D item models not rendering correctly (for example Silent's Gems shields) +* Forge MultiPart CBE (2.4.1.57) + * Fix world being null on part load +* Galacticraft Core (4.0.1.176) +* Galacticraft Planets (4.0.1.176) +* Hunting Dimension (1.0.24) + * Added a cache system for frame variants. Also removed non full blocks from the candidate list. + * Fixed setting spawn or sound chance to 0 causing a crash. +* Immersive Engineering (0.12-82) + * See: https://minecraft.curseforge.com/projects/immersive-engineering/files/2554650 +* ImmersiveTech (1.3.8) + * Fixed Boiler crash + * Changed the distance parameters for the Solar Tower and the Reflectors +* Improved Backpacks (1.2.0.2) + * Fixed backpacks does not have tooltips + * Fixed Stack Overflow Crash + * Backpacks are now equipable in the chest slot or as a bauble + * When worn on chest backpacks can be opened with a keybind + * Optimized updating backpack tile entities on clients +* Industrial Foregoing (1.8.10-143) + * Added support for the Adult Filter in the Mob Slaughter Factory + * Added Right Click Harvestability to cocoa beans as no other mod adds it so the Plant Interactor can harvest them. + * Animal rancher will stop shearing animals if the inventory is full + * Fixed a crash with the enchantment extractor +* Inductive Logistics (1.2.1) +* InControl (3.8.0) +* Industrial Foregoing (1.9.0-163) + * Fixed Server Side Crash with the Mob Crusher + * Fixed Fluid Dictionary Converted working when no fluid was selected + * Fixed server side crash +* Integrated Dynamics (0.11.11) + * Fix Refined Storage autocrafting writer aspects not working + * Fix Mechanical Squeezer crafttweaker crash + * Fix networks with no active elements not being properly reloaded + * Fix formatting typo in value types book section + * Fix memory leak and stackoverflow due to cloning of positioned iterators, Closes #568 +* Iron Backpacks (3.0.7-10) +* Iron Jetpacks (1.0.4) + * Fixed an issue with HUD rendering +* Just a Raft (1.1.2) + * Should fix a really rare crash where it gets an integer where it should get a float. +* Just Enough Items (4.9.1-175) +* KleeSlabs (5.4.9) + * Fixed Betweenlands single slabs not being breakable + * Added missing Betweenlands slabs support +* Mantle (1.3.2.24) + * Fix Heart rendering with >120 hearts. It'll loop correctly now. However if you actually had more than 120 hearts, you should take a break and reconsider your life choices. + * Fix book crashing when trying to render a missing item (at least in some instances) + * Make getSubBlocks also available serverside (pre 1.12 leftover) +* Mekanism (9.4.10.345) + * Make Universal cables ForgeEnergy a bit more cross mod friendly + * add factories to jei catalysts if enabled +* Micdoodle Core (4.0.1.176) +* Mob Grinding Utils (0.3.6) + * Complete re-code of the mod registries - under the hood changes that needed doing. + * Removed old legacy code and classes and rejigged a few bits. +* Mod Tweaker (4.0.10) +* Modular Machinery (1.9.4) + * Fixed problematic handling regarding I/O of fluids and energy leading to problematic interactions when I/O conditions were not fulfilled + * Fixed Mekanism Gas integration not properly handling input/output checks +* Modular Routers (3.1.4) +* Mystical Agradditions (1.2.8) + * Added a JEI description for Dragon Scales + * Fixed the Insanium Ingot harder recipe using the wrong essence +* Mystical Agriculture (1.6.9) + * Fixed Superium armor not having step assist (and Prudentium armor having it instead) + * Fixed Prudentium armor's model being messed up +* Natura (4.3.2.49) + * Flowers can now be able to placed on Topiary Grass + * @SideOnly has been removed from getSubBlocks +* Ore Excavation (1.4.118) + * Fixed shears not working under particular settings + * Fixed ghost blocks showing up after some excavations +* OreExcavation Integration (2.3.3) +* Overloaded (0.0.51) +* PickleTweaks (2.0.16) + * Fixed some tooltips having the wrong colored text with the latest Cucumber Library + * Make only layer 0 of the repair kit texture get colored + * Fixed repair kit texture being flat +* Placebo (1.3.4) +* Playerskin (1.0.5) + * Fixed issue with blank loot table spamming servers +* PneumaticCraft: Repressurized (0.6.3-186) + * Fix: Server crash when Spawner Agitators are used in conjunction with the Despawning Spawners mod. + * Fix: Omnidirectional Hoppers now respect the sidedness of the block they pull from + * Plastic Mixer JEI page now uses Ore Dictionary to show the dyes instead of hard-coded vanilla dye items. + * Fix: client crash when looking at RFTools Powercells with the Pneumatic Helmet Block Upgrade Tracker active. +* Power Adapters (1.0.9) + * Fixed power input and output being wrong + * Fixed block accepting power even if it's full (#1745) +* Prestige (1.0.15) +* PrimalCore (0.6.53) + * Charcoal Stacks now have a slight variation in the output grade + * Fixes for various plants and certain primal blocks not getting along during WorldGen +* Quantum Storage (4.5.0) + * Fixed z-fighting on new crate model. + * Added new models for the Crafting machine and Crating machine. + * Added Quantum Bag (Works like EE2 Alchemical Bags) + * Fixed some partials not working after model change. +* Realistic Item Drops (1.2.12) +* RebornCore (3.8.1.271) +* Reborn Storage (3.0.6.43) + * Added support for crafter manager +* Refined Storage (1.5.33) + * Added Crafter Manager + * Fixed Grid not always using all combinations when using JEI autocompletion + * Increased Grid performance +* Refined Storage Addons (0.3) + * Fixed stack-crafting in the Wireless Crafting Grid (crafting table) causing lag on a dedicated server +* Rustic (1.0.4) + * Fixed a crash from drinking wine or wildberry wine of low quality +* Smooth Font (1.15) + * Added clientSideOnly property + * Fixed the issue that a blank page texture is not loaded correctly. +* Spartan Shields (1.4.1) + * Minor tweaks and recipe fixes. +* Tesla Core Lib (1.0.14.10) +* Tinkers Construct (2.10.0.75) + * Note: This is an Alpha build but contains an possible fix for OreExc. +* Tinkers Complement (0.2.3b) + * Fix crash from melter without a heating source + * If the melter previously held solid fuel, that is now cleaned upon switching to liquid fuel + * Tweaked manyullyn armor to be more tough and provide less defense + * Fix missing repair material for manyullyn armor + * Fix temperature in the melter GUI not matching JEI +* Tinkers' Tool Leveling (1.0.4) + * Harvesting crops with kama/scythe rightclick grants xp + * Fix crash with recursion with modifiers like PortlyGentleman from PlusTic +* Toast Control (1.5.0) +* Totemic (0.11.1) + * See: https://minecraft.curseforge.com/projects/totemic/files/2551386 + * Changed Totem Pole textures, now with paint + * Totem Poles can now face in any direction + * Totem Torch can no longer be placed in midair, and can be washed away by liquids + * Fixed weird behavior when trying to place blocks on top of Totem Torch +* Tomb Many Graves 2 (4.0.3) + * Should fix all issues with users getting the grave as a block (the block item no longer exists). + * Death item lists should now automatically enter the players' inventories upon respawning after death +* Traverse (1.5.3-58) + * Fixed a crash issue + * New Desert Shrubland biome + * Fences and fence gates now have ore dict names + * Chickens now spawn in Crag Cliffs instead of pigs + * New Arid Highland biome - hilly desert with acacia trees and a bit of grass (TEMP: Biomes.DESERT) + * New Thicket biome - dense forest with a coarse dirt and grass floor (TEMP: 0.8F Extends Biome) + * New Rocky Plains biome - a less flat plains with patches of rock and greener grass (Idea suggested by MechWarrior) (TEMP: 0.9F Extends Normal Plains) +* Triumph (1.12.0) +* Trumpet Skeleton (1.0.2.1) + * Fixed issue causing crash on dedicated server. + * Added parrot imitation sounds for Trumpet Skeletons. +* Tumbleweeds (0.4.5) + * Mod items now work in configuration + * Tumbleweeds now always travel north-west +* Uppers (0.0.6) + * Fixed redstone deleting contents on occasions +* Waddles (0.6.0) + * Rewrote registry system + * Added config option for what biomes penguins can spawn in, based on BiomeDictionary types + * Fixed penguins returning null in getLootTable, which broke compatibility with loot table mods +* WAWLA (2.5.256) +* Water Control Extreme (1.0.2) +* Wither Skeleton Tweaks (2.6.0) + +--------------------------------------------------------------------- + +3.0.6 + +Bug Fixes: +* Fixed a Better With Mods Turntable crash. This should also allow you to get back into your worlds that were crashing on load +* Added a number of Betweenland blocks to the Geolosys whitelist allowing ores to overwrite those blocks +* Added back the extra Mulberry Structure that was lost in 3.0.5, sorry! + +Mod Updates: +* Environmental Tech (1.12.2-2.0.9c) + * Update to, hopefully, fix a crash experienced by players + +* There is a known bug with being kicked back to the title or server screen after loading into your first world and sometimes after gaining/losing advancements/stages. We are looking into it. You should be able to join the world back with no issues after this happens. + +* Dimensional Control has updated and added a new default worldgen. Among removing a few extra biomes and moving some biomes to their proper temperature zone, oceans have been further reduced. YOU DO NOT need to start a new world. Existing worlds will keep their generation type and only new worlds will inherit the new changes. This is not really a bug fix or critical change. It is mostly an enhancement meaning you can start a new world if you want. + +--------------------------------------------------------------------- + +3.0.5 + +* There is a known bug with being kicked back to the title or server screen after loading into your first world and sometimes after gaining/losing advancements/stages. We are looking into it. You should be able to join the world back with no issues after this happens. + +* Dimensional Control has updated and added a new default worldgen. Among removing a few extra biomes and moving some biomes to their proper temperature zone, oceans have been further reduced. YOU DO NOT need to start a new world. Existing worlds will keep their generation type and only new worlds will inherit the new changes. This is not really a bug fix or critical change. It is mostly an enhancement meaning you can start a new world if you want. + +Bug Fixes: +* Move Galacticraft's Tin Canister recipe to age 4 (#1201) +* Remove 4x rice slimeball recipes (#1241) +* Re-add Liquid Slime recipe (#1212) +* Altered the Y level advancement description for Hematite ore (#1206) +* Removed erroring items in the Tumbleweed drop list (#946) +* Fixed the incorrect beach entry and added a few new biomes to the infinite water list (#1204) +* Removed the Bauxite Entry from the Tough Dowsing Rod list (#1124) +* Added the remaining flowers from Ferdinand's Flowers to the crusher lists to make dye (#1110) +* Added back the Cyclic Block Placer since it was accidently hidden from JEI (#1129) +* Due to recipe and staging issues, Rocket Fuel was unable to be created. The Oxygen Collector recipe is now correct and the oxygen can be mixed with Kerosene in the Immersive Engineering Refinery to fuel Rockets +* Fixed an incorrect prospector tooltip to say 48 block range instead of 32 +* Properly moved Silicon back to stage 4, should be available to use now (#1008) +* Moved wooden basin's item stage from 0 to 1 to align with the recipe. (#866) +* Removed pigman hide (#794) +* Removed reference to Osmium in Platinum Ore tooltip +* Fix stage 5 root advancement not triggering (#1199) +* Fixed Nether Brick Stairs being unbreakable when using Tinkers Pickaxe or Hammer if in a certain orientation (#1331) +* Fixed Mystical Agriculture Soulstone being unbreakable when using Tinkers Pickaxe or Hammer (#1363) +* The PrimalCore Flint Axe has a tooltip to alert players that it cannot be repaired (#807) +* Fixed a number of advancements with broken entries +* Fixed Wolf Chop not being able to be cooked in the Fire Pit (#1262) +* Fixed Clear Glass recipe conflict with Glass Chunks (#1310) +* Fixed Mekanism Cardboard box staging issue (#1330) +* Fixed barley flour not being able to create dough (#1216) +* Fixed RebornStorage Invalid Recipes (#1401) +* Fixed Elite Crafting Table staging issue (#1461) +* Fixed Bark from BWM not being usable in the Mill Stone (#1449) +* Fixed recipe issue in regards to staging for the Mechanical Squeezer (#1453) +* Made a mistake and used the incorrect brick on the Uncrafting Table. The recipe should now be fixed (#1063) +* Remove Villagers melting into Emerald in Tinker's smeltery +* Disabled the exploit of using the Farming for Blockheads Merchant as a way to collect Life Essence in Blood Magic +* Added Translocators to the Carry-on blacklist (#1489) +* Removed Natura blue dye from the dye oredict +* Remove broken recipes for Pneumaticcraft drone (#1457) +* Remove infinite Blaze Powder/Rod recipe from Integrated Dynamics Mechanical Squeezer (#1300) +* Fix Mekanism Enrichment chamber recipes for dirty dust giving the wrong dust (#1427) + +Enhancements: +* Added the ability for llamas to pull Astikoor Carts (#1242) +* Added some text to the Aqueduct advancement letting players know completion is on placement and not crafting +* Increased the max height of Black Quartz in the Beneath from 20 to 100 +* Added an Advancement for Power Adapters to alert players (#1332) +* Added some tooltips to the Totemic Red Cedar items/blocks to help players understand where to acquire them +* Removed the limitation of only being able to move mob spawners at stage four +* Because of whining, squids +* Increased the minimum number of Fiery Blood dropped from a Hydra to 16 (#1275) +* Lowered the mining level of the Astral Sorcery Tables so players do not accidentally break them when trying to complete advancements +* Slightly increased the spawn rates of the Shoggoth Lairs +* Allowed Betweenlands Sulfur torches right-click functionality with a pickaxe in main hand (#1437) +* Added Betweenlands Rotten Food to drop from most Betweenlands mobs so players can complete the rotten food advancement (#1359) +* Added Stage 1 crafting for the strainer to use a chest as well as a Immersive Craft Chest (#) +* Shoggoths will now always drop at least 3 Shoggoth Flesh when killed +* Added a new method of collecting Shoggoth Flesh from villager trades in case Shoggoth's stop spawning due to finite spawning +* Slightly increased village spawn rates +* Added a Shoggoth Flesh trade to the Farming for Blockheads Market +* Moved the Farming for Blockheads Market to stage one +* Regenerated the Smooth Font config, you may need to redo your personal settings if you made any changes +* Disabled Cyclic Inventory Shift Keybindings to both help players with a sticky key issue and to stop an exploit (#1451) +* Add grinding recipes for shark tooth -> bone meal (#1414) +* Add detection range tooltip to all prospectors and fix the range stated (#1494) + +Mod Updates: +* Forge (14.23.2.2654) +* Dimensional Control (2.10.0) + * Update to allow changes listed above +* BnBGamingCore (1.12-0.7.1) +* Cyclic (1.12.2-1.14.7) + * Fixed some broken blocks in the Nether and the End causing crashes (#1158, #1209) +* Geolosys (1.12.2-1.8.10c) + * Assorted Quartz ore now gives all the quartz items again (#1278) +* Horse Power (1.12.2-2.1.62) + * Fixed crash when things happen to overlap machines (#1105) +* Abyssalcraft (1.12.2-1.9.46) +* ArmoreableMobs (1.12-1.1.6-4) + * Jockey mobs are now "caught" by the mod so we can control their weapons/armor (#1087) +* Totemic (1.12.2-0.10.3) + * Clarified a number of entries in the Totempedia + * Fixed ghost blocks when the Tipi is blown up +* Rustic (1.0.3) + * Fixed rendering crashes with blocks that hold fluids when the fluid doesn't have a sprite + * Axes are now effective on crop sticks +* OreStages (1.12.2-1.0.26) +* Bookshelf (1.12.2-2.3.539) +* Gamestages (1.12.2-1.0.85) +* The Betweenlands (3.3.6) + * Fixed Tar Minion portal dupe (#1237) + * No more death loops! Players will respawn at the last portal if no spawn point is set (#1146) + * Fixed dimwitted advancement not triggering for all torches (#1098) + * Fixed empty buckets having a burn time (#1191) + * Mortar GUI is now right-click and grinding is left-click (#1198) + * Fixed effects stripping Nutrition's gold hearts (#1096) + * Added config to fix Life Crystal ore being invisible with Optifine (Set fullbright blocks to false in config) (#1335) + * Fixed ring EXP dupe (#1380) +* Hunting Dimension (1.12.2-1.0.20) + * Fixed players sometimes spawning in the ground instead of the portal (#1287) +* Galacticraft-Planets (1.12.2-4.0.1.170) +* Galacticraft-Core (1.12.2-4.0.1.170) +* MicDoodleCore (1.12.2-4.0.1.170) +* ExtraPlanets (1.12.2-0.3.2) +* PrimalTech (0.3.2) + * Fix losing logs when doing multiple debarking recipes with a workblade +* Farseek (2.2.5) + * Fix ClassCastException crash (#1377) +* Quark (r1.4-123) + * Fixes a number of issues and crashes +* AutoRegLib (1.3-16) +* Better Advancements (1.12.2-0.0.6.25) + * Correct location for tabs +* The Beneath (1.12.2-1.4.1) + * Teleporting to/from the Beneath should longer get you stuck in walls + * You can no longer teleport to the Beneath while riding something +* Foamfix (0.9.6-1.12.2) + * Improves compat with 3d-in-gui item models +* Overloaded (1.12.2-0.0.47) + * Code refactor + * Asset updates +* Together Forever (1.12.2-1.0.7-13) + * Added a safe check in case the overworld is not loaded +* Triumph (1.12-1.10.3) + * Fix advancement display data not properly syncing to clients on servers +* PrimalCore (1.12.2-0.6.45) + * Properly stop teleporting from Ineris plants in the End dimension. May only affect new generation. +* RFTools (1.12-7.33) +* Smooth Font (1.12.2-1.14.2) +* Simple Generators (1.12.2-2.0.9a) +* Valkyrie Lib (1.12.2-2.0.9b) +* Xnet (1.12-1.6.9) +* Storage Drawers (1.12.2-5.3.6) + +--------------------------------------------------------------------- + +3.0.4 + +Bug Fixes: +* Removed the Craft Studio API mod as it's no longer needed +* Parrots have now been given a cap since they spawn a little too much in some worlds after I increased their spawn in 3.0.3 +* Altered the Vanilla Book recipe so it can actually be made and not conflict with another recipe +* Changed the recipe for Dog Pelt Boots to be craftable in stage zero +* Tweaked the recipe for the Uncrafting Table to fix a potential progression exploit (#1063) +* Staged the recipes for Buildcraft Pipes +* Moved the Hunting Dimension back to stage 1. Now the recipe should match the time a player can go +* Disabled, again, Magnetite ore spawning. It should not have been available +* Added Aquamarine to the Weak Dowsing Rod in stage one +* Fix Lesser Tartaric Gem recipe (#1128) +* Use dye oredict for Elytra dying recipe +* Moved steam to stage 3 (#796) +* Re-added a bunch of missing Mystical Agriculture metal essence recipes (#565) +* Adjust recipes that use milk to stage 3 (#1088) +* Fixed Quartz Glass requiring Natura Glass only, now asks for any blockGlass (#1184) +* Added Blue Dye to all the Modular Machinery Blueprint recipes to eliminate recipe conflicts (#1156) +* Field Manual is now craftable in stage one (#1140) +* Add missing Molten Invar alloying recipe (#1789) + +Enhancement: +* Added Bear Claw drops to all types of bears +* Tweaked Shadow Creature drops just a bit so you will always get at least 1 drop +* Colored the main quest lines to help players find the quest to unlock new stages +* Added a side quest to alert players on how to get Kerosene, Lubricant, and Gasoline +* Ore Samples now spawn underwater +* Prospectors now scan in a 48 block line instead of 32 +* The Betweenlands will no longer spawn common ores, making rare ores more abundant. Note, all ores still spawn in the Overworld and Twilight Forest. + +Mod Updates: +* Triumph advancement tabs are now in order and not just randomly thrown about! Also, previous uncompleted advancements due pack updates or changes should now be auto-completed on world join or able to be completed again. Not everything could be covered on auto-complete sorry for the inconvenience (1.12.2-1.10.1) +* Better with Mods (1.12.-2.0.32) +* Better with Addons (0.3.4) +* Geolosys updated to significantly improve their generation so it does not get overwritten by another block or feature and remove the ore. Also, more stone has been properly added to the config to allow veins to spawn in other types of stones (1.12.2-1.8.10b) +* PrimalTech (0.3.1) +* Mob Grinding Utils (0.3.5) +* PrimalCore fixed a localization issue and a few small tweaks (1.12.2-0.6.44) +* ImmersiveTech fixed GUI's not working. The mod also removed Liquid Green Slime but we have replaced it with a custom liquid. You will be asked to confirm the missing item when loading your world. You can confirm and play as normal (1.12-1.3.7) +* Better Advancements fixed a uncommon rendering crash (1.12.2-0.0.6.24) +* EmberRootZoo (1.12-1.3.7) +* FastWorkbench (1.12.2-1.3.1) +* SmoothFont (1.12.2-1.13.1) + +--------------------------------------------------------------------- + +3.0.3 + +Bug Fixes: +* The Enderman advancement should now only trigger after killing 1 type of endermen, not 6 +* The Darklands advancement no longer triggers on a coralium swamp biome since this biome does not generate the intended mobs and blocks the player needs to find + +Enhancements: +* The following animals have been added to work with Horse Power (I can't guarantee they are diligent workers): Pig, Cow, Llama, Wolf +* Added a ritual in stage 1 to summon parrots using Abyssalcraft +* Added some more parrot spawns to Swamps and Savannahs +* Added a secondary trigger to possibly unlock the Baykok stage instead of killing the mob yourself. Picking up his bow will enable the advancement + +Mod Updates: +* Updated Better With Mods to restore the ability to make Unfired Porcelain in the millstone again (1.12-2.0.31) +* Updated Together Forever to fix a server sync issue (1.12.2-1.0.6-12) +* Updated Item Stages to fix a server side crash (1.12.2-1.0.33) +* Updated Better Advancements to stop the screen from fading when your cursor is on an advancement (1.12.2-0.0.06.22) + + + +--------------------------------------------------------------------- + +3.0.2 + +Bug Fixes: +* Changed the Aquamarine, Vanilla Chest, Necronomicon, Prospector, Furnace, Weirding Gadget, Crafting Table, Chopping Block, Channels, Stone Anvil, and Plumbline Advancement to trigger on Pickup rather than the ore block break or needing to craft the item +* The Apple advancement should now trigger when you have the item in your inventory +* Disable F3 Spawn Chunk information +* Fix "Not repairable" tooltip from disappearing once the item is damaged +* Removed some default recipes for Abyssalcraft statues +* Disable Sphalerite (Geolosys Zinc) ore from spawning +* Fixed Baykok advancement - Players that have it already will need to run `/gamestage add PlayerName baykok` +* Moved the Iron Chisel back to stage two from one +* Animals will no longer flee when placing or breaking a block. They will, however, flee when you kill another animal near them +* Removed Signs from Carry-on due to issues with broken textures and resetting NBT data +* Removed Item Frames from Carry-on due to... issues +* Added a few more pieces of information in tooltips or advancements to help out stuck players +* Added Geolosys Gold Ore to the Prospectors list +* Increased Rock Crystal and Osmium minimum Y level to 3 so it does not get surrounded by bedrock +* Coal has been moved back up to minimum Y48. Note, all existing generation can still potentially be as low as Y8. New generation will be correct +* The temporary fix that allowed an exploit with certain dyes has been mostly removed. Also, Dung and Wither dust are no longer in the ore dictionary for dyes and will not show up in recipes +* Astral Sorcery Illumination Powder and Starlight Crafting Altar recipes should now work correctly +* Added a dye crushing recipe for Cocoa powder + +Mod Updates: +* Updated HWYLA to fix the incorrect block being reported in the tooltip (1.8.25-B40_1.12) +* Updated Smooth Font. The mod has decreased its RAM usage (1.12.2-1.13) +* Updated OreStages to allow placing on "hidden" blocks again (1.12.2-1.0.25) +* Updated Power adapters to fix a crash when certain power types were missing (1.12.2-1.0.6) +* Updated Together Forever which should fix its issues in LAN environments (1.12-1.0.5-11) +* Updated Item Stages. There is a new message for Restricted items that is a bit more clear so players don't mistake it as a bug any longer (1.12.2-1.0.31) +* Updated Immersive Petroleum to fix the lack of GUI's in the last update (1.12.2.-1.1.9) +* Updated Triumph to allow for multiple functions to be run on an advancement (fixing some advancements not triggering stages or rewards) (1.12.2-1.9.0) +* Updated KleeSlabs "Fixed air blocks being considered slabs, causing random slab generation while breaking air (1.12.2-5.4.8) +* Updated Primal Tech to fix issues with fire stick crafting and kilns lagging on servers (0.2.99) +* Updated Integrated Dynamics (1.12.2-0.11.9) +* Updated Carry-on to fix duplication exploits (1.12.2 v1.8) +* Updated Toast Control to latest version (1.12.2-1.4.1) +* Updated Foamfix to latest version (0.9.5-1.12.2) + +Upcoming: +* The Better Advancements update to stop the background from going dark when mousing over an advancement had to be put on hold because of a server crash. Hopefully, it will be ready for the 3.0.3 update +* Content will be included in future updates: More Advancements, Fully implemented Prestige System, etc. The first few updates are specifically focused on bug fixes and major issues that halt game play. Thanks for all the reports so far and thanks for helping to make SevTech awesome! + +--------------------------------------------------------------------- + +Alpha 10 +* Fixed the Wooden Basin recipes +* Altered the consumption chance of liquid starlight for the Stardust recipe +* Disabled Buildcraft world generation +* Fully converted skillable skills to advancements +* Added "Wooden Barrel" and "Market" advancements +* Removed Wooden Tools +* Added recipe for Primal Barrel +* Added a "nicer" recipe for BWM rope as you progress +* Modified BWM Wooden Axle Recipe +* Adjusted recipe for I.E. Pump +* Added "nicer" recipe for Tcon smeltery parts as you progress +* Added Viescraft Core, Frame, Engine, and Balloon recipes +* Adjusted 4x Minecraft torch recipe + +--------------------------------------------------------------------- + +Alpha 9 +* Turned the Better With Mods hunger mechanic off. Sorry for calling everyone fat and obese FeelsBadMan +* Added marble, limestone, and slate to stage 0 so you can now interact with them. I swear it actually works this time +* Turned village generation down slightly +* Turned trumpet skeletons off in the Twilight, they were a bit too frequent +* Allowed the use of Industrial Hemp earlier and added a recipe for BWM Hemp Rope in stage 1 that gives 3x +* Cleaned up / deleted old config files +* Netherrack was added to the compression list +* Totempedia is now a shapeless recipe and edited others to be craftable in 2x2 grids +* Fixed a number of Advancements not giving rewards +* A number of Scripts have been cleaned up +* Removed the Garden Stuff mod +* Added Buildcraft for testing purposes +* Staged the PlayerSkins mod and configured +* Storage Drawer upgrades can now be crafted +* Removed the Skillable Roadwalk upgrade +* Doubled the amount of Luminessence recieved from recipe +* Increased the amount of rails per crafting operation + +--------------------------------------------------------------------- + +Alpha 8 +* This update will most likely break your current world due to passing the block limit +* Removed Viescraft tweaker as it's no longer needed +* Added Mystical Agriculture and Agggggggggraditions and turned off all essence drops +* Hid Redstone blocks and disabled redstone to be used during stage 2 +* Removed Glowstone, redstone, and redstone blocks from loot tables +* Added the Fat Cat Industrialist to the Stage 3 mob spawn table and gave him some pretty cool loot +* Removed a number of decorative blocks from Chisel and Quark to lower total block number +* Added Advanced Rocketry and began configuring for the pack +* Added recipes for Viescraft using the Extended Crafting tables +* Removed the Trash Slot mod +* Staged Actually Additions and removed items from the Ball of Fur drop table +* Thanks to Dawenzel, all the Tcon parts have been staged and will show in JEI when you unlock them + +--------------------------------------------------------------------- + +Alpha 7 +* Added a Stage 1 recipe to Ember Dials +* Charcoal and Coal blocks can now be ground down into pieces of charcoal and coal +* Reworked the torch recipes a bit +* Adjusted the flint crafting recipes +* Tinker Tool Leveling now has a higher XP requirement +* Slats have recipes now +* Staged carpet recipes +* Changed Teacups to use porcelain +* Updated the meshes and recipes +* Fixed the Better With Mods removal scripts not working +* Dung Pipe advancement now allows either item to be placed and not both +* Removed the skillable requirements for seeds +* Added a number of new advancements including the beginnings of stage 3 +* Reduced the amount of Charcoal acquired from Low Grade Charcoal +* Sleeping Mat has functionality to change whether it will set your spawn or not, check the tooltip for info +* Constantan can not be alloyed in a smeltery any longer, it requires using Immersive Engineering methods +* Reduced Direwolf damage yet again! +* Cleaned up the Recurrent Complex structures, hopefully they should be spawning in the correct biomes or dimensions +* Turned down the spawning of Cobalt and Ardite ore in the Nether +* Removed the extra Uranium Ore Clusters so there should NOT be anymore "glowing" blocks on the surface +* Added Iron Backpacks and put it in stage 2 +* Added a fleece recipe in stage 1 +* Lowered the amount of sugar cane needed for a wicker panel to 4 instead of 9 +* Increased the droprate of Ender Pearl dust to 50% instead of 25% +* Disabled the mining upgrade functionality of the Tinkers' sharpening kits since these basically allow you to circumnavigate progression +* Removed the Embers Melter due to it not able to be tweaked +* Fixed string recipes using fleece and shears +* Removed the glowstone drops from Spritelings +* Initial cleanup of Bedrock Ores +* Added an advancement page for Stage 4 and 5 along with root and entry advancements +* Recipes should now be hidden when in the incorrect stage along with certain items + +--------------------------------------------------------------------- + +Alpha 6 +* Fixed the hand grindstone to be craftable/usable at the correct time +* All golems should now trigger the golem advancement +* Added a water requirement to the crafting recipe for pulp +* Added a parent requirement to many advancements +* Fixed the wrong block assigned to complete the pedestal advancement + +--------------------------------------------------------------------- + +Alpha 5 +* Updated the modpack to Minecraft version 1.12.2 +* Fixed the Wooden Basin Mulberry Pulp recipe, it was backwards +* Removed Stellar Sky and Stellar API mods for the time being in an attempt for better overall pack performance +* Added Unidict to unify Ingots, plates, etc. +* Added back Embers recipes +* Disabled Actually Additions Crystal Spawning +* Added the Astral Sorcery Ores to the Tier 2 Prospector + +--------------------------------------------------------------------- + +Alpha 4 +* Changed the total amount of materials for Tool grid repair to 3 instead of 4 +* Cleaned up a number of unnecessary config files +* Added a new gif for the loading screen +* Disabled Better With Mods Pollution and Weather Control in the config +* The Bronze Block can now be hammered into Ingots on the Stone Anvil +* Disabled Quark's multi-textured animals +* Fixed a number of items to use Advancements instead of XP levels to use/place +* Completed the Iron Chest recipes up to stage 2 +* Added a number of new advancements +* Switched Nuclear Physics to large ore veins using Geolosys +* Increased the durability of Better Builder's Wands and Chisel items +* Assigned a number of items to their correct Game Stages +* Edited values of the Immersive Engineering config to disallow oregen in dimension 0(on top of the ores individually disabled) and disabled the I.E. village house(also previously disabled via another method) +* Removed the Crossroads mod +* Switched Aqua Munda to use 'vanilla' style farmland to avoid crops popping off blocks. This will remove all existing tilled farmland created by players in the world +* Added the Nuclear Phyics oregen to the OreTiers hiding file +* Added the Stage 3 trigger into Advancements +* Altered some of the backgrounds for Advancement Stages +* Added parts for Steeleaf and Fiery Ingots from the Twilight Forest to be used in advanced recipes +* Removed a number of items from the Twilight Forest Loot tables +* Removed Bedrock ores from the Carry On mod +* Primal Tech added a Wooden Basin allowing more efficient methods of creating dough, leather, etc. has JEI support +* Debarked Birch logs can now be chopped up +* Added a new Roots structure to worldgen +* Lowered the limit for how many Amphibians, peacocks, ferrets, and hamster type mobs can spawn in the world from Animania +* Slightly lowered the spawn frequency for Fish +* Lowered the max Y limit Magma monsters can spawn to 50 +* Lowered the total amount of Horses and Golems allowed in the world +* Changed the world to generate in a logical 'heat map', cold biomes are far north or south, and warmer biomes are between +* Staged a number of mods in the pack in terms of recipes +* Added text to a variety of advancements to help the player to complete them easier +* Added a side quest advancement to defeat the Boss "baykok" from Totemic and unlock arrows sooner +* Added the Weirding Gadget mod to allow chunkloading in stage 2 +* Added the Caravans mod back into the pack with a small amount of trades available +* Removed the chest inventory search bar +* Added the correct Fir Log slab recipe +* Converted a number of recipes to be Shaped Mirrored +* Fixed Barley Flour cooking the incorrect item on a firepit (now makes flatbread) diff --git a/project/Sevtech Age of the Sky/3.2.1/config/mputils/infopanel/welcome/page_1.txt b/project/Sevtech Age of the Sky/3.2.1/config/mputils/infopanel/welcome/page_1.txt new file mode 100644 index 000000000..fce23a981 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/mputils/infopanel/welcome/page_1.txt @@ -0,0 +1,15 @@ + 欢迎来到 SevTech! + +打开进度界面即可查看游戏流程(默认按钮为“L”) + + +WAILA 和小地图在这个整合的一开始阶段都是不可用的,需要玩家游戏中解锁。还有很多方块在玩家通过进度解锁之前都是隐藏的! + + +**请注意,在游戏中途修改了材质包,需要重启游戏。否则物品隐藏和合成显示会出一点问题,对此造成的不便我们感到十分抱歉!** + + +对于多人游戏组队,请使用“Together Forever”模组,在游戏聊天框中输入“/tofe”指令来进行检查核实。 + + +这段说明以及更新日志,能够在游戏设置界面右侧的“What's New”按钮处找到。 \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/config/mputils/infopanel/welcome/welcome.json b/project/Sevtech Age of the Sky/3.2.1/config/mputils/infopanel/welcome/welcome.json new file mode 100644 index 000000000..612809946 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/config/mputils/infopanel/welcome/welcome.json @@ -0,0 +1,10 @@ +{ + "loadOnLogin": true, + "mustRead": false, + "pages": [ + { + "title": "\u5165\u95e8\u6307\u5357", + "file": "page_1" + } + ] +} diff --git a/project/Sevtech Age of the Sky/3.2.1/resources/sevtechages/lang/zh_cn.lang b/project/Sevtech Age of the Sky/3.2.1/resources/sevtechages/lang/zh_cn.lang new file mode 100644 index 000000000..dd90fe8f2 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/resources/sevtechages/lang/zh_cn.lang @@ -0,0 +1,1066 @@ +############################################### +###### sevtech: ages custom advancements ###### +############################################### +# stage 0 +advancements.stage0.abyssalbiome.title=踏入黑暗之地 +advancements.stage0.abyssalbiome.description=找到并进入一个深渊国度黑暗生物群系。 这些生物群系会在较冷的区域生成。 以世界出生点为赤道的话,向南北探索, 温度会逐渐降低,利用这个特性来更快找到你想要的生态群系 + + +advancements.stage0.abyssalgem.title=黑暗宝石 +advancements.stage0.abyssalgem.description=击杀一只生成在黑暗之地的阴影生物来获取一颗阴影宝石。 较小的阴影生物掉落的宝石较小, 更危险的阴影生物则会掉落完整的阴影宝石 + + +advancements.stage0.atlas.title=失而复得 +advancements.stage0.atlas.description=从一位图书管理员/制图师村民 那里换取一份古代地图 + + +advancements.stage0.baykok.title=恐怖的boss战 +advancements.stage0.baykok.description=通过一场图腾仪式召唤并击败贝柯克以获取他手中强大的弓, 同时你会更早解锁远程武器 + + +advancements.stage0.buffalo.title=远古动物 +advancements.stage0.buffalo.description=野牛能给猎人提供许多珍贵资源。 通过一场图腾仪式就可以召唤它们。 收集它们的皮和牙齿,查找图腾百科全书以获取更多信息 + + +advancements.stage0.charcoal.title=压压更健康 +advancements.stage0.charcoal.description=用马力压榨机来将木炭压成一个更大的方块 + + +advancements.stage0.chestupgrade.title=存储升级 +advancements.stage0.chestupgrade.description=把你那破旧的箱子扔了吧, 是时候换个更好的太初箱子了 + + +advancements.stage0.collectplank.title=砧板之上 +advancements.stage0.collectplank.description=用原木合成一个砧板将原木/木板放在砧板上, 用斧头左键就可砍成木板/木棍 + + +advancements.stage0.farmland.title=授人以田 +advancements.stage0.farmland.description=在一位农夫村民那里换取耕地以学习种地的知识。 在阶段0,你无法使用锄头直接锄地, 你只能合成耕地并将其放置在水边 + + +advancements.stage0.fertility.title=春之祭 +advancements.stage0.fertility.description=当春日祭仪式进行时,如果你把食物放在图腾附近的地上,附近的动物就会繁殖。 + + +advancements.stage0.fiber.title=纤维饮食 +advancements.stage0.fiber.description=如果你要开始发展,就得先打草以获取植物纤维 将三个纤维合成在一起以获取植物纤维绳,木棍可以通过破坏树叶获得 也可以直接在地上找到 + + +advancements.stage0.fire.title=我终于生起火了! +advancements.stage0.fire.description=双手各持一根削过的木棍, 右键一个方块即可生火 + + +advancements.stage0.firepit.title=火! +advancements.stage0.firepit.description=用石子、绳子和木棍合成一个火堆, 用一般燃料右键就可以点着火堆, 将要烤的物品右键放入就可烤制 + + +advancements.stage0.firstbreak.title=穴居人讨厌木头! +advancements.stage0.firstbreak.description=空手撸树不仅不会掉落还会受伤! 你得使用合适的工具 + + +advancements.stage0.firstchest.title=存东西的地方 +advancements.stage0.firstchest.description=用木头合成一个箱子来存放你的物品 + + +advancements.stage0.firsttool.title=独自一人 太过危险 +advancements.stage0.firsttool.description=合成一把燧石手斧 这样你才能砍树 + + +advancements.stage0.fish.title=长矛捕鱼法 +advancements.stage0.fish.description=使用你的矛或其他工具来捕鱼 好好饱餐一顿吧! + + +advancements.stage0.flamehopper.title=炙烤的宝贝 +advancements.stage0.flamehopper.description=一个可以为其上方方块提供热量的料斗 + + +advancements.stage0.flintknapp.title=打磨燧石 +advancements.stage0.flintknapp.description=手持燧石左键石头以获取剥燧石片 手持燧石片左键石头则会给你一个燧石片尖 + + +advancements.stage0.fluidbladder.title=总比什么都没有强 +advancements.stage0.fluidbladder.description=既然你现在没有水桶 那就先做一个水袋来合成东西吧 + + +advancements.stage0.gear.title=木齿轮 +advancements.stage0.gear.description=动用你的聪明才智来合成一个木齿轮 + + +advancements.stage0.grill.title=烫死我了! +advancements.stage0.grill.description=丢掉你的火堆, 来做一个一个石制烧烤架吧, 烧烤架下方必须有热源(比如火)才能烤制物品 + + +advancements.stage0.handgrind.title=磨了它 +advancements.stage0.handgrind.description=手磨石虽然算不上快, 但这是目前你唯一能用的磨石了 + + +advancements.stage0.horsechopper.title=砍!砍!砍! +advancements.stage0.horsechopper.description=再也不用手动分解木板了! 放下一个马砧板,用栓绳将马牵上, 再放入物品就能自动分解了 + + +advancements.stage0.horsepower.title=路遥知马力 +advancements.stage0.horsepower.description=合成一个马磨石,再用栓绳牵上马, 就可以将磨石自动化了。 如果没有马,你还可以使用鹦鹉、野牛、猪、牛、羊驼、狼 + + +advancements.stage0.kiln.title=烤一烤 +advancements.stage0.kiln.description=用粘土和圆石台阶来合成一个粘土窑, 放下粘土窑后你需要在其下方提供热源来使其硬化, 一旦其硬化后你就可以用它来烤制物品了 + + +advancements.stage0.lead.title=你一定是个好领袖 +advancements.stage0.lead.description=合成一个栓绳来牵动物 + + +advancements.stage0.leather.title=皮革,漂洗,重复 +advancements.stage0.leather.description=制作皮革! + + +advancements.stage0.lowgradecharcoal.title=永恒之火 +advancements.stage0.lowgradecharcoal.description=低级木炭块是一个很好的木炭来源 而且其上方的火焰永远不会熄灭 + + +advancements.stage0.mat.title=坏男孩,坏男孩(bed与bad双关) +advancements.stage0.mat.description=简易睡垫能让你随时睡觉! 别忘了在睡前设置好你是否想要在睡觉时重设你的出生点 + + +advancements.stage0.melter.title=让我们开始熔点东西吧! +advancements.stage0.melter.description=合成一个微缩熔炉来熔化矿物, 微缩熔炉与其下方的加热器的材质必须对应, 否则无法正常运作 + + +advancements.stage0.melterbase.title=熔炉加热器 +advancements.stage0.melterbase.description=你现在没办法获取液体燃料, 那就先用固体的吧!合成一个熔炉加热器 (熔炉加热器和微缩熔炉的材质必须对应才能正常运作 即陶瓷与焦黑砖版本不能相互兼容) + + +advancements.stage0.mesh.title=筛点燧石 +advancements.stage0.mesh.description=破坏沙砾不会掉落燧石, 需要用草纤维网与沙砾合成来获取燧石 + + +advancements.stage0.mill.title=别瞎磨迹了 +advancements.stage0.mill.description=别磨迹了,合成一个 better with mods 模组的磨石吧 + + +advancements.stage0.naturescompass.title=伙计,我的生物群系在哪里? +advancements.stage0.naturescompass.description=你需要寻找黑暗生物群系来继续你的旅程。 使用生物群系指南找到最近的生物群系 + + +advancements.stage0.root.title=sevtech: ages 教程 +advancements.stage0.root.description=欢迎来到 sevtech: ages! 合成一个工作桩来完成教程阶段以进入到阶段0 + + +advancements.stage0.saddle.title=疾如风 +advancements.stage0.saddle.description=再快点! 肩托式背包可以安全地带着动物到处旅行。使用伞莲风筝时,你仍然可以带着动物。 + + +advancements.stage0.saltflats.title=盐 +advancements.stage0.saltflats.description=在干燥的生物群系或河床里能找到盐, 盐是处理皮革和合成食物的原料 + + +advancements.stage0.spear.title=长矛 +advancements.stage0.spear.description=合成一根矛, 能够来叉鱼或当做远程武器 + + +advancements.stage0.stonetools.title=石器时代! +advancements.stage0.stonetools.description=将你的镐子升级成石镐 + + +advancements.stage0.tipi.title=安枕无忧 +advancements.stage0.tipi.description=没地方睡觉? 合成一个印第安帐篷吧! + + +advancements.stage0.tomahawk.title=印第安战斧 +advancements.stage0.tomahawk.description=合成一把印第安战斧, 它是一把远程武器。 其配方需要一个小燧石碎片 + + +advancements.stage0.totemic.title=摇一摇,敲一敲,吹一吹 +advancements.stage0.totemic.description=合成图腾仪式需要的摇响器、长笛和图腾族鼓 完成这个进度后你会获得一本图腾百科 查阅图腾百科以获取图腾 mod 的更多信息 + + +advancements.stage0.upgrade.title=升级! +advancements.stage0.upgrade.description=合成一把燧石镐 + + +advancements.stage0.waterstrainer.title=滤网 +advancements.stage0.waterstrainer.description=如果你找不到某些水下资源 合成一个滤网基座并放入一个滤网即可 不同种类的滤网有不同的产物 合成一个滤网基座和一个过滤网(致密)来完成此进度 + +advancements.stage0.volarkite.title=飞吧风筝! +advancements.stage0.volarkite.description=你需要借助某种手段来让你在岛屿之间旅行。你可以利用虚空中的上升气流来向上攀升。注意,伞莲风筝是有耐久的! + + +advancements.stage0.weaponize.title=是时候干正事了 +advancements.stage0.weaponize.description=手持骨头左键石头可获取剥片骨头 + + +advancements.stage0.wheel.title=哗哗巴士 +advancements.stage0.wheel.description=合成来自“马拉车具(astikoor)”这个模组的轮子 并合成一个马车 你需要使用该模组的一个特殊键位来连接马与马车 + + +advancements.stage0.woodenbarrel.title=桶 +advancements.stage0.woodenbarrel.description=合成一个来自 primal core 这个模组的桶来存储流体 + + +advancements.stage0.woodhopper1.title=随你去吧 +advancements.stage0.woodhopper1.description=合成一个木漏斗来自动传输物品 + + +advancements.stage0.woodhopper2.title=巨大化! +advancements.stage0.woodhopper2.description=你现在的木漏斗不好用? 把它升级到 ”料斗 mk2”来增加它的功能吧! + + +advancements.stage0.workblade.title=周末打工 +advancements.stage0.workblade.description=如果你要工作的话 就需要一把燧石工作刀 你甚至可以用它来除草和叶子 + + +advancements.stage0.workstump.title=工作桩 +advancements.stage0.workstump.description=合成台?想都别想!现在只有工作桩 右键将物品放入,再用石板多次右键就可完成合成 合成完后可将石板存储在工作树桩的下方 + + +# stage 1 +advancements.stage1.alloykiln.title=全部混合! +advancements.stage1.alloykiln.description=修建一个沉浸工程模组的合金窑来制作青铜,你需要合成8个窑砖 修建成 2x2x2 大小,用工程师锤右击即可构建 + + +advancements.stage1.aquamarine.title=寻找海蓝宝石 +advancements.stage1.aquamarine.description=探索深渊世界 在顶部洞穴中寻找海蓝宝石砂岩矿 + + +advancements.stage1.aqueduct.title=水道 +advancements.stage1.aqueduct.description=用水道来传输水 只需要修建一个u形水渠,底部要用水道方块,侧边可以选用任意方块 谨记,这个进度只有你在完全放置了方块后才会完成 + + +advancements.stage1.astable.title=连接星辉 +advancements.stage1.astable.description=完成工作台转换成星辉工作台的合成 + + +advancements.stage1.axle.title=f轴 +advancements.stage1.axle.description=机械传动需要传动轴。你可以通过传动轴直接连接水车,风车或者变速箱。 传动轴最多只能连续摆放三个 + + +advancements.stage1.bees.title=哦!是蜜蜂! +advancements.stage1.bees.description=制作一个蜂房,然后往里放一只蜜蜂。蜜蜂可以在野外的蜂巢里获得。当蜂房中有蜜蜂时,它就会加速周围的作物生长。 + + +advancements.stage1.beneath.title=深渊世界 +advancements.stage1.beneath.description=使用深渊国度的仪式制作一个深渊世界传送门 谨记你的死灵之书必须要有足够的p.e.才能够开启仪,传送门放置在地上就可以进入深渊世界 + + +advancements.stage1.blackquartz.title=石英的力量! +advancements.stage1.blackquartz.description=探索深渊世界的底部,寻找焦黑石英 + + +advancements.stage1.bloodaltar.title=迷幻异域 +advancements.stage1.bloodaltar.description=获取恶魔意志,修建血之祭坛 + + +advancements.stage1.bronze.title=满脑子青铜! +advancements.stage1.bronze.description=使用合金窑制作出青铜锭 + + +advancements.stage1.bucket.title=我做出了桶 +advancements.stage1.bucket.description=使用螺杆旋转台制作一个粘土桶 并在粘土窑里面烧制成可用的粘土桶 + + +advancements.stage1.cart.title=运输之爱 +advancements.stage1.cart.description=想要携带家产走游四方?合成一个马车并将其拴上马即可,shift右击可以打开马车gui! + + +advancements.stage1.chest.title=我需要这个箱子 +advancements.stage1.chest.description=升级你的箱子 + + +advancements.stage1.claybarrel.title=桶底 +advancements.stage1.claybarrel.description=粘土桶能够存储流体,比如水和液态金属 + + +advancements.stage1.coal.title=寻找并挖掘煤矿 +advancements.stage1.coal.description=找寻煤矿样本,并获取煤矿! 煤矿通常在y值28到70的地方 + + +advancements.stage1.copper.title=我们得到了铜 +advancements.stage1.copper.description=找寻地表的铜样本,并获取铜矿! 通常在y值12~52的地方,名字也可能是孔雀石或者蓝铜矿 谨记,地表样本在已经探索过的区域也能找到 + + + +advancements.stage1.crafting.title=合成升级 +advancements.stage1.crafting.description=合成一个原版工作台 + + +advancements.stage1.dung.title=快把我排出来 +advancements.stage1.dung.description=使用粪管从方块中抽取物品,或者用下水道管通过固体方块来抽取物品 + + +advancements.stage1.extension.title=延展 +advancements.stage1.extension.description=制作一个延展陶桶,放置在陶桶顶部来提升容量 + + +advancements.stage1.furnace.title=这里越来越热了 +advancements.stage1.furnace.description=新的熔炉,点亮你的生活 + + +advancements.stage1.gearbox.title=研磨变速箱 +advancements.stage1.gearbox.description=变速箱能够中继机械扭力,shift右击变速箱的面能够改变输入输出。 能量输入的传动轴必须从十字面输入 + + +advancements.stage1.hoe.title=我能够锄地么?! +advancements.stage1.hoe.description=合成锄头,开始高效的农业生活吧 + + +advancements.stage1.huntingdim.title=猎杀,抑或被猎杀 +advancements.stage1.huntingdim.description=如果你想要寻找敌对性生物,试试狩猎维度吧。 像地狱门那样修建狩猎维度传送门框架,使用原版的剑来启动它,站在上面shift即可进行传送 + + +advancements.stage1.journal.title=这是我的日记 +advancements.stage1.journal.description=通过合成星辉魔法的星芒宝典来获取有关星辉的知识。 谨记,星辉魔法的神殿并不会自然生成,所以我们修改了很多相关的合成。 + + +advancements.stage1.leafbed.title=松软的枕头 +advancements.stage1.leafbed.description=你是否感觉你当前的睡眠质量不佳?做一个干草床吧! + + +advancements.stage1.necro.title=深渊国度合成! +advancements.stage1.necro.description=合成一本死灵之书,指导你踏入深渊国度 + + +advancements.stage1.parchment.title=想要写点什么 +advancements.stage1.parchment.description=开始在羊皮纸上记录点什么吧,也许你需要主世界生成罕见的桑树的树皮 + + +advancements.stage1.parrot.title=我找不到丛林?! +advancements.stage1.parrot.description=查询普通的死灵之书仪式来了解如何生成一只鹦鹉,并用种子驯服它。 当然,你也可以去找丛林 + + +advancements.stage1.pedestal.title=基座时间到 +advancements.stage1.pedestal.description=你需要站在雕像附近,手持死灵之书来充能,或者合成基座来代替手持。 但要确保基座和雕像在三格内,并且在同一高度 + + +advancements.stage1.plumbline.title=丈量大地 +advancements.stage1.plumbline.description=使用铅垂线来确定y值 + + +advancements.stage1.prospector.title=勘探! +advancements.stage1.prospector.description=合成一个弱化矿石勘探器,帮助你寻找矿物位置 + + +advancements.stage1.root.title=欢迎来到第一纪元 +advancements.stage1.root.description=欢迎来到下一个阶段!先前隐藏的部分方块现在已经可见了,你现在能够发现矿物样本以及其他很多东西。 + + +advancements.stage1.statue.title=深渊国度的战利品 +advancements.stage1.statue.description=为了执行黑暗仪式,你需要搜集一些雕塑来充能死灵之书。 在河流生物群系找到修格斯巢穴,在生成6只以上的修格斯以后,就会在周围随机修建高大的柱子,顶部会生成一个雕像。 把修格斯腐肉与雕像合成能够获取更多信息 + + +advancements.stage1.stepup.title=我不想要它了! +advancements.stage1.stepup.description=现在你可能很少旅行了,通过血之祭坛合成一个健体苹果,取消掉能够直接走上一格方块的能力。 + + +advancements.stage1.stoneanvil.title=anvil lavigne:简单粗暴! +advancements.stage1.stoneanvil.description=需要板么?在石砧上放置一些锭,然后用石槌击打即可 + + +advancements.stage1.tchannel.title=订阅我的频道吧 ~ 求你了 +advancements.stage1.tchannel.description=输液道是一种非常棒的传输液体的装置,放置好输液道,遵循顶部箭头右击来改变方向/断开连接/其他。 可以使用普通输液道或者陶瓷输液道 + + +advancements.stage1.tin.title=error 404: 我找不到核心! +advancements.stage1.tin.description=地表寻找锡样本并进行采掘!通常在y值8~68的地方,名称可能是锡石或者笼铅矿 谨记,地表样本在已经探索过的区域也能找到 + + + +advancements.stage1.turntable.title=旋转吧!旋转台 +advancements.stage1.turntable.description=合成一个螺杆旋转台,底部接上机械扭力,而后在顶部放置方块开始做东西 + + +advancements.stage1.waterwheel.title=水?可以的! +advancements.stage1.waterwheel.description=通过 better with mods 模组的水车来获取机械扭力 + + +advancements.stage1.woodbasin.title=搅拌盆 +advancements.stage1.woodbasin.description=四处寻找高效的皮革或者面团制作方法? 合成木制搅拌盆吧,丢入正确的流体和物品,然后右击搅拌吧! + + +# stage 2 +advancements.stage2.astable2.title=星辉升级 +advancements.stage2.astable2.description=将星辉合成台升级到下一阶段(星辉祭坛)。 除了祭坛之外,你还需要构建一个结构来开始制作过程。 请参阅星芒宝典的探索部分。 + + +advancements.stage2.betweenlands.title=交错次元 +advancements.stage2.betweenlands.description=在沼泽生物群系中找到一个黑暗德鲁伊祭坛,杀死黑暗德鲁伊,并用他们的护身符制作一个沼泽护身符。用沼泽护身符点击树苗来创建一个通往交错次元的入口。 + + +advancements.stage2.biomealyzer.title=我所处的生物群系是什么? +advancements.stage2.biomealyzer.description=使用生物群系分析仪来了解你当前生物群系的名称 + + +advancements.stage2.bucket.title=谁在偷我的桶? +advancements.stage2.bucket.description=现在你已经获得铁,用你的冶炼炉浇铸一个铁桶。 + + +advancements.stage2.carminitereactor.title=闲置反应堆 +advancements.stage2.carminitereactor.description=你将需要一个砷铅铁反应堆来创建你的第一个引擎。通过搜寻暮色森林中的黑暗高塔(暮色恶魂boss)或者利用塔里的资源制作反应堆。 + + +advancements.stage2.compass.title=好像迷路了……等等…… +advancements.stage2.compass.description=指南针将帮助你确定x和z坐标。 + + +advancements.stage2.conpaper.title=填补缺口 +advancements.stage2.conpaper.description=获取星图来填充星芒宝典中的信息。你可以按住shift右击打开星芒宝典的夹层,将星图放进去以储存。 + + +advancements.stage2.controller.title=控制 +advancements.stage2.controller.description=如果燧石或骨工具不再有用,你需要一个冶炼炉。 当你把所以冶炼炉方块放置好后放置一个冶炼炉控制器来完成结构和此进度。 + + +advancements.stage2.depth.title=迈向深渊 +advancements.stage2.depth.description=制作一个深度计以更好的查看你的y轴。 + + +advancements.stage2.dowsingrod.title=前瞻升级 +advancements.stage2.dowsingrod.description=制作一个坚韧探测杆可以帮助你定位更多的矿石。 你可以使用它在你点击的方块48格内找到矿石。 + + +advancements.stage2.drawertable.title=放置我物品的地方 +advancements.stage2.drawertable.description=使用成型台来制作自定义储存抽屉,使用镶框抽屉和你想要的方块类型来作为装饰。 + + +advancements.stage2.enderman.title=抵御末影! +advancements.stage2.enderman.description=末影人已经开始在世界上生成了,杀死他们来获取末影粉。 + + +advancements.stage2.extendedcraftingbasic.title=拓展合成:铁 +advancements.stage2.extendedcraftingbasic.description=制作一个基础合成台来制作更多的合成配方 + + +advancements.stage2.glass.title=吹制玻璃 +advancements.stage2.glass.description=通过将沙子放进微缩陶瓷熔炉或者冶炼炉来融合成熔融玻璃,然后将其导入到浇筑盆中来制作玻璃。 + + +advancements.stage2.gold.title=黄金标准 +advancements.stage2.gold.description=找到和挖掘一个金矿样本!它位于y值8~40之间。 + + +advancements.stage2.iron.title=看见铁了 +advancements.stage2.iron.description=找到和挖掘一个铁矿样本!它位于y32~60之间。 + + +advancements.stage2.lapis.title=玫瑰是红色的,青金石是蓝色的 +advancements.stage2.lapis.description=找到和挖掘一个青金石样本!它位于y10~38之间。 + + +advancements.stage2.lightwell.title=液化 +advancements.stage2.lightwell.description=星辉魔法的聚星缸允许某些物品液化成星能液。 + + +advancements.stage2.mapping.title=高级地图 +advancements.stage2.mapping.description=通过吃一个旅行地图令牌来升级你当前的地图到更高级的地图。 注意,这是一个提前解锁项目,当前不必完成。可在稍后阶段完成。 + + +advancements.stage2.market.title=市场 +advancements.stage2.market.description=利用小市场来购买种子和树苗。 + + +advancements.stage2.nuggetcast.title=粒铸模 +advancements.stage2.nuggetcast.description=为了获得一个粒铸模,你将需要在石砧上制作一个石粒 + + +advancements.stage2.paper.title=papers please:请出示你的证件 +advancements.stage2.paper.description=通过合成纸来发展你的造纸技术。 + + +advancements.stage2.piston.title=刚好能够推动它 +advancements.stage2.piston.description=需要推动物品?可以在暮色森林的黑暗高塔(暮色恶魂boss)中找到一个活塞或找到制作它的材料。 + + +advancements.stage2.resonatingwand.title=共鸣 +advancements.stage2.resonatingwand.description=你需要制作星辉魔法的共鸣之杖来继续你的旅程。 + + +advancements.stage2.rockcrystal.title=岩石、羊皮纸、水晶 +advancements.stage2.rockcrystal.description=水晶石对于星辉魔法的发展很重要,在地表上找到和挖掘一个水晶样本,它位于y10以下。 + + +advancements.stage2.root.title=第二纪元 +advancements.stage2.root.description=欢迎来到第二纪元! + + +advancements.stage2.sealantern.title=在海晶灯下 +advancements.stage2.sealantern.description=第三层血魔法祭坛是由海晶灯和萤石制成的。在海洋中找到海底遗迹或者从暮色森林中的黑暗森林迷宫中掉落。 + + +advancements.stage2.skywave.title=星光定位 +advancements.stage2.skywave.description=星辉祭坛需要在完成操作之前充能星能。制作并使用法斯刻共振器来定位世界上富含星能的区域。白天你会很难找到它,最好等到晚上。 + + +advancements.stage2.smeltertank.title=冶炼炉储罐 +advancements.stage2.smeltertank.description=固体燃料温度比较低,制作一个陶瓷储罐或者焦黑储罐放置在冶炼炉或者微缩陶瓷熔炉下来帮助你融化铁和其他需要高温度的材料。 注意,你需要让当前燃料用完或者打掉/替换掉加热器来查看新的温度。 + + +advancements.stage2.starpowder.title=星能 +advancements.stage2.starpowder.description=挖掘水晶石样本时可以发现星尘,不要忘记标记地图,因为样本还会显示下面的水晶石矿脉! 一旦你的星辉魔法基础设施完成,你就可以使用制作它们了。 + + +advancements.stage2.stevescarts.title=烧煤火车 +advancements.stage2.stevescarts.description=你已经发现了燃烧的力量!制作煤炭引擎。 + + +advancements.stage2.stopwatch.title=极速奔跑 +advancements.stage2.stopwatch.description=秒表将显示玩家的移动时信息。 + + +advancements.stage2.tcontable1.title=笨拙的工匠 +advancements.stage2.tcontable1.description=是时候抛弃你的合成台,升级到合成站,它可以让你将物品放到网格中并附着在附近的箱子上。 + + +advancements.stage2.tcontable2.title=部件制作者 +advancements.stage2.tcontable2.description=你可以通过模具加工台制作模板来替换你的工具。 + + +advancements.stage2.tcontable3.title=工具装配台 +advancements.stage2.tcontable3.description=要制作新工具,你需要一个工具装配台。 + + +advancements.stage2.twilight.title=暮色探险 +advancements.stage2.twilight.description=进入暮色森林继续你的旅程。用水填满一个2x2的地方,用植物、树苗或花来包围它,把星辉魔法的星辉锭扔进水中来创造入口。 + + +advancements.stage2.wateringcan.title=快速农业 +advancements.stage2.wateringcan.description=如果你厌倦了等待庄稼的生长,那就制作一个洒水壶 + + +advancements.stage2.weedwoodsticks.title=杂草木 +advancements.stage2.weedwoodsticks.description=杂草木棍是通过破坏杂草灌木丛发现的。通常在交错次元周围能找到。 注意,它们不能通过砍木头来获取。 + + +advancements.stage2.weedwoodsword.title=交错次元 +advancements.stage2.weedwoodsword.description=从其他世界进入交错次元的工具将不起作用。你需要制作新的工具和武器来用。 注意,此成就特别要求你制作一把杂草木剑来完成。 + + +advancements.stage2.weird.title=十大古怪工具 +advancements.stage2.weird.description=如果你想要一个区块加载器,制作一个古怪工具并放置下来,以加载一个3x3区域 + + +advancements.stage2.wool.title=羊毛毯子 +advancements.stage2.wool.description=用绒毛和筚板块制作一些羊毛 + + +# stage 3 +advancements.stage3.amethyst.title=下界紫水晶矿 +advancements.stage3.amethyst.description=在地狱发现了一种罕见的宝石。可以使用第三纪元及以上的勘探器进行定位 + + +advancements.stage3.bauxite.title=铝土矿 +advancements.stage3.bauxite.description=地表寻找铝土矿样本并进行采掘! 通常在y值45~70的地方 + + +advancements.stage3.bellows.title=风箱 +advancements.stage3.bellows.description=制作一个风箱并和机械扭力连接,它能使火盆达到猛火。 + + +advancements.stage3.blazerod.title=烈焰棒 +advancements.stage3.blazerod.description=前往地狱,收集烈焰粉,并使用金属冲压机将他们冲压成烈焰棒。 + + +advancements.stage3.bonehoe.title=地狱工具 +advancements.stage3.bonehoe.description=使用金骨锄可以耕耘泥土,也可以耕耘灵魂沙。 + + +advancements.stage3.buildcraft.title=升级线路 +advancements.stage3.buildcraft.description=制作一个红石引擎,开始为你的bc管道提供动力 + + +advancements.stage3.circuitboard.title=我是电路板 +advancements.stage3.circuitboard.description=使用工程师装配台制作一个电路板 + + +advancements.stage3.conveyorbelt.title=传送带 +advancements.stage3.conveyorbelt.description=沉浸工程的传送带非常适合物品运输! + + +advancements.stage3.creosote.title=杂酚油 +advancements.stage3.creosote.description=使用焦炉生产杂酚油和焦煤 + + +advancements.stage3.crudeoil.title=开采石油 +advancements.stage3.crudeoil.description=使用岩心钻井来探测区块中的原油。 修建一个沉浸原油的采油机来提取它,并用桶来装取一桶油来完成此进度。 + + +advancements.stage3.distillation2.title=给它一些气体 +advancements.stage3.distillation2.description=在精馏塔内进一步的加工原油将产生柴油、汽油和润滑油,你需要将每一种用桶装取来完成此进度。 这些液体能作为燃料,加速某些机器,或允许进一步的处理。 + + +advancements.stage3.drawercontroller.title=抽屉管理器 +advancements.stage3.drawercontroller.description=抽屉管理器可以让你的抽屉变成一个网络 + + +advancements.stage3.extendedcrafting1.title=扩展工作台:金 +advancements.stage3.extendedcrafting1.description=从 extended crafting 这模组中制作一个高级工作台 来进行更多合成 + + +advancements.stage3.filteredhopper.title=滤筛漏斗 +advancements.stage3.filteredhopper.description=使用滤筛漏斗从灵魂沙里筛出炼狱火之烬 + + +advancements.stage3.galgadorian.title=混合晶化金属 +advancements.stage3.galgadorian.description=收集强化混合晶化金属锭以进一步升级你的基础设施 + + +advancements.stage3.hibachi.title=火盆 +advancements.stage3.hibachi.description=better with mods 中的火盆会为你的釜锅和坩埚提供无限燃烧的火。 + + +advancements.stage3.iebook.title=工程师手册 +advancements.stage3.iebook.description=沉浸工艺的工程师手册很棒,请做一本 + + +advancements.stage3.iehammer.title=工程师锤 +advancements.stage3.iehammer.description=制作一个工程师锤来构建多方块机器,旋转方块 + + +advancements.stage3.liquidplastic.title=塑料的发明 +advancements.stage3.liquidplastic.description=使用模块化机械(modular machinery)的流体处理器,将熔融丙烯(propene)转换为熔融塑料(plastic) + + +advancements.stage3.modularmachinery.title=模块化 +advancements.stage3.modularmachinery.description=超导体控制器是每个模块化机械机器所需的主要模块。检查机械蓝图来了解如何构建每个结构。 + + +advancements.stage3.naphtha.title=精馏 +advancements.stage3.naphtha.description=现在你已经提取原油,搭建一个沉浸原油的精馏塔,将石油加工成熔融石脑油(naphtha)和柴油,并用桶来装取一桶来完成此进度。 + + +advancements.stage3.nether.title=前往下界 +advancements.stage3.nether.description=前往下界。 预建的传送门需存在于热带生物群落中,如沙漠和大草原。 请记住,世界生成按照逻辑上的热量图来进行的,如果你需要找到一个热带生物群落,你可以向北或向南走,直到你到达那个气候带。 + + +advancements.stage3.netherbrick.title=地狱砖块 +advancements.stage3.netherbrick.description=将下届淤泥放到better with mods的窑中,将其烧制成地狱砖块。 请参照better with mods来了解如何组装窑。 + + +advancements.stage3.netherexbiome.title=下界已经结冰了 +advancements.stage3.netherexbiome.description=寻找并进入北极的深渊生物群系。 + + +advancements.stage3.netherwart.title=地狱疣 +advancements.stage3.netherwart.description=找到并收集地狱疣。最常见的是在下界要塞中。 + + +advancements.stage3.nickel.title=褐铁矿 +advancements.stage3.nickel.description=找寻地表的褐铁矿样本,并获取镍矿簇! 通常在y值6~32的地方。 + + +advancements.stage3.oreexcavation.title=连锁矿工 +advancements.stage3.oreexcavation.description=使用挖掘强化可将连锁矿物功能添加到匠魂工具中。 你还可以在附魔台使用带有挖掘效果的附魔书来附魔非匠魂的工具。 + + +advancements.stage3.oreprospector.title=矿石勘探器 +advancements.stage3.oreprospector.description=制作一个矿石勘探器来帮你定位阶段3中的矿石 + + +advancements.stage3.plastic.title=可塑性 +advancements.stage3.plastic.description=从模块化机械(modular machinery)的塑料塑型机将熔融塑料(plastic)转化为可用于许多新配方的塑料片 + + +advancements.stage3.platinum.title=铂矿 +advancements.stage3.platinum.description=找寻地表的铂矿样本,并获取铂矿簇! 通常在y值3~25的地方。 + + +advancements.stage3.potash.title=木灰 +advancements.stage3.potash.description=在釜锅中使用原木、木板和木屑来制作木灰 + + +advancements.stage3.projector.title=多方块结构投影仪 +advancements.stage3.projector.description=利用多方块结构投影仪来投射你想要的沉浸工程结构,然后按照投影来搭建。 投影仪能够很方便的帮助你搭建结构(前提是你有足够多的材料)。 + + +advancements.stage3.propene.title=丙烯和丙烯配件 +advancements.stage3.propene.description=使用模块化机械(modular machinery)的化学混合器将允许你混合熔融石脑油(naphtha)和蒸汽来制作熔融丙烯(propene)。拿起你的桶向塑料的方向前进吧。 + + +advancements.stage3.rails.title=铁路 +advancements.stage3.rails.description=制作和使用铁轨,可以快速远距离进行运输活动 + + +advancements.stage3.redstone.title=朱砂矿 +advancements.stage3.redstone.description=找寻地表的朱砂样本,并获取红石! 通常在y值4~24的地方,名字也可能是红石或者朱砂 + + +advancements.stage3.root.title=第三纪元! +advancements.stage3.root.description=欢迎来到第三纪元! + + +advancements.stage3.sampledrill.title=岩芯样本 +advancements.stage3.sampledrill.description=在每个区块表面用岩心钻井来进行矿脉和原油定位。不要忘记它需要提供能量,你可以按住shift右键把岩芯样本放在地上。 + + +advancements.stage3.silverlead.title=方铅矿 +advancements.stage3.silverlead.description=找寻地表的方铅样本,并获取银矿簇和铅矿簇! 通常在y值16~50的地方。 + + +advancements.stage3.soundmuffler.title=超级消音器 +advancements.stage3.soundmuffler.description=噪音让你疯狂?放置一个超级消音器,并配置它使你不想听到的声音 + + +advancements.stage3.standardhull.title=史蒂夫的标准外壳 +advancements.stage3.standardhull.description=史蒂夫矿车的标准外壳可以让你制作更好的推车 + + +advancements.stage3.steam.title=热气腾腾 +advancements.stage3.steam.description=使用蒸汽锅炉或者太阳能集热塔制作出蒸汽,并用桶装装取一桶来完成此进度。 + + +advancements.stage3.steel.title=钢锭 +advancements.stage3.steel.description=高炉将允许你用焦煤和铁锭来制作钢。 + + +advancements.stage3.stevescartsassembler.title=史蒂夫矿车 +advancements.stage3.stevescartsassembler.description=矿车装配机将允许你组装一个模块化矿车。谨记,你可以制作升级配件并通过shift右键将它们附加到装配机的外部,以加快生产时间或使用其他功能。 + + +advancements.stage3.vacuumtube.title=真空管 +advancements.stage3.vacuumtube.description=在工程师装配台中制作真空管 + + +advancements.stage3.viescraft.title=飞行! +advancements.stage3.viescraft.description=使用所有发动机的物品制作一艘v1飞船。打开gui,看看你能升级什么,并定制你飞船的外观 + + +advancements.stage3.waterwheel.title=水车 +advancements.stage3.waterwheel.description=将水车连接到动能发电机来产生能量 + + +advancements.stage3.windmill.title=风车! +advancements.stage3.windmill.description=将风车和动能发电机连接起来产生能量 + + +advancements.stage3.wire.title=导线 +advancements.stage3.wire.description=你有能量了,现在你需要在基地周围传输它! + + +advancements.stage3.wireshock.title=一种用电方案 +advancements.stage3.wireshock.description=direwire安装可能会导致很多令人震惊的事情。所以你现在可以隔绝你的电线。但它无法解决direwire的安装问题。 + + +advancements.stage3.woodhull.title=史蒂夫矿车的木制外壳 +advancements.stage3.woodhull.description=制作木制外壳,来做一个最基础的史蒂夫矿车 + + +advancements.stage3.workbench.title=工程师装配台 +advancements.stage3.workbench.description=制作一个工程师装配台,并从蓝图上制作其他物品。 + + +# stage 4 +advancements.stage4.adapter.title=不要低估我的力量 +advancements.stage4.adapter.description=当你无法在不同的mod之间传输能量时,能量适配器可以帮助你转换。 + + +advancements.stage4.ae2panel.title=应用能源 +advancements.stage4.ae2panel.description=制作一个me终端,并在应用能源和精致储存之间选择,也可以两者兼有! + + +advancements.stage4.amadrontablet.title=amadron平板电脑 +advancements.stage4.amadrontablet.description=用充能站对amadron平板电脑进行充气,然后用它来订购物品。确保通过使用shift右键单击箱子或储存流体来设置上门收件与收获位置。 + + +advancements.stage4.ardite.title=阿迪特矿石 +advancements.stage4.ardite.description=在下届寻找阿迪特矿石并用挖掘等级为钴(cobalt)的镐挖掘。 + + +advancements.stage4.blockheads1.title=现代化厨房 +advancements.stage4.blockheads1.description=在熔炉里烹饪食物是有点麻烦,在你家里安装新厨房。从《傻瓜烹饪手册i》中开始你的烹饪吧! + + +advancements.stage4.blockheads2.title=继续前进! +advancements.stage4.blockheads2.description=使用《傻瓜烹饪手册ii》能够使用背包中的食材烹饪食物,或者作为烹饪的工具。 + + +advancements.stage4.blockheads3.title=完整的厨房 +advancements.stage4.blockheads3.description=傻瓜烹饪mod是一个多方块的模组,在彼此相邻放置时都才能有更多的功能。制作和放置一个烹饪桌后开始你的烹饪。然后你可以放置烤箱、冰箱、水槽和其他物品以获得更多的功能。 + + +advancements.stage4.certusquartz.title=石英矿 +advancements.stage4.certusquartz.description=找到一个在地表的石英样本,并挖掘各种石英!通常在y值6~40的地方 + + +advancements.stage4.cobalt.title=钴矿石 +advancements.stage4.cobalt.description=在下界找到和挖掘钴矿石! + + +advancements.stage4.compressediron.title=压力之下 +advancements.stage4.compressediron.description=制作一个星系mod的压缩机,用它来制作压缩金属板 + + +advancements.stage4.compressor.title=末影合金(高级) +advancements.stage4.compressor.description=制作一个星系mod的压缩机,用它来制作压缩金属板 + + +advancements.stage4.endcrystal.title=转世 +advancements.stage4.endcrystal.description=如果你想复活末影龙,制作4个末影水晶,并把它们放在末地的出口。每个水晶需要放置在3个基岩的中间。 + + +advancements.stage4.enderalloy1.title=末影合金 +advancements.stage4.enderalloy1.description=在末地中打败末影龙和挖掘些末影云母,可用来制作末影合金(基础) + + +advancements.stage4.enderalloy2.title=末影合金(增强) +advancements.stage4.enderalloy2.description=在末地中找到紫颂果,可用来制作末影合金(增强) + + +advancements.stage4.enderalloy3.title=末影合金(高级) +advancements.stage4.enderalloy3.description=在末地中找到潜影壳,末地烛和紫珀块,可用来制作末影合金(高级) + + +advancements.stage4.endercrafter.title=末影合成台 +advancements.stage4.endercrafter.description=制作末影合成台和末影发电机来进行进阶的合成 + + +advancements.stage4.extendedcraftingelite.title=精英工作台 +advancements.stage4.extendedcraftingelite.description=有些合成需要更多的空间。制作一个精英工作台吧! + + +advancements.stage4.fuelloader.title=填满她 +advancements.stage4.fuelloader.description=在火箭起飞前需要用燃料装载机为它加油 + + +advancements.stage4.inscriber.title=压印中... +advancements.stage4.inscriber.description=制作一个压印机,它可以压制模板和处理器以及其他机器 + + +advancements.stage4.laserassembly.title=组装程序设计 +advancements.stage4.laserassembly.description=订购组装程序:从amadron平板电脑中订取 + + +advancements.stage4.launchpad.title=推进器启动! +advancements.stage4.launchpad.description=在火箭起飞时,你需要在3x3的地方放置9个火箭发射平台,然后将火箭放在平台中心。 + + +advancements.stage4.machinecasing.title=机械外壳 +advancements.stage4.machinecasing.description=高级的机器需要更复杂的机械外壳 + + +advancements.stage4.manyullyn.title=玛玉灵 +advancements.stage4.manyullyn.description=在冶炼炉中融合阿迪特与钴来创造出玛玉灵。 + + +advancements.stage4.moon.title=抵达月球! +advancements.stage4.moon.description=发射火箭并降落在月球上 + + +advancements.stage4.nasaworkbench.title=基础太空计划 +advancements.stage4.nasaworkbench.description=制作一个nasa工程台开始你的月球之旅 + + +advancements.stage4.oxygencollector.title=包括氧气 +advancements.stage4.oxygencollector.description=为了制作星系mod的燃油,你需要在沉浸工艺的炼油厂中将煤油和氧气结合。氧气最初可以被氧气收集器收集。 + + +advancements.stage4.plasticmixer.title=塑料塑形机 +advancements.stage4.plasticmixer.description=制作模块化机械(modular machinery)的塑料塑形机,使熔融塑料(plastic)塑形成塑料片 + + +advancements.stage4.presses.title=保持压印 +advancements.stage4.presses.description=找到压印机所需工程压印模板、逻辑压印模板和硅压印模板,是应用能源(ae2)和精致储存(rs)所需要的材料。 + + +advancements.stage4.pressurechamberwall.title=压力室 +advancements.stage4.pressurechamberwall.description=制作压力室墙壁并建筑一个气动工艺的压力室 + + +advancements.stage4.printedcircuitboard.title=印刷电路板 +advancements.stage4.printedcircuitboard.description=使用你的气动装置,创建一个印刷电路板 + + +advancements.stage4.prospector4.title=4级探矿者 +advancements.stage4.prospector4.description=制作一个高级矿石勘探器来帮你定位阶段4中的矿石 + + +advancements.stage4.root.title=第四纪元 +advancements.stage4.root.description=欢迎来到第四纪元! + + +advancements.stage4.rsgrid.title=精致储存 +advancements.stage4.rsgrid.description=制作一个精致储存(rs)的终端,并在应用能源和精致储存之间选择,也可以两者兼有! + + +advancements.stage4.silicon.title=硅矿石 +advancements.stage4.silicon.description=找到一个在地表的硅样本,并挖掘原生硅!通常在y值24~48的地方 + + +advancements.stage4.solidendereye.title=可重复使用的眼睛 +advancements.stage4.solidendereye.description=制作一个固态末影之眼,能更容易的找到末地门 + + +advancements.stage4.spacesuit.title=穿着犀利的男人 +advancements.stage4.spacesuit.description=制作一整套1阶太空服,以防你登月时受到压力和辐射 + + +advancements.stage4.t1rocket.title=火箭飞船 +advancements.stage4.t1rocket.description=制作一艘一阶火箭 + + +advancements.stage4.theend.title=前往末地 +advancements.stage4.theend.description=找到并进入末地。 + + +# stage 5 +advancements.stage5.charger3.title=极速充电 +advancements.stage5.charger3.description=三级充电器能够让你比先前等级的充电器更为快速的充能物品 + + +advancements.stage5.cheese.title=月亮是奶酪做的 +advancements.stage5.cheese.description=奶酪能够非常罕见的在月球上发现,就像其他月球上的矿石,采石场能够直接挖掘它。 + + +advancements.stage5.compactmachines.title=小型化工程 +advancements.stage5.compactmachines.description=想创建自己的随身空间并解锁另一个机箱合成表吗?制作并放置空间压缩机械领域投影器来开始这个工程 + + +advancements.stage5.creativecompressor.title=创造模式压缩机 +advancements.stage5.creativecompressor.description=合成一个气动工艺(pneumaticraft)的创造模式压缩机 + + +advancements.stage5.creativeenergycube.title=创造能量立方 +advancements.stage5.creativeenergycube.description=合成一个通用机械(mekanism)的创造能量立方 + + +advancements.stage5.creativefluidtank.title=创造液体储罐 +advancements.stage5.creativefluidtank.description=合成一个通用机械(mekanism)的创造液体储罐 + + +advancements.stage5.creativejetpack.title=创造模式喷射背包 +advancements.stage5.creativejetpack.description=合成一个创造模式喷射背包 + + +advancements.stage5.creativemodifer.title=创造强化 +advancements.stage5.creativemodifer.description=合成一个匠魂模组的创造强化 + + +advancements.stage5.desh.title=探索戴斯矿 +advancements.stage5.desh.description=在火星上挖掘戴斯矿 + + +advancements.stage5.diamond.title=钻石! +advancements.stage5.diamond.description=找寻地面的金伯利岩样本来发现钻石。通常矿石位于y值2~20的地方 + + +advancements.stage5.diamondjetpack.title=钻石喷射背包 +advancements.stage5.diamondjetpack.description=升级到钻石喷射背包 + + +advancements.stage5.electrumjetpack.title=琥珀金喷射背包 +advancements.stage5.electrumjetpack.description=合成琥珀金喷射背包 + + +advancements.stage5.emerald.title=绿宝石之梦 +advancements.stage5.emerald.description=找寻地面的绿柱石样本来发现绿宝石。通常矿石位于y值4~32的地方 + + +advancements.stage5.emeraldjetpack.title=绿宝石喷射背包 +advancements.stage5.emeraldjetpack.description=合成一个绿宝石喷射背包 + + +advancements.stage5.inferiumessence.title=下级精华 +advancements.stage5.inferiumessence.description=下级精华是魔法农业最为重要的起始物品。可以从很多地方搜集来的物品合成它 + + +advancements.stage5.mars.title=红色星球 +advancements.stage5.mars.description=发射火箭,登陆到火星 + + +advancements.stage5.marsrover.title=四处游荡 +advancements.stage5.marsrover.description=在火星上行走可能会很慢,合成并使用火星漫游车!快去地牢中找寻nasa工程图吧! + + +advancements.stage5.neptune.title=海王星! +advancements.stage5.neptune.description=发射火箭,登陆到海王星。收集海王星地表方块来完成此进度。 + + +advancements.stage5.osmium.title=锇矿石 +advancements.stage5.osmium.description=地表找寻锇矿样本!锇矿通常位于y值2~10的地方 + + +advancements.stage5.paperclip.title=通用回形针 +advancements.stage5.paperclip.description=制作世界上第一个回形针 + + +advancements.stage5.prospectorstage5.title=终极矿石勘探器 +advancements.stage5.prospectorstage5.description=合成一个终极矿石勘探器,找寻地下的所有矿物 + + +advancements.stage5.prosperityshard.title=活化水晶碎片 +advancements.stage5.prosperityshard.description=活化水晶碎片是神秘农业进阶所必须的东西。使用充能台合成它 + + +advancements.stage5.root.title=第五纪元 +advancements.stage5.root.description=欢迎来到下一个纪元! + + +advancements.stage5.saturn.title=土星光环 +advancements.stage5.saturn.description=发射去往土星的火箭……然后……登陆……是的。收集土星地表方块来完成此进度。 + + +advancements.stage5.scanner.title=扫描器 +advancements.stage5.scanner.description=充能之后,扫描器能够扫描你周围的东西。shift点击打开gui可以塞入扫描模块。然后左击来开始扫描吧 + + +advancements.stage5.skystone.title=陨石 +advancements.stage5.skystone.description=月球发现的奶酪能够在通用机械的冶金灌注机中强化,变成应用能源的陨石 + + +advancements.stage5.spacesuit4.title=最男人的穿着 +advancements.stage5.spacesuit4.description=合成全套的4阶太空服,从而让你在遥远星球极高等级压力和强辐射环境中,穿梭自由 + + +advancements.stage5.spawnerseeker.title=你是哈利,巫师 +advancements.stage5.spawnerseeker.description=寻找地牢来获取蓝图可能很困难。制作一个刷怪笼探测器来定位128格范围内的刷怪笼。 + + +advancements.stage5.t2rocket.title=更大!更好!更快! +advancements.stage5.t2rocket.description=修建一个二阶火箭,探索更为遥远的星空 + + +advancements.stage5.ultimatecraftingtable.title=终极工作台 +advancements.stage5.ultimatecraftingtable.description=制作出终极工作台,从而合成强大的创造模式物品 + + +advancements.stage5.ultimateingot.title=终极金属锭 +advancements.stage5.ultimateingot.description=在精英合成台中合成很多种锭,获取得到终极锭! + + +advancements.stage5.sevadus.title=谁是最终Boss +advancements.stage5.sevadus.description=你需要召唤史上最棒的MC玩家\uff0Sevadusc。使用AbyssalCraft 的仪式召唤他,然后把他杀死!你需要获得他的OJ来完成这个进度。 + + +advancements.stage5.wirelesscharger.title=无线充电器 +advancements.stage5.wirelesscharger.description=无线充电器可以摆放在基地里面,非常方便的为你想要充能的所有物品充能 + + +############################################### +########## sevtech: ages custom tips ########## +############################################### +mods.tips.tips.1=只有在河流和海洋生物群系,水才是无限的。 +mods.tips.tips.2=世界生成安装逻辑上的热量图来进行的。想要找到雪原或者沙漠?朝着南北方向一直走就能找到! +mods.tips.tips.3=行走的时候,玩家坐标就会改变。 +mods.tips.tips.4=有安装waila模组,但是你需要在进度中解锁才能使用! +mods.tips.tips.5=Sevtech 有安装小地图!你不需要自己加一个! +mods.tips.tips.6=连锁挖矿也装在整合中,你需要在游戏中发现并解锁它。 +mods.tips.tips.7=原版进度界面能够指导你游玩整合。你可以在原版菜单主界面,或者按下“l”按键(默认)。 +mods.tips.tips.8=点击物品栏的胡萝卜按钮能够显示你的营养水平。营养水平很高时候能够带来正面效果。反之就会带来负面效果。 +mods.tips.tips.9=解锁新的阶段才会显示新的物品! +mods.tips.tips.10=解锁了新的阶段,矿物才会显示。 +mods.tips.tips.11=不知道如何制作出某个物品?看看 JEI ,那里也许有你要的答案。 +mods.tips.tips.12=特定方块上玩家移动速度会比较快,比如草径。 +mods.tips.tips.13=矿物按照大型矿脉方式生成,在一个区块的地面能够找到一些样本,从而推断地下的矿脉种类。 +mods.tips.tips.14=摁下 F7 查看地表亮度等级,摁下 F9 查看区块边界。 +mods.tips.tips.15=想要进入下一阶段?跟着进度走。 +mods.tips.tips.16=当你解锁了新的阶段,才能够进入其他维度。 +mods.tips.tips.17=一些方块会伪装成其他方块,只有在解锁后才会显示。所以适时会到你先前探索过的地方,看看你能够发现些什么新东西。 +mods.tips.tips.18=工业阶段才能够解锁双倍矿物。 +mods.tips.tips.19=远离 Glen !!! +mods.tips.tips.20=戏初期不会出现全部敌对生物。其中一些只会在后期生成。 +mods.tips.tips.21=要找到区块中矿脉的位置?使用 prospectors 模组中的物品吧。 +mods.tips.tips.22=无法使用 f3 查看坐标。解锁并使用 info accessories 可查看坐标,使用标记可以找到方向。 +mods.tips.tips.23=生后死亡指南针会出现在你的物品栏中。它会指引你找到你的墓碑。 +mods.tips.tips.24=拿着钥匙对着墓碑shift右击就可以获得你的物品了。 +mods.tips.tips.25=筏是早期的水上交通工具。它们更易坏且行驶更缓慢。 +mods.tips.tips.26=莫尼奶酪酱(1 gal);2 qt 全脂牛奶;2 qts 重奶油;面糊(250克黄油/ 250克面粉);香囊(海湾,胡椒,百里香);第戎(适量);切碎的干酪(大量/味道);将牛奶/奶油/小袋煮沸(去除小袋)然后减少热量,慢慢加入面糊(应该是金发)并搅拌直至吸收,加入第戎和切碎的奶酪味道 +mods.tips.tips.27=钥匙放在副手会自动将新放置的储物抽屉上锁。 +mods.tips.tips.28=尽量不要让马力工具和马横跨区块边界。 +mods.tips.tips.29=你可以跳跃后按下潜行键再松开以蹬墙跳。 \ No newline at end of file diff --git a/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/descriptions.zs b/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/descriptions.zs new file mode 100644 index 000000000..4ee010809 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/descriptions.zs @@ -0,0 +1,471 @@ +/* + SevTech: Ages Item Descriptions Script + + This script allows for the addition of JEI Descriptions to ItemStacks. + + Note: These scripts are created and for the usage in SevTech: Ages and other + modpacks curated by DarkPacks. You can use these scripts for reference and for + learning but not for copying and pasting and claiming as your own. +*/ +import crafttweaker.item.IItemStack; + +import mods.jei.JEI; + +static descriptionPairs as string[][IItemStack] = { + : [ + "所需材料:", + "4 x 无效果强化部件", + "16 x 结构方块(1 级及以上)", + "9 x 任意类型太阳能板" + ], + : [ + "所需材料:", + "4 x 无效果强化部件", + "24 x 结构方块(2 级及以上)", + "25 x 任意类型太阳能板" + ], + : [ + "所需材料:", + "8 x 无效果强化部件", + "32 x 结构方块(3 级及以上)", + "49 x 任意类型太阳能板" + ], + : [ + "所需材料:", + "8 x 无效果强化部件", + "40 x 结构方块(4 级及以上)", + "81 x 任意类型太阳能板" + ], + : [ + "所需材料:", + "12 x 无效果强化部件", + "48 x 结构方块(5 级及以上)", + "121 x 任意类型太阳能板" + ], + : [ + "所需材料:", + "12 x 无效果强化部件", + "56 x 结构方块(6 级及以上)", + "169 x 任意类型太阳能板" + ], + : [ + "所需材料:", + "24 x 结构方块(1 级及以上)", + "20 x 结构镶板", + "2 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "4 x 无效果强化部件", + "32 x 结构方块(2 级及以上)", + "16 x 结构镶板", + "3 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "8 x 无效果强化部件", + "56 x 结构方块(3 级及以上)", + "52 x 结构镶板", + "4 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "12 x 无效果强化部件", + "56 x 结构方块(4 级及以上)", + "56 x 结构镶板", + "5 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "16 x 无效果强化部件", + "72 x 结构方块(5 级及以上)", + "36 x 结构镶板", + "6 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "20 x 无效果强化部件", + "92 x 结构方块(6 级及以上)", + "56 x 结构镶板", + "6 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "24 x 结构方块(1 级及以上)", + "20 x 结构镶板", + "2 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "4 x 无效果强化部件", + "32 x 结构方块(2 级及以上)", + "16 x 结构镶板", + "3 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "8 x 无效果强化部件", + "56 x 结构方块(3 级及以上)", + "52 x 结构镶板", + "4 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "12 x 无效果强化部件", + "56 x 结构方块(4 级及以上)", + "56 x 结构镶板", + "5 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "16 x 无效果强化部件", + "72 x 结构方块(5 级及以上)", + "36 x 结构镶板", + "6 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "20 x 无效果强化部件", + "92 x 结构方块(6 级及以上)", + "56 x 结构镶板", + "6 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "24 x 结构方块(1 级及以上)", + "20 x 结构镶板", + "2 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "4 x 无效果强化部件", + "32 x 结构方块(2 级及以上)", + "16 x 结构镶板", + "3 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "8 x 无效果强化部件", + "56 x 结构方块(3 级及以上)", + "52 x 结构镶板", + "4 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "12 x 无效果强化部件", + "56 x 结构方块(4 级及以上)", + "56 x 结构镶板", + "5 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "16 x 无效果强化部件", + "72 x 结构方块(5 级及以上)", + "36 x 结构镶板", + "6 x 激光核心", + "1 x 任意类型激光透镜" + ], + : [ + "所需材料:", + "20 x 无效果强化部件", + "92 x 结构方块(6 级及以上)", + "56 x 结构镶板", + "6 x 激光核心", + "1 x 任意类型激光透镜" + ], + + : [ + "所需材料:", + "4 x 结构方块(1 级及以上)", + "3 x 避雷针", + "3 x 绝缘避雷针" + ], + : [ + "所需材料:", + "4 x 结构方块(2 级及以上)", + "4 x 避雷针", + "4 x 绝缘避雷针" + ], + : [ + "所需材料:", + "4 x 结构方块(3 级及以上)", + "5 x 避雷针", + "5 x 绝缘避雷针" + ], + : [ + "所需材料:", + "13 x 结构方块(4 级及以上)", + "4 x 避雷针", + "16 x 绝缘避雷针" + ], + : [ + "所需材料:", + "13 x 结构方块(5 级及以上)", + "6 x 避雷针", + "22 x 绝缘避雷针" + ], + : [ + "所需材料:", + "13 x 结构方块(5 级及以上)", + "8 x 避雷针", + "28 x 绝缘避雷针" + ], + + : [ + "所需材料:", + "4 x 无效果强化部件", + "20 x 结构方块(1 级及以上)", + "12 x 结构镶板" + ], + : [ + "所需材料:", + "8 x 无效果强化部件", + "36 x 结构方块(2 级及以上)", + "24 x 结构镶板" + ], + : [ + "所需材料:", + "12 x 无效果强化部件", + "56 x 结构方块(3 级及以上)", + "40 x 结构镶板" + ], + : [ + "所需材料:", + "16 x 无效果强化部件", + "80 x 结构方块(4 级及以上)", + "60 x 结构镶板" + ], + : [ + "所需材料:", + "20 x 无效果强化部件", + "108 x 结构方块(5 级及以上)", + "84 x 结构镶板" + ], + : [ + "所需材料:", + "24 x 无效果强化部件", + "140 x 结构方块(5 级及以上)", + "112 x 结构镶板" + ], + : [ + "使用Abyssalcraft的", + "仪式召唤一只乌鸦。详细", + "内容请查看死灵之书" + ], + + /* + Location Descriptions for Ore and Samples + */ + // Malachite + : [ + "生成于", + "森林(Forest)生态岛" + ], + : [ + "生成于", + "森林(Forest)生态岛" + ], + // Azurite + : [ + "生成于", + "黑暗之地(Darkland)生态岛" + ], + : [ + "生成于", + "黑暗之地(Darkland)生态岛" + ], + // Cassiterite + : [ + "生成于", + "白桦林(Birch Forest)和平原(Plains)生态岛" + ], + : [ + "生成于", + "白桦林(Birch Forest)和平原(Plains)生态岛" + ], + // Teallite + : [ + "生成于", + "黑森林(Roofed Forest)和热带草原(Savannah)生态岛" + ], + : [ + "生成于", + "黑森林(Roofed Forest)和热带草原(Savannah)生态岛" + ], + // Coal + : [ + "生成于", + "黑暗之地(Darklands),森林(Forest)和黑森林(Roofed Forest)生态岛" + ], + : [ + "生成于", + "黑暗之地(Darklands),森林(Forest)和黑森林(Roofed Forest)生态岛" + ], + // Hematite + : [ + "生成于", + "草甸(Meadow),平原(Plains),热带草原(Savannah)和沼泽(Swampland)生态岛" + ], + : [ + "生成于", + "草甸(Meadow),平原(Plains),热带草原(Savannah)和沼泽(Swampland)生态岛" + ], + // Rock Crystal + : [ + "生成于", + "冷针叶林(Cold Taiga)和积雪的针叶林(Snowy Coniferous Forest)生态岛" + ], + : [ + "生成于", + "冷针叶林(Cold Taiga)和积雪的针叶林(Snowy Coniferous Forest)生态岛" + ], + // Lapis + : [ + "生成于", + "绿色沼泽(Green Swamp),沼泽(Swampland),温带雨林(Temperate Rainforest)和蘑菇岛(Mushroom)生态岛" + ], + : [ + "生成于", + "绿色沼泽(Green Swamp),沼泽(Swampland),温带雨林(Temperate Rainforest)和蘑菇岛(Mushroom)生态岛" + ], + // Gold + : [ + "生成于", + "恶地(Badlands)和平顶山(Mesa)生态岛" + ], + : [ + "生成于", + "恶地(Badlands)和平顶山(Mesa)生态岛" + ], + // Platinum + : [ + "生成于", + "岩石高原(Rocky Plateau)生态岛" + ], + : [ + "生成于", + "岩石高原(Rocky Plateau)生态岛" + ], + // Limonite + : [ + "生成于", + "秋树林(Autumnal Woods)和丛林(Jungle)生态岛" + ], + : [ + "生成于", + "秋树林(Autumnal Woods)和丛林(Jungle)生态岛" + ], + // Galena + : [ + "生成于", + "黑暗森林(Darklands Forest)和冰川(Glacier)生态岛" + ], + : [ + "生成于", + "黑暗森林(Darklands Forest)和冰川(Glacier)生态岛" + ], + // Redstone / Cinnabar + : [ + "生成于", + "沙漠(Desert)和红木针叶山林(Redwood Taiga Hills)生态岛" + ], + : [ + "生成于", + "针叶林(Taiga)生态岛" + ], + : [ + "生成于", + "沙漠(Desert),红木针叶山林(Redwood Taiga Hills)", + "和针叶林(Taiga)生态岛" + ], + // Bauxite + : [ + "生成于", + "小型雨林(Mini Jungle),变异白桦林(Mutated Birch Forest)和林地(Woodlansd)生态岛" + ], + : [ + "生成于", + "小型雨林(Mini Jungle),变异白桦林(Mutated Birch Forest)和林地(Woodlansd)生态岛" + ], + // Quartz + : [ + "生成于", + "门勒格林(meneglin)和茂盛山丘(Lush Hills)生态岛" + ], + : [ + "生成于", + "门勒格林(meneglin)和茂盛山丘(Lush Hills)生态岛" + ], + // Silicon + : [ + "生成于", + "雨林(Jungle)和变异平原(Mutated Plains)生态岛" + ], + : [ + "生成于", + "雨林(Jungle)和变异平原(Mutated Plains)生态岛" + ], + // Diamond + : [ + "生成于", + "冰刺地(Glacier Spikes)生态岛" + ], + : [ + "生成于", + "冰刺地(Glacier Spikes)生态岛" + ], + // Osmium + : [ + "生成于", + "变异森林(Mutated Forest)和冰原(Ice Flats)生态岛" + ], + : [ + "生成于", + "变异森林(Mutated Forest)和冰原(Ice Flats)生态岛" + ], + // Emerald + : [ + "生成于", + "峭壁(Extreme Hills)生态岛" + ], + : [ + "生成于", + "峭壁(Extreme Hills)生态岛" + ], + // Uranium + : [ + "生成于", + "珊瑚侵染沼泽(Coralium Infested Swamp)生态岛" + ], + : [ + "生成于", + "珊瑚侵染沼泽(Coralium Infested Swamp)生态岛" + ], + + : [ + "生成于暮色森林战利箱", + "或通过Bonsai Trees模组获得" + ] +}; + +function init() { + for item, descriptionArray in descriptionPairs { + JEI.addDescription(item, descriptionArray); + } +} diff --git a/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/rename.zs b/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/rename.zs new file mode 100644 index 000000000..5bd1cb33d --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/rename.zs @@ -0,0 +1,45 @@ +/* + SevTech: Ages Item Renaming Script + + This script allows for the renaming of an item. + + Note: These scripts are created and for the usage in SevTech: Ages and other + modpacks curated by DarkPacks. You can use these scripts for reference and for + learning but not for copying and pasting and claiming as your own. +*/ +import crafttweaker.item.IItemStack; + +static renameMap as string[IItemStack] = { + : "湿鞣制兽皮", + + : "米粉", + + : "燧石锯条", + + : "叮当", + + : "纸浆", + + : "金棒", + + : "铂手杖", + + //Space Platinum + : "太空铂块", + : "§9太空铂锭", + : "§9压缩太空铂", + + //Chisel & Bits + : "微粒凿子", + + : "旅行地图令牌", + + //Fixing Localization + : "狼头" +}; + +function init() { + for item, displayName in renameMap { + item.displayName = displayName; + } +} diff --git a/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/tooltips.zs b/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/tooltips.zs new file mode 100644 index 000000000..d4f9b76a6 --- /dev/null +++ b/project/Sevtech Age of the Sky/3.2.1/scripts/crafttweaker/itemModifiers/tooltips.zs @@ -0,0 +1,796 @@ +/* + SevTech: Ages Tooltips Modification Script + + This script allows modification of tooltips. + + Note: These scripts are created and for the usage in SevTech: Ages and other + modpacks curated by DarkPacks. You can use these scripts for reference and for + learning but not for copying and pasting and claiming as your own. +*/ +import crafttweaker.formatting.IFormattedText; +import crafttweaker.item.IItemStack; + +static itemTooltipMap as IFormattedText[][IItemStack] = { + // ================================== + // Prospecting Rods + : [ + format.yellow("这个工具在第一纪元"), + format.yellow("及其以下阶段可用"), + format.red("能够检测未解锁矿物"), + format.red("检测范围:" ~ 48 ~ " 格方块直线距离") + ], + :[ + format.yellow("这个工具在第二纪元"), + format.yellow("及其以下阶段可用"), + format.red("能够检测未解锁矿物"), + format.red("检测范围:" ~ 48 ~ " 格方块直线距离") + ], + :[ + format.yellow("这个工具在第三纪元"), + format.yellow("及其以下阶段可用"), + format.red("能够检测未解锁矿物"), + format.red("检测范围:" ~ 48 ~ " 格方块直线距离") + ], + :[ + format.yellow("这个工具在第四纪元"), + format.yellow("及其以下阶段可用"), + format.red("能够检测未解锁矿物"), + format.red("检测范围:" ~ 48 ~ " 格方块直线距离") + ], + :[ + format.yellow("这个工具在第五纪元"), + format.yellow("及其以下阶段可用"), + format.red("能够检测未解锁矿物"), + format.red("检测范围:" ~ 48 ~ " 格方块直线距离") + ], + + // ================================== + // Geolosys Ore Names for User Friendliness AKA I'm tired of using my brain to remember things + : [ + format.red("铁矿") + ], + :[ + format.red("铁矿和镍矿") + ], + :[ + format.red("铜矿") + ], + :[ + format.red("铜矿") + ], + :[ + format.red("锡矿") + ], + :[ + format.red("锡矿") + ], + :[ + format.red("银矿和铅矿") + ], + :[ + format.red("铝矿") + ], + :[ + format.red("铂矿") + ], + :[ + format.red("铀矿") + ], + :[ + format.red("锌矿") + ], + :[ + format.red("红石矿") + ], + :[ + format.red("钻石矿") + ], + :[ + format.red("绿宝石矿") + ], + + // ================================== + // Someone had to do it! xD + : [ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + :[ + format.gold("可合成的") + ], + + // ================================== + // Environmental Tech Structures + // Lightning + : [ + format.aqua("结构大小: 3x7x3") + ], + :[ + format.aqua("结构大小: 3x9x3") + ], + :[ + format.aqua("结构大小: 3x11x3") + ], + :[ + format.aqua("结构大小: 3x13x3") + ], + :[ + format.aqua("结构大小: 3x18x3") + ], + :[ + format.aqua("结构大小: 3x23x3") + ], + + // Nano + : [ + format.aqua("结构大小: 5x3x5") + ], + :[ + format.aqua("结构大小: 7x4x7") + ], + :[ + format.aqua("结构大小: 9x5x9") + ], + :[ + format.aqua("结构大小: 11x6x11") + ], + :[ + format.aqua("结构大小: 13x7x13") + ], + :[ + format.aqua("结构大小: 15x8x15") + ], + + // Solar + : [ + format.aqua("结构大小:5x2x5") + ], + :[ + format.aqua("结构大小:7x2x7") + ], + :[ + format.aqua("结构大小:9x2x9") + ], + :[ + format.aqua("结构大小:11x2x11") + ], + :[ + format.aqua("结构大小:13x2x13") + ], + :[ + format.aqua("结构大小:15x2x15") + ], + + // Void Botanic Miner + : [ + format.aqua("结构大小:7x4x7") + ], + :[ + format.aqua("结构大小:7x5x7") + ], + :[ + format.aqua("结构大小:11x6x11") + ], + :[ + format.aqua("结构大小:11x7x11") + ], + :[ + format.aqua("结构大小:11x8x11") + ], + :[ + format.aqua("结构大小:13x8x13") + ], + + // Void Ore Miner + : [ + format.aqua("结构大小:7x4x7") + ], + :[ + format.aqua("结构大小:7x5x7") + ], + :[ + format.aqua("结构大小:11x6x11") + ], + :[ + format.aqua("结构大小:11x7x11") + ], + :[ + format.aqua("结构大小:11x8x11") + ], + :[ + format.aqua("结构大小:13x8x13") + ], + + // Void Res Miner + : [ + format.aqua("结构大小:7x4x7") + ], + :[ + format.aqua("结构大小:7x5x7") + ], + :[ + format.aqua("结构大小:11x6x11") + ], + :[ + format.aqua("结构大小:11x7x11") + ], + :[ + format.aqua("结构大小:11x8x11") + ], + :[ + format.aqua("结构大小:13x8x13") + ], + + // ================================== + // Galacticraft Schematic Helpful Hints + : [ + format.gray("一阶珍宝箱, 在攻略完月球一阶地牢后发现。"), + ], + :[ + format.gray("二阶火箭的工程图可以在一阶珍宝箱中找到,在攻略完月球地牢后找到。"), + ], + :[ + format.gray("三阶火箭的工程图可以在二阶珍宝箱中找到,有时可以在完成火星地牢后找到。"), + ], + :[ + format.gray("运货火箭工程图可以在二阶珍宝箱中找到,在攻略完二阶地牢后发现。"), + ], + :[ + format.gray("在击败BOSS爬行者之后,在二阶珍宝箱中找到。"), + ], + :[ + format.gray("这份工程图可以在水星上的4阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在木星上的5阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在土星上的6阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在天王星上的7阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在海王星上的8阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在冥王星上的9阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在阋神星上的10阶珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在珍宝箱中发现。"), + ], + :[ + format.gray("这份工程图可以在金星上的4阶珍宝箱中发现。"), + ], + + // ================================== + // Misc + : [ + format.red("野熊的最爱!") + ], + + : [ + format.yellow("开启车的钥匙!"), + format.yellow("可以让人坐在车里"), + format.yellow("这是用铁制作而成的") + ], + + : [ + format.red("一个高级木质漏斗") + ], + :[ + format.red("一个高级木质漏斗") + ], + :[ + format.red("一个汤姆汉克斯风格的船") + ], + :[ + format.red("一个汤姆汉克斯风格的船") + ], + :[ + format.red("一个汤姆汉克斯风格的船") + ], + :[ + format.red("一个汤姆汉克斯风格的船") + ], + :[ + format.red("一个汤姆汉克斯风格的船") + ], + :[ + format.red("一个汤姆汉克斯风格的船") + ], + : [ + format.red("只能生成 400 次") + ], + :[ + format.red("这是一个豪华的床!") + ], + :[ + format.red("下方需要热源") + ], + :[ + format.red("将物品管道传输过一个方块") + ], + :[ + format.red("传输过热流体后,可能会缓慢熔化") + ], + :[ + format.red("按下鼠标按钮来充能"), + format.red("松开来丢出") + ], + : [ + format.red("右击火源"), + format.red("或者点燃火把来照明") + ], + :[ + format.red("与工作桩一起使用"), + format.red("多次右击即可合成") + ], + :[ + format.red("只能够用于修复工具") + ], + :[ + format.red("在大多数生物群系,桑树很少生成") + ], + : [ + format.red("需要石板多次右击"), + format.red("来进行合成") + ], + :[ + format.red("需要石板多次右击"), + format.red("来进行合成") + ], + :[ + format.red("无法被修复") + ], + :[ + format.red("无法被修复") + ], + : [ + format.yellow("为 Industrial Foregoing 的机器升级") + ], + :[ + format.yellow("为 Industrial Foregoing 的机器升级") + ], + :[ + format.yellow("为 Industrial Foregoing 的机器升级") + ], + :[ + format.yellow("为 Industrial Foregoing 的机器升级") + ], + : [ + format.yellow("使用“马拉车具”模"), + format.yellow("组的按键来拴上马") + ], + :[ + format.yellow("使用“马拉车具”模"), + format.yellow("组的按键来拴上马") + ], + :[ + format.yellow("使用“马拉车具”模"), + format.yellow("组的按键来拴上马") + ], + : [ + format.red("无法被修复") + ], + :[ + format.red("无法被修复") + ], + :[ + format.red("无法被修复") + ], + :[ + format.red("无法被修复") + ], + :[ + format.red("无法被修复") + ], + :[ + format.red("无法被修复") + ], + :[ + format.red("与燧石一起修复") + ], + :[ + format.red("手持两个木齿轮"), + format.red("右击来修复"), + format.red("或者直接合成来修复") + ], + :[ + format.red("吃下这个物品能够"), + format.red("解锁高级地图") + ], + :[ + format.red("可以作为战利品在"), + format.red("神庙,碎岩塔,"), + format.red("鬼魂城堡发现"), + format.red("或者在Boss的战利品"), + format.red("和稀有掉落几率"), + format.red("来自某些交错次元的敌人") + ], + :[ + format.red("能够合成第四纪元及其以下阶段物品") + ], + :[ + format.red("能够合成第四纪元及其以下阶段物品") + ], + :[ + format.red("能够合成第四纪元及其以下阶段物品") + ], + :[ + format.red("能够合成第五纪元及其以下阶段物品") + ], + :[ + format.red("能够合成第五纪元及其以下阶段物品") + ], + :[ + format.red("能够合成第五纪元及其以下阶段物品") + ], + :[ + format.red("能够合成第五纪元及其以下阶段物品") + ], + : [ + format.red("用以给早期机器供能"), + format.red("比如说磨石") + ], + : [ + format.aqua("请使用手动曲柄"), + format.aqua("直到动能成功传输到机器") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + :[ + format.red("需要开阔露天才能起作用") + ], + : [ + format.red("无法在自然生成中找到"), + format.red("红柏树只能通过图腾模组的沙法尔圆舞仪式获得") + ], + :[ + format.red("无法在自然生成中找到"), + format.red("红柏树只能通过图腾模组的沙法尔圆舞仪式获得") + ], + :[ + format.red("无法在自然生成中找到"), + format.red("红柏树只能通过图腾模组的沙法尔圆舞仪式获得") + ], + :[ + format.red("无法在自然生成中找到"), + format.red("红柏树只能通过图腾模组的沙法尔圆舞仪式获得") + ], + :[ + format.red("无法在自然生成中找到"), + format.red("红柏树只能通过图腾模组的沙法尔圆舞仪式获得") + ], + + + // Add tooltips to explain how to find eagles / obtain the eagle drops + : [ + format.red("没有在世界上找到"), + format.red("鹰是通过图腾仪式产生的") + ], + :[ + format.red("没有在世界上找到"), + format.red("鹰是通过图腾仪式产生的") + ], + + // Death Releated + :[ + format.red("站在你的坟墓上 Shift 即可返还物品") + ], + : [ + format.aqua("死亡指南针将会通过玩家死亡"), + format.aqua("或者玩家皮肤对应生物获得") + ], + + // Space! + : [ + format.red("这台机器只能在太空中工作!") + ], + + // Creeping Moss + : [ + format.red("要改变生物群系,用苔藓潜行右键可以将生物群系绑定为你所在的生物群系。") + ], + + : [ + format.red("需要红石信号才能点火") + ], + + // Extra Planets space suit + :[ + format.red("只有当安装模块后才开始消耗能量"), + format.red("只能使用储能模块充能") + ], + :[ + format.red("只有当安装模块后才开始消耗能量"), + format.red("只能使用储能模块充能") + ], + :[ + format.red("只有当安装模块后才开始消耗能量"), + format.red("只能使用储能模块充能") + ], + :[ + format.red("只有当安装模块后才开始消耗能量"), + format.red("只能使用储能模块充能") + ], + + // Coralium + : [ + format.aqua("请教Overworld篇章在禁忌的知识中"), + format.aqua("请在死灵之书中寻找更多的信息"), + format.aqua("矿石可以在地下海洋找到"), + format.aqua("和沼泽生物群系") + ], + : [ + format.aqua("请教Overworld篇章在禁忌的知识中"), + format.aqua("请在死灵之书中寻找更多的信息"), + format.aqua("矿石可以在地下海洋找到"), + format.aqua("和沼泽生物群系") + ], + : [ + format.aqua("滑翔机"), + ], + : [ + format.green("使用Abyssalcraft的"), + format.green("仪式召唤一只乌鸦。详细"), + format.green("内容请查看死灵之书") + ], + : [ + format.green("将蜜蜂放入后,就会增加半径4"), + format.green("以内作物的生长速度,"), + format.green("繁育蜜蜂,生产蜜脾") + ], + : [ + format.green("可以在野外的Rustic蜂巢中找到"), + format.green("可以放入Rustic蜂房") + ], + + /* + Location Descriptions for Ore and Samples + */ + // Malachite + : [ + format.green("生成于"), + format.green("森林(Forest)生态岛") + ], + : [ + format.green("生成于"), + format.green("森林(Forest)生态岛") + ], + // Azurite + : [ + format.green("生成于"), + format.green("黑暗之地(Darkland)生态岛") + ], + : [ + format.green("生成于"), + format.green("黑暗之地(Darkland)生态岛") + ], + // Cassiterite + : [ + format.green("生成于"), + format.green("白桦林(Birch Forest)和平原(Plains)生态岛") + ], + : [ + format.green("生成于"), + format.green("白桦林(Birch Forest)和平原(Plains)生态岛") + ], + // Teallite + : [ + format.green("生成于"), + format.green("黑森林(Roofed Forest)和热带草原(Savannah)生态岛") + ], + : [ + format.green("生成于"), + format.green("黑森林(Roofed Forest)和热带草原(Savannah)生态岛") + ], + // Coal + : [ + format.green("生成于"), + format.green("黑暗之地(Darklands),森林(Forest)和黑森林(Roofed Forest)生态岛") + ], + : [ + format.green("生成于"), + format.green("黑暗之地(Darklands),森林(Forest)和黑森林(Roofed Forest)生态岛") + ], + // Hematite + : [ + format.green("生成于"), + format.green("草甸(Meadow),平原(Plains),热带草原(Savannah)和沼泽(Swampland)生态岛") + ], + : [ + format.green("生成于"), + format.green("草甸(Meadow),平原(Plains),热带草原(Savannah)和沼泽(Swampland)生态岛") + ], + // Rock Crystal + : [ + format.green("生成于"), + format.green("冷针叶林(Cold Taiga)和积雪的针叶林(Snowy Coniferous Forest)生态岛") + ], + : [ + format.green("生成于"), + format.green("冷针叶林(Cold Taiga)和积雪的针叶林(Snowy Coniferous Forest)生态岛") + ], + // Lapis + : [ + format.green("生成于"), + format.green("绿色沼泽(Green Swamp),沼泽(Swampland),温带雨林(Temperate Rainforest)"), + format.green("和蘑菇岛(Mushroom)生态岛") + ], + : [ + format.green("生成于"), + format.green("绿色沼泽(Green Swamp),沼泽(Swampland),温带雨林(Temperate Rainforest)"), + format.green("和蘑菇岛(Mushroom)生态岛") + ], + // Gold + : [ + format.green("生成于"), + format.green("恶地(Badlands)和平顶山(Mesa)生态岛") + ], + : [ + format.green("生成于"), + format.green("恶地(Badlands)和平顶山(Mesa)生态岛") + ], + // Platinum + : [ + format.green("生成于"), + format.green("岩石高原(Rocky Plateau)生态岛") + ], + : [ + format.green("生成于"), + format.green("岩石高原(Rocky Plateau)生态岛") + ], + // Limonite + : [ + format.green("生成于"), + format.green("秋树林(Autumnal Woods)和丛林(Jungle)生态岛") + ], + : [ + format.green("生成于"), + format.green("秋树林(Autumnal Woods)和丛林(Jungle)生态岛") + ], + // Galena + : [ + format.green("生成于"), + format.green("黑暗森林(Darklands Forest)和冰川(Glacier)生态岛") + ], + : [ + format.green("生成于"), + format.green("黑暗森林(Darklands Forest)和冰川(Glacier)生态岛") + ], + // Redstone / Cinnabar + : [ + format.green("生成于"), + format.green("沙漠(Desert)和红木针叶山林(Redwood Taiga Hills)生态岛") + ], + : [ + format.green("生成于"), + format.green("针叶林(Taiga)生态岛") + ], + : [ + format.green("生成于"), + format.green("沙漠(Desert),红木针叶山林(Redwood Taiga Hills)"), + format.green("和针叶林(Taiga)生态岛") + ], + // Bauxite + : [ + format.green("生成于"), + format.green("小型雨林(Mini Jungle),变异白桦林(Mutated Birch Forest)"), + format.green("和林地(Woodlansd)生态岛") + ], + : [ + format.green("生成于"), + format.green("小型雨林(Mini Jungle),变异白桦林(Mutated Birch Forest)"), + format.green("和林地(Woodlansd)生态岛") + ], + // Quartz + : [ + format.green("生成于"), + format.green("门勒格林(meneglin)和茂盛山丘(Lush Hills)生态岛") + ], + : [ + format.green("生成于"), + format.green("门勒格林(meneglin)和茂盛山丘(Lush Hills)生态岛") + ], + // Silicon + : [ + format.green("生成于"), + format.green("雨林(Jungle)和变异平原(Mutated Plains)生态岛") + ], + : [ + format.green("生成于"), + format.green("雨林(Jungle)和变异平原(Mutated Plains)生态岛") + ], + // Diamond + : [ + format.green("生成于"), + format.green("冰刺地(Glacier Spikes)生态岛") + ], + : [ + format.green("生成于"), + format.green("冰刺地(Glacier Spikes)生态岛") + ], + // Osmium + : [ + format.green("生成于"), + format.green("变异森林(Mutated Forest)和冰原(Ice Flats)生态岛") + ], + : [ + format.green("生成于"), + format.green("变异森林(Mutated Forest)和冰原(Ice Flats)生态岛") + ], + // Emerald + : [ + format.green("生成于"), + format.green("峭壁(Extreme Hills)生态岛") + ], + : [ + format.green("生成于"), + format.green("峭壁(Extreme Hills)生态岛") + ], + // Uranium + : [ + format.green("生成于"), + format.green("珊瑚侵染沼泽(Coralium Infested Swamp)生态岛") + ], + : [ + format.green("生成于"), + format.green("珊瑚侵染沼泽(Coralium Infested Swamp)生态岛") + ], + + : [ + format.green("生成于暮色森林战利箱"), + format.green("或通过Bonsai Trees模组获得") + ], +}; + +function init() { + for item, tooltips in itemTooltipMap { + for tooltip in tooltips { + item.addTooltip(tooltip); + } + } +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapter_groups.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapter_groups.snbt" new file mode 100644 index 000000000..1fa759145 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapter_groups.snbt" @@ -0,0 +1,3 @@ +{ + chapter_groups: [] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/00000651.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/00000651.snbt" new file mode 100644 index 000000000..fc39c56b5 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/00000651.snbt" @@ -0,0 +1,992 @@ +{ + id: "0000000000000446", + group: "", + order_index: 6, + filename: "00000651", + title: "00:00:06:51", + icon: "appliedenergistics2:crafting_terminal", + default_quest_shape: "", + quests: [ + { + x: 0.5d, + y: 0.0d, + shape: "hexagon", + dependencies: ["0000000000000513"], + id: "0000000000000449", + tasks: [{ + id: "000000000000044A", + type: "item", + item: "appliedenergistics2:energy_acceptor" + }] + }, + { + x: 1.0d, + y: 1.0d, + dependencies: ["0000000000000449"], + id: "000000000000044B", + tasks: [{ + id: "000000000000044C", + type: "item", + item: "appliedenergistics2:inscriber" + }] + }, + { + x: 2.0d, + y: 0.0d, + shape: "hexagon", + dependencies: ["000000000000044B"], + id: "000000000000044D", + tasks: [{ + id: "000000000000044E", + type: "item", + item: "appliedenergistics2:logic_processor", + count: 32L + }] + }, + { + x: 2.5d, + y: 1.5d, + shape: "hexagon", + dependencies: ["000000000000044D"], + size: 1.2d, + id: "000000000000044F", + tasks: [{ + id: "0000000000000450", + type: "item", + item: "appliedenergistics2:drive" + }] + }, + { + x: 0.0d, + y: -1.0d, + dependencies: ["0000000000000449"], + id: "0000000000000451", + tasks: [{ + id: "0000000000000452", + type: "item", + item: "appliedenergistics2:sky_compass" + }] + }, + { + x: 2.5d, + y: -1.5d, + shape: "hexagon", + dependencies: ["000000000000044D"], + size: 1.2d, + id: "0000000000000453", + tasks: [{ + id: "0000000000000454", + type: "item", + item: "appliedenergistics2:semi_dark_monitor" + }] + }, + { + x: 1.5d, + y: -2.0d, + dependencies: ["0000000000000457"], + id: "0000000000000455", + tasks: [{ + id: "0000000000000456", + type: "item", + item: "appliedenergistics2:interface_terminal" + }] + }, + { + x: 2.5d, + y: -2.5d, + shape: "hexagon", + dependencies: ["0000000000000453"], + id: "0000000000000457", + tasks: [{ + id: "0000000000000458", + type: "item", + item: "appliedenergistics2:terminal" + }] + }, + { + x: 3.0d, + y: -3.5d, + dependencies: ["0000000000000457"], + id: "0000000000000459", + tasks: [ + { + id: "000000000000045A", + type: "item", + item: "appliedenergistics2:crafting_terminal" + }, + { + id: "000000000000045F", + type: "item", + item: "appliedenergistics2:pattern_terminal" + } + ] + }, + { + x: 2.0d, + y: -3.5d, + dependencies: ["0000000000000457"], + id: "000000000000045D", + tasks: [{ + id: "000000000000045E", + type: "item", + item: "appliedenergistics2:fluid_terminal" + }] + }, + { + x: 3.5d, + y: -1.5d, + dependencies: ["0000000000000457"], + id: "0000000000000460", + tasks: [{ + id: "0000000000000461", + type: "item", + item: "appliedenergistics2:chest" + }] + }, + { + x: 3.5d, + y: -2.5d, + dependencies: ["0000000000000460"], + id: "0000000000000462", + tasks: [{ + id: "0000000000000463", + type: "item", + item: "appliedenergistics2:security_station" + }] + }, + { + x: 4.5d, + y: -2.0d, + dependencies: ["0000000000000462"], + id: "0000000000000464", + tasks: [{ + id: "0000000000000465", + type: "item", + item: { + id: "appliedenergistics2:wireless_terminal", + Count: 1b, + tag: { + Damage: 0 + } + } + }] + }, + { + x: 2.0d, + y: 3.5d, + shape: "pentagon", + dependencies: ["0000000000000468"], + id: "0000000000000466", + tasks: [{ + id: "0000000000000467", + type: "item", + item: "appliedenergistics2:4k_cell_component" + }] + }, + { + x: 2.0d, + y: 2.5d, + shape: "diamond", + dependencies: ["000000000000044F"], + id: "0000000000000468", + tasks: [{ + id: "0000000000000469", + type: "item", + item: "appliedenergistics2:1k_cell_component" + }] + }, + { + x: 2.0d, + y: 4.5d, + shape: "hexagon", + dependencies: ["0000000000000466"], + id: "000000000000046A", + tasks: [{ + id: "000000000000046B", + type: "item", + item: "appliedenergistics2:16k_cell_component" + }] + }, + { + x: 2.0d, + y: 5.5d, + shape: "octagon", + dependencies: ["000000000000046A"], + id: "000000000000046C", + tasks: [{ + id: "000000000000046D", + type: "item", + item: "appliedenergistics2:64k_cell_component" + }] + }, + { + x: 3.0d, + y: 2.5d, + shape: "diamond", + dependencies: ["000000000000044F"], + id: "000000000000046E", + tasks: [{ + id: "000000000000046F", + type: "item", + item: "appliedenergistics2:1k_fluid_cell_component" + }] + }, + { + x: 3.0d, + y: 3.5d, + shape: "pentagon", + dependencies: ["000000000000046E"], + id: "0000000000000470", + tasks: [{ + id: "0000000000000471", + type: "item", + item: "appliedenergistics2:4k_fluid_cell_component" + }] + }, + { + x: 3.0d, + y: 4.5d, + shape: "hexagon", + dependencies: ["0000000000000470"], + id: "0000000000000472", + tasks: [{ + id: "0000000000000473", + type: "item", + item: "appliedenergistics2:16k_fluid_cell_component" + }] + }, + { + x: 3.0d, + y: 5.5d, + shape: "octagon", + dependencies: ["0000000000000472"], + id: "0000000000000474", + tasks: [{ + id: "0000000000000475", + type: "item", + item: "appliedenergistics2:64k_fluid_cell_component" + }] + }, + { + x: 4.0d, + y: 2.5d, + shape: "diamond", + dependencies: ["000000000000044F"], + id: "0000000000000476", + tasks: [{ + id: "0000000000000477", + type: "item", + item: "appliedenergistics2:2_cubed_spatial_cell_component" + }] + }, + { + x: 4.0d, + y: 3.5d, + shape: "pentagon", + dependencies: ["0000000000000476"], + id: "0000000000000478", + tasks: [{ + id: "0000000000000479", + type: "item", + item: "appliedenergistics2:16_cubed_spatial_cell_component" + }] + }, + { + x: 4.0d, + y: 4.5d, + shape: "hexagon", + dependencies: ["0000000000000478"], + id: "000000000000047A", + tasks: [{ + id: "000000000000047B", + type: "item", + item: "appliedenergistics2:128_cubed_spatial_cell_component" + }] + }, + { + x: 7.8d, + y: 0.6d, + shape: "hexagon", + dependencies: ["000000000000049D"], + size: 1.2d, + id: "000000000000047C", + tasks: [{ + id: "000000000000047D", + type: "item", + item: "appliedenergistics2:quantum_ring" + }] + }, + { + x: 3.5999999999999996d, + y: 0.0d, + dependencies: ["000000000000044D"], + size: 1.2d, + id: "000000000000047E", + tasks: [{ + id: "000000000000047F", + type: "item", + item: "appliedenergistics2:controller" + }] + }, + { + x: 4.5d, + y: -3.0d, + dependencies: ["0000000000000464"], + id: "0000000000000480", + tasks: [{ + id: "0000000000000481", + type: "item", + item: { + id: "appliedenergistics2:biometric_card", + Count: 1b, + tag: {} + } + }] + }, + { + x: 5.0d, + y: -1.0d, + dependencies: ["000000000000047E"], + id: "0000000000000482", + tasks: [ + { + id: "0000000000000483", + type: "item", + item: "appliedenergistics2:fluix_covered_dense_cable", + count: 16L + }, + { + id: "0000000000000484", + type: "item", + item: "appliedenergistics2:fluix_covered_cable", + count: 8L + } + ], + rewards: [{ + id: "0000000000000485", + type: "item", + item: "appliedenergistics2:fluix_covered_dense_cable", + count: 8 + }] + }, + { + title: "Autocrafting!", + x: 5.0d, + y: 1.0d, + description: [""], + dependencies: ["000000000000047E"], + id: "0000000000000486", + tasks: [{ + id: "0000000000000487", + type: "item", + item: "appliedenergistics2:interface" + }] + }, + { + x: 4.0d, + y: 1.5d, + dependencies: ["000000000000047E"], + id: "0000000000000488", + tasks: [{ + id: "0000000000000489", + type: "item", + item: "appliedenergistics2:fluid_interface" + }] + }, + { + x: 5.0d, + y: 2.0d, + dependencies: ["0000000000000486"], + id: "000000000000048C", + tasks: [{ + id: "000000000000048D", + type: "item", + item: "appliedenergistics2:crafting_card" + }] + }, + { + x: 6.0d, + y: -1.5d, + dependencies: ["0000000000000482"], + id: "000000000000048E", + tasks: [ + { + id: "000000000000048F", + type: "item", + item: "appliedenergistics2:import_bus" + }, + { + id: "0000000000000490", + type: "item", + item: "appliedenergistics2:export_bus" + } + ] + }, + { + x: 6.0d, + y: -2.4d, + dependencies: ["000000000000048E"], + size: 0.8d, + id: "0000000000000491", + tasks: [ + { + id: "0000000000000492", + type: "item", + item: "appliedenergistics2:redstone_card" + }, + { + id: "00000000000004A1", + type: "item", + item: "appliedenergistics2:fuzzy_card" + } + ] + }, + { + x: 6.0d, + y: 1.5d, + dependencies: ["0000000000000486"], + id: "0000000000000493", + tasks: [{ + id: "0000000000000494", + type: "item", + item: "appliedenergistics2:speed_card" + }] + }, + { + x: 5.0d, + y: 0.0d, + dependencies: ["000000000000047E"], + id: "0000000000000497", + tasks: [{ + id: "0000000000000498", + type: "item", + item: "appliedenergistics2:spatial_io_port" + }] + }, + { + x: -0.5d, + y: 0.5d, + shape: "gear", + description: ["You Can Start Producing Matter Balls With 1K ME Storage Component You Got Here!"], + dependencies: ["0000000000000513"], + size: 1.2d, + id: "0000000000000499", + tasks: [{ + id: "000000000000049A", + type: "item", + item: "appliedenergistics2:condenser" + }], + rewards: [{ + id: "6DAA754198EEB5AF", + type: "item", + item: "appliedenergistics2:1k_cell_component" + }] + }, + { + x: 4.0d, + y: 5.5d, + shape: "octagon", + dependencies: ["000000000000047A"], + id: "000000000000049B", + tasks: [{ + id: "000000000000049C", + type: "item", + item: "appliedenergistics2:128_cubed_spatial_storage_cell" + }] + }, + { + x: 6.5d, + y: 0.0d, + shape: "pentagon", + dependencies: ["0000000000000497"], + id: "000000000000049D", + tasks: [{ + id: "000000000000049E", + type: "item", + item: "appliedenergistics2:singularity" + }] + }, + { + x: -1.5d, + y: -1.0d, + id: "00000000000004A2", + tasks: [{ + id: "00000000000004A3", + type: "item", + item: "refinedstorage:quartz_enriched_iron", + count: 32L + }], + rewards: [{ + id: "00000000000004A4", + type: "item", + item: "refinedstorage:quartz_enriched_iron", + count: 8 + }] + }, + { + x: -2.0d, + y: 0.0d, + shape: "hexagon", + description: [ + "Refined Storage Now Has Controllers In Different Colors. You Can Use Whatever You Want.", + "", + "&eBut you need the orange one to &ecomplete this quest lol" + ], + dependencies: ["00000000000004A2"], + id: "00000000000004A5", + tasks: [{ + id: "00000000000004A7", + type: "item", + item: "refinedstorage:orange_controller" + }], + rewards: [{ + id: "00000000000004A8", + type: "item", + item: "refinedstorage:quartz_enriched_iron", + count: 8 + }] + }, + { + x: -2.5d, + y: 1.0d, + dependencies: ["00000000000004A5"], + id: "00000000000004A9", + tasks: [{ + id: "00000000000004AA", + type: "item", + item: "refinedstorage:cable", + count: 16L + }] + }, + { + x: -3.5d, + y: 0.0d, + shape: "hexagon", + dependencies: ["00000000000004A9"], + id: "00000000000004AB", + tasks: [{ + id: "00000000000004AC", + type: "item", + item: "refinedstorage:machine_casing" + }] + }, + { + icon: "refinedstorage:orange_grid", + x: -4.0d, + y: -1.5d, + shape: "diamond", + dependencies: ["00000000000004BC"], + id: "00000000000004AF", + tasks: [{ + id: "00000000000004E8", + type: "item", + item: "refinedstorage:grid" + }] + }, + { + icon: "refinedstorage:orange_crafting_grid", + x: -4.5d, + y: -2.0d, + shape: "diamond", + dependencies: ["00000000000004AF"], + id: "00000000000004B1", + tasks: [{ + id: "00000000000004EC", + type: "item", + item: "refinedstorage:crafting_grid" + }] + }, + { + icon: "refinedstorage:orange_pattern_grid", + x: -5.0d, + y: -1.5d, + shape: "diamond", + dependencies: ["00000000000004AF"], + id: "00000000000004B3", + tasks: [{ + id: "00000000000004EE", + type: "item", + item: "refinedstorage:pattern_grid" + }] + }, + { + icon: "refinedstorage:orange_fluid_grid", + x: -5.5d, + y: -2.0d, + shape: "diamond", + dependencies: ["00000000000004AF"], + id: "00000000000004B5", + tasks: [{ + id: "00000000000004E9", + type: "item", + item: "refinedstorage:fluid_grid" + }] + }, + { + icon: "refinedstorage:improved_processor", + x: -4.5d, + y: -0.44999999999999996d, + shape: "hexagon", + dependencies: ["00000000000004AB"], + size: 0.9d, + id: "00000000000004BC", + tasks: [ + { + id: "00000000000004BD", + type: "item", + item: "refinedstorage:basic_processor" + }, + { + id: "00000000000004BE", + type: "item", + item: "refinedstorage:improved_processor" + }, + { + id: "00000000000004BF", + type: "item", + item: "refinedstorage:advanced_processor" + } + ] + }, + { + x: -3.5d, + y: 1.5d, + shape: "hexagon", + dependencies: ["00000000000004A9"], + size: 1.2d, + id: "00000000000004C0", + tasks: [{ + id: "00000000000004C1", + type: "item", + item: "refinedstorage:disk_drive" + }] + }, + { + x: -4.0d, + y: 2.5d, + shape: "diamond", + dependencies: ["00000000000004C0"], + id: "00000000000004C2", + tasks: [{ + id: "00000000000004C3", + type: "item", + item: "refinedstorage:4k_storage_part" + }] + }, + { + x: -4.0d, + y: 3.5d, + shape: "pentagon", + dependencies: ["00000000000004C2"], + id: "00000000000004C4", + tasks: [{ + id: "00000000000004C5", + type: "item", + item: "refinedstorage:64k_storage_part" + }] + }, + { + x: -4.0d, + y: 4.5d, + shape: "hexagon", + dependencies: ["00000000000004C4"], + id: "00000000000004C6", + tasks: [{ + id: "00000000000004C7", + type: "item", + item: "extrastorage:storagepart_256k" + }] + }, + { + x: -4.0d, + y: 5.5d, + shape: "octagon", + dependencies: ["00000000000004C6"], + id: "00000000000004C8", + tasks: [{ + id: "00000000000004C9", + type: "item", + item: "extrastorage:storagepart_1024k" + }] + }, + { + x: -3.0d, + y: 2.5d, + shape: "diamond", + dependencies: ["00000000000004C0"], + id: "00000000000004CA", + tasks: [{ + id: "00000000000004CB", + type: "item", + item: "refinedstorage:64k_fluid_storage_part" + }] + }, + { + x: -3.0d, + y: 3.5d, + shape: "pentagon", + dependencies: ["00000000000004CA"], + id: "00000000000004CC", + tasks: [{ + id: "00000000000004CD", + type: "item", + item: "refinedstorage:256k_fluid_storage_part" + }] + }, + { + x: -3.0d, + y: 4.5d, + shape: "hexagon", + dependencies: ["00000000000004CC"], + id: "00000000000004CE", + tasks: [{ + id: "00000000000004CF", + type: "item", + item: "refinedstorage:1024k_fluid_storage_part" + }] + }, + { + x: -3.0d, + y: 5.5d, + shape: "octagon", + dependencies: ["00000000000004CE"], + id: "00000000000004D0", + tasks: [{ + id: "00000000000004D1", + type: "item", + item: "refinedstorage:4096k_fluid_storage_part" + }] + }, + { + x: -5.5d, + y: -0.5d, + shape: "diamond", + dependencies: ["00000000000004AB"], + size: 0.9d, + id: "00000000000004D2", + tasks: [ + { + id: "00000000000004D5", + type: "item", + item: "refinedstorage:importer" + }, + { + id: "00000000000004D6", + type: "item", + item: "extrastorage:advanced_importer" + } + ], + rewards: [{ + id: "00000000000004D7", + type: "item", + item: "refinedstorage:cable", + count: 8 + }] + }, + { + icon: "refinedstorage:orange_crafter", + x: -5.5d, + y: 1.5d, + shape: "heart", + dependencies: ["00000000000004AB"], + size: 0.9d, + id: "00000000000004D8", + tasks: [{ + id: "00000000000004D9", + type: "item", + item: "refinedstorage:crafter" + }] + }, + { + x: -5.5d, + y: 2.5d, + shape: "diamond", + dependencies: ["00000000000004D8"], + id: "00000000000004DA", + tasks: [{ + id: "00000000000004DB", + type: "item", + item: "extrastorage:iron_crafter" + }] + }, + { + x: -5.5d, + y: 3.5d, + shape: "pentagon", + dependencies: ["00000000000004DA"], + id: "00000000000004DC", + tasks: [{ + id: "00000000000004DD", + type: "item", + item: "extrastorage:gold_crafter" + }] + }, + { + x: -5.5d, + y: 4.5d, + shape: "hexagon", + dependencies: ["00000000000004DC"], + id: "00000000000004DE", + tasks: [{ + id: "00000000000004DF", + type: "item", + item: "extrastorage:diamond_crafter" + }] + }, + { + x: -5.5d, + y: 5.5d, + shape: "octagon", + dependencies: ["00000000000004DE"], + id: "00000000000004E0", + tasks: [{ + id: "00000000000004E1", + type: "item", + item: "extrastorage:netherite_crafter" + }] + }, + { + x: -8.0d, + y: 0.5d, + shape: "hexagon", + dependencies: ["00000000000004E6"], + id: "00000000000004E2", + tasks: [{ + id: "00000000000004E3", + type: "item", + item: "refinedstorage:network_receiver" + }] + }, + { + x: -8.0d, + y: -0.5d, + shape: "hexagon", + dependencies: ["00000000000004E6"], + id: "00000000000004E4", + tasks: [{ + id: "00000000000004E5", + type: "item", + item: "refinedstorage:network_transmitter" + }] + }, + { + x: -6.5d, + y: 0.5d, + shape: "hexagon", + dependencies: ["00000000000004AB"], + id: "00000000000004E6", + tasks: [{ + id: "00000000000004E7", + type: "item", + item: "refinedstorage:network_card" + }] + }, + { + x: -6.0d, + y: -1.0d, + shape: "diamond", + dependencies: ["00000000000004D2"], + size: 0.9d, + id: "00000000000004EF", + tasks: [ + { + id: "00000000000004F0", + type: "item", + item: "refinedstorage:exporter" + }, + { + id: "00000000000004F1", + type: "item", + item: "extrastorage:advanced_exporter" + } + ] + }, + { + x: -7.0d, + y: 2.5d, + shape: "diamond", + dependencies: ["00000000000004F9"], + id: "00000000000004F2", + tasks: [{ + id: "00000000000004F3", + type: "item", + item: "refinedstorage:wireless_crafting_monitor" + }] + }, + { + x: -7.5d, + y: 3.0d, + shape: "diamond", + dependencies: ["00000000000004F9"], + id: "00000000000004F4", + tasks: [{ + id: "00000000000004F6", + type: "item", + item: "refinedstorage:wireless_fluid_grid" + }] + }, + { + x: -7.0d, + y: 3.5d, + shape: "diamond", + dependencies: ["00000000000004F9"], + id: "00000000000004F7", + tasks: [{ + id: "00000000000004F8", + type: "item", + item: "refinedstorageaddons:wireless_crafting_grid" + }] + }, + { + x: -7.5d, + y: 2.0d, + shape: "diamond", + dependencies: ["00000000000004AB"], + id: "00000000000004F9", + tasks: [{ + id: "00000000000004FA", + type: "item", + item: "refinedstorage:wireless_transmitter" + }] + }, + { + x: 1.2d, + y: -0.6d, + shape: "diamond", + subtitle: "You can now also craft Fluix Crystal with Metallurgic Infuser.", + dependencies: ["000000000000051E"], + size: 0.6d, + id: "0000000000000513", + tasks: [{ + id: "0000000000000514", + type: "item", + item: "appliedenergistics2:fluix_crystal", + count: 16L + }], + rewards: [{ + id: "0000000000000516", + type: "item", + item: "appliedenergistics2:logic_processor", + count: 8 + }] + }, + { + x: 0.8999999999999999d, + y: -1.2d, + subtitle: "Charged Certus Quartz Ore Is Disabled. You Can Craft Charged Certus Quartz In Blood Altar.", + size: 0.6d, + id: "000000000000051E", + tasks: [{ + id: "000000000000051F", + type: "item", + item: "appliedenergistics2:charged_certus_quartz_crystal" + }], + rewards: [{ + id: "0000000000000520", + type: "item", + item: "appliedenergistics2:charged_certus_quartz_crystal", + count: 4 + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/astral_2.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/astral_2.snbt" new file mode 100644 index 000000000..d97072f22 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/astral_2.snbt" @@ -0,0 +1,660 @@ +{ + id: "00000000000001F6", + group: "", + order_index: 4, + filename: "astral_2", + title: "山田君与七魔女", + icon: "astralsorcery:altar_constellation", + default_quest_shape: "", + quests: [ + { + x: 0.0d, + y: 0.0d, + shape: "hexagon", + dependencies: ["00000000000001F9"], + id: "00000000000001F7", + tasks: [{ + id: "00000000000001F8", + type: "item", + item: "astralsorcery:altar_discovery" + }] + }, + { + x: 1.5d, + y: 1.5d, + shape: "hexagon", + id: "00000000000001F9", + tasks: [{ + id: "00000000000001FA", + type: "item", + item: "astralsorcery:wand" + }] + }, + { + x: 0.5d, + y: 2.5d, + dependencies: ["00000000000001F9"], + id: "00000000000001FB", + tasks: [ + { + id: "00000000000001FC", + type: "item", + item: { + id: "astralsorcery:rock_crystal", + Count: 1b, + tag: { + astralsorcery: {} + } + } + }, + { + id: "00000000000001FD", + type: "item", + item: "astralsorcery:aquamarine", + count: 16L + } + ], + rewards: [{ + id: "00000000000001FE", + type: "item", + item: "astralsorcery:aquamarine", + count: 16 + }] + }, + { + x: 3.0d, + y: 0.0d, + shape: "gear", + description: ["免费的星芒宝典!"], + dependencies: ["00000000000001F9"], + size: 1.3d, + id: "00000000000001FF", + tasks: [{ + id: "33F98AC6C9CF4AB6", + type: "checkmark", + icon: "astralsorcery:tome" + }], + rewards: [{ + id: "13DD6B8128A81AA6", + type: "item", + item: "astralsorcery:tome" + }] + }, + { + x: 1.5d, + y: 3.0d, + dependencies: ["00000000000001FB"], + id: "0000000000000201", + tasks: [{ + id: "0000000000000202", + type: "item", + item: "astralsorcery:parchment" + }] + }, + { + x: 2.5d, + y: 2.5d, + dependencies: ["0000000000000201"], + id: "0000000000000203", + tasks: [{ + id: "0000000000000204", + type: "item", + item: "astralsorcery:illuminator" + }] + }, + { + x: 1.5d, + y: -2.0d, + dependencies: ["00000000000001FF"], + id: "0000000000000205", + tasks: [{ + id: "0000000000000206", + type: "item", + item: "astralsorcery:hand_telescope" + }] + }, + { + x: 4.5d, + y: 0.0d, + shape: "pentagon", + dependencies: ["00000000000001FF"], + id: "0000000000000207", + tasks: [{ + id: "0000000000000208", + type: "item", + item: "astralsorcery:well" + }] + }, + { + x: 6.4d, + y: -1.2d, + dependencies: ["0000000000000207"], + size: 0.8d, + id: "0000000000000209", + tasks: [{ + id: "000000000000020A", + type: "item", + item: "astralsorcery:infused_wood", + count: 16L + }] + }, + { + x: 6.0d, + y: 1.0d, + dependencies: ["0000000000000207"], + id: "000000000000020B", + tasks: [{ + id: "000000000000020C", + type: "item", + item: { + id: "astralsorcery:resonator", + Count: 1b, + tag: { + astralsorcery: { + upgrades: [0] + } + } + } + }] + }, + { + x: 7.5d, + y: 0.0d, + shape: "hexagon", + dependencies: ["0000000000000207"], + size: 1.1d, + id: "000000000000020D", + tasks: [{ + id: "000000000000020E", + type: "item", + item: "astralsorcery:altar_attunement" + }] + }, + { + x: 3.6d, + y: -1.2d, + dependencies: ["0000000000000207"], + size: 0.9d, + id: "000000000000020F", + tasks: [ + { + id: "0000000000000210", + type: "item", + item: { + id: "astralsorcery:crystal_sword", + Count: 1b, + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:shape", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.durability", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.efficiency", + pLevel: 3, + discovered: 1b + } + ] + } + }, + Damage: 0 + } + } + }, + { + id: "0000000000000211", + type: "item", + item: { + id: "astralsorcery:crystal_axe", + Count: 1b, + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:shape", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.durability", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.efficiency", + pLevel: 3, + discovered: 1b + } + ] + } + }, + Damage: 0 + } + } + }, + { + id: "0000000000000212", + type: "item", + item: { + id: "astralsorcery:crystal_pickaxe", + Count: 1b, + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:shape", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.durability", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.efficiency", + pLevel: 3, + discovered: 1b + } + ] + } + }, + Damage: 0 + } + } + }, + { + id: "0000000000000213", + type: "item", + item: { + id: "astralsorcery:crystal_shovel", + Count: 1b, + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:shape", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.durability", + pLevel: 3, + discovered: 1b + }, + { + property: "astralsorcery:tool.efficiency", + pLevel: 3, + discovered: 1b + } + ] + } + }, + Damage: 0 + } + } + } + ], + rewards: [{ + id: "0000000000000214", + type: "item", + item: { + id: "astralsorcery:rock_crystal", + Count: 1b, + tag: { + astralsorcery: {} + } + } + }] + }, + { + x: 7.5d, + y: 1.5d, + dependencies: ["0000000000000510"], + id: "0000000000000215", + tasks: [{ + id: "0000000000000216", + type: "item", + item: "astralsorcery:starmetal_ore" + }] + }, + { + x: 9.9d, + y: 0.0d, + shape: "hexagon", + dependencies: ["000000000000020D"], + size: 1.1d, + id: "0000000000000217", + tasks: [{ + id: "0000000000000219", + type: "item", + item: "astralsorcery:attunement_altar" + }] + }, + { + x: 11.0d, + y: -1.5d, + dependencies: ["0000000000000217"], + id: "000000000000021A", + tasks: [{ + id: "000000000000021B", + type: "item", + item: "astralsorcery:ritual_pedestal" + }] + }, + { + x: 12.5d, + y: -2.0d, + dependencies: ["000000000000021A"], + id: "000000000000021C", + tasks: [{ + id: "000000000000021D", + type: "item", + item: "astralsorcery:ritual_link" + }] + }, + { + x: 11.5d, + y: 1.0d, + dependencies: ["0000000000000217"], + id: "000000000000021E", + tasks: [{ + id: "000000000000021F", + type: "item", + item: "astralsorcery:spectral_relay", + count: 16L + }], + rewards: [{ + id: "0000000000000220", + type: "item", + item: "astralsorcery:glass_lens", + count: 4 + }] + }, + { + x: 13.0d, + y: 2.5d, + dependencies: ["000000000000021E"], + id: "0000000000000221", + tasks: [{ + id: "0000000000000222", + type: "item", + item: "astralsorcery:shifting_star" + }] + }, + { + x: 11.0d, + y: 2.5d, + dependencies: ["000000000000021E"], + id: "0000000000000223", + tasks: [{ + id: "0000000000000224", + type: "item", + item: "astralsorcery:perk_seal" + }] + }, + { + x: 8.5d, + y: 2.0d, + dependencies: ["0000000000000215"], + id: "0000000000000225", + tasks: [{ + id: "0000000000000226", + type: "item", + item: { + id: "astralsorcery:chisel", + Count: 1b, + tag: { + Damage: 0 + } + } + }] + }, + { + x: 9.5d, + y: 1.5d, + dependencies: ["0000000000000225"], + id: "0000000000000227", + tasks: [{ + id: "0000000000000228", + type: "item", + item: "astralsorcery:stardust" + }] + }, + { + x: 13.75d, + y: 0.0d, + shape: "hexagon", + dependencies: ["0000000000000217"], + size: 1.1d, + id: "0000000000000229", + tasks: [{ + id: "000000000000022A", + type: "item", + item: "astralsorcery:altar_constellation" + }] + }, + { + x: 8.5d, + y: -1.5d, + dependencies: ["000000000000020D"], + id: "000000000000022B", + tasks: [{ + id: "000000000000022C", + type: "item", + item: { + id: "astralsorcery:celestial_gateway", + Count: 1b, + tag: { + astralsorcery: {} + } + } + }] + }, + { + x: 7.0d, + y: -2.0d, + dependencies: ["000000000000020D"], + id: "000000000000022D", + tasks: [{ + id: "000000000000022E", + type: "item", + item: "astralsorcery:telescope" + }] + }, + { + x: 18.0d, + y: 0.0d, + shape: "hexagon", + dependencies: ["0000000000000229"], + size: 1.4d, + id: "000000000000022F", + tasks: [{ + id: "0000000000000230", + type: "item", + item: "astralsorcery:altar_radiance" + }] + }, + { + x: 13.5d, + y: -1.5d, + dependencies: ["0000000000000229"], + id: "0000000000000231", + tasks: [{ + id: "0000000000000232", + type: "item", + item: "astralsorcery:tree_beacon" + }] + }, + { + x: 15.0d, + y: -1.0d, + shape: "hexagon", + dependencies: ["0000000000000229"], + id: "0000000000000233", + tasks: [{ + id: "0000000000000234", + type: "item", + item: "astralsorcery:infuser" + }] + }, + { + x: 19.5d, + y: -1.0d, + dependencies: ["000000000000022F"], + id: "0000000000000235", + tasks: [{ + id: "0000000000000236", + type: "item", + item: { + id: "astralsorcery:infused_glass", + Count: 1b, + tag: { + astralsorcery: {}, + Damage: 0 + } + } + }] + }, + { + x: 20.8d, + y: 0.0d, + shape: "gear", + dependencies: ["0000000000000235"], + size: 1.3d, + id: "0000000000000237", + tasks: [{ + id: "0000000000000238", + type: "item", + item: "astralsorcery:observatory" + }] + }, + { + x: 15.0d, + y: -2.5d, + dependencies: ["0000000000000229"], + id: "0000000000000239", + tasks: [{ + id: "000000000000023A", + type: "item", + item: "astralsorcery:refraction_table" + }] + }, + { + x: 15.5d, + y: 1.5d, + dependencies: ["0000000000000229"], + id: "000000000000023B", + tasks: [{ + id: "000000000000023C", + type: "item", + item: "astralsorcery:ritual_link" + }] + }, + { + x: 12.5d, + y: -1.0d, + dependencies: ["0000000000000229"], + id: "000000000000023D", + tasks: [{ + id: "000000000000023E", + type: "item", + item: { + id: "astralsorcery:prism", + Count: 1b, + tag: { + astralsorcery: { + crystalProperties: { + attributes: [{ + property: "astralsorcery:purity", + pLevel: 2, + discovered: 1b + }] + } + } + } + } + }] + }, + { + x: 16.0d, + y: 0.0d, + shape: "gear", + subtitle: "你可以用它自动化流明精华。", + dependencies: ["0000000000000233"], + size: 1.5d, + id: "00000000000003F0", + tasks: [{ + id: "00000000000003F1", + type: "item", + item: "astralsorcery:chalice" + }], + rewards: [{ + id: "0000000000000606", + type: "item", + item: "extendedcrafting:luminessence" + }] + }, + { + x: 7.5d, + y: 0.75d, + subtitle: "你可以用铁碎块制作铁矿石。因为精准采集没有用。", + dependencies: ["000000000000020D"], + size: 0.5d, + id: "0000000000000510", + tasks: [{ + id: "0000000000000511", + type: "item", + item: "emendatusenigmatica:iron_ore" + }], + rewards: [{ + id: "0000000000000512", + type: "item", + item: "astralsorcery:starmetal_ore", + count: 4 + }] + }, + { + x: 17.5d, + y: 1.5d, + dependencies: ["00000000000003F0"], + id: "0000000000000604", + tasks: [{ + id: "0000000000000605", + type: "item", + item: "extendedcrafting:luminessence" + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/blood_c.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/blood_c.snbt" new file mode 100644 index 000000000..77a9ad452 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/blood_c.snbt" @@ -0,0 +1,343 @@ +{ + id: "00000000000000F3", + group: "", + order_index: 3, + filename: "blood_c", + title: "饮血、吸髓", + icon: "bloodmagic:altar", + default_quest_shape: "", + quests: [ + { + x: 0.0d, + y: 0.0d, + subtitle: "鲜血,碎骨,精髓", + description: ["&a血之祭坛:&fBlood Magic的核心。"], + dependencies: ["00000000000000F7"], + id: "00000000000000F4", + tasks: [{ + id: "00000000000000F5", + type: "item", + item: "bloodmagic:altar" + }], + rewards: [{ + id: "00000000000000F6", + type: "item", + item: "bloodmagic:life_essence_bucket" + }] + }, + { + x: -1.0d, + y: -1.0d, + description: ["&a提示:&f击杀被灵魂投网击中的敌对怪物可以获得恶魔意志。"], + id: "00000000000000F7", + tasks: [{ + id: "00000000000000F8", + type: "item", + item: "bloodmagic:soulsnare", + count: 4L + }], + rewards: [{ + id: "00000000000000F9", + type: "item", + item: "pamhc2foodcore:basiccheeseburgeritem", + count: 2 + }] + }, + { + x: 1.5d, + y: 1.5d, + description: ["是时候搭建&a2级祭坛了!"], + dependencies: ["00000000000000F4"], + id: "00000000000000FA", + tasks: [{ + id: "00000000000000FB", + type: "item", + item: "bloodmagic:blankrune", + count: 8L + }] + }, + { + icon: "minecraft:glowstone", + x: 2.5d, + y: 1.0d, + description: ["是时候搭建&a3级祭坛了!"], + dependencies: ["00000000000000FA"], + id: "00000000000000FC", + tasks: [ + { + id: "00000000000000FD", + type: "item", + item: "bloodmagic:selfsacrificerune", + count: 10L + }, + { + id: "00000000000000FE", + type: "item", + item: "bloodmagic:blankrune", + count: 10L + }, + { + id: "00000000000000FF", + type: "item", + item: "minecraft:glowstone", + count: 4L + } + ] + }, + { + x: 2.5d, + y: 2.5d, + description: ["&a提示:&f2级移动血库。非常便于使用印记。"], + dependencies: ["00000000000000FA"], + id: "0000000000000100", + tasks: [{ + id: "0000000000000101", + type: "item", + item: "bloodmagic:apprenticebloodorb" + }] + }, + { + x: 3.5d, + y: 2.0d, + description: ["&a提示:&f3级移动血库。非常便于使用印记。"], + dependencies: ["00000000000000FC"], + id: "0000000000000102", + tasks: [{ + id: "0000000000000103", + type: "item", + item: "bloodmagic:magicianbloodorb" + }] + }, + { + x: 0.8999999999999999d, + y: 0.8999999999999999d, + description: ["&a提示:&f基础移动血库。非常便于使用印记。"], + dependencies: ["00000000000000F4"], + size: 0.6d, + id: "0000000000000104", + tasks: [{ + id: "0000000000000105", + type: "item", + item: "bloodmagic:weakbloodorb" + }] + }, + { + x: 4.5d, + y: 1.5d, + description: ["&a提示:&f4级移动血库。非常便于使用印记。"], + dependencies: ["0000000000000108"], + id: "0000000000000106", + tasks: [{ + id: "0000000000000107", + type: "item", + item: "bloodmagic:masterbloodorb" + }] + }, + { + icon: "bloodmagic:largebloodstonebrick", + x: 3.5d, + y: 0.5d, + description: ["是时候搭建&a4级祭坛了!"], + dependencies: ["00000000000000FC"], + id: "0000000000000108", + tasks: [ + { + id: "0000000000000109", + type: "item", + item: "bloodmagic:altarcapacityrune", + count: 8L + }, + { + id: "000000000000010A", + type: "item", + item: "bloodmagic:blankrune", + count: 20L + }, + { + id: "000000000000010B", + type: "item", + item: "bloodmagic:largebloodstonebrick", + count: 4L + } + ] + }, + { + icon: "minecraft:beacon", + x: 4.5d, + y: 0.0d, + description: ["是时候搭建&a5级祭坛了!"], + dependencies: ["0000000000000108"], + id: "000000000000010C", + tasks: [ + { + id: "000000000000010D", + type: "item", + item: "bloodmagic:bettercapacityrune", + count: 5L + }, + { + id: "000000000000010E", + type: "item", + item: "bloodmagic:accelerationrune", + count: 5L + }, + { + id: "000000000000010F", + type: "item", + item: "minecraft:beacon", + count: 4L + } + ] + }, + { + x: 5.5d, + y: 1.0d, + shape: "hexagon", + description: ["&aEthereal Slate: &fThe most powerful slate used for Endgame Recipes."], + dependencies: ["000000000000010C"], + id: "0000000000000110", + tasks: [{ + id: "0000000000000111", + type: "item", + item: "bloodmagic:etherealslate" + }] + }, + { + x: -3.0d, + y: -0.5d, + description: ["&a提示:&f查看JEI获取更多信息。"], + dependencies: ["000000000000011F"], + id: "0000000000000112", + tasks: [ + { + id: "0000000000000113", + type: "item", + item: "bloodmagic:alchemicalreactionchamber" + }, + { + id: "0000000000000114", + type: "item", + item: "bloodmagic:demoncrucible" + }, + { + id: "0000000000000115", + type: "item", + item: "bloodmagic:demoncrystallizer" + } + ] + }, + { + x: -3.5d, + y: 0.5d, + description: ["&a提示:&f消耗鲜血就可以无限使用。"], + dependencies: ["000000000000011F"], + id: "0000000000000116", + tasks: [{ + id: "0000000000000117", + type: "item", + item: "bloodmagic:lavacrystal" + }] + }, + { + x: -3.0d, + y: 1.5d, + description: ["&a提示:&f能帮助你搭建仪式。"], + dependencies: ["000000000000011F"], + id: "0000000000000118", + tasks: [{ + id: "0000000000000119", + type: "item", + item: "bloodmagic:ritualdiviner" + }] + }, + { + x: -2.5d, + y: 2.5d, + description: ["&a提示:&f查看JEI获取更多信息。"], + dependencies: ["000000000000011F"], + id: "000000000000011A", + tasks: [ + { + id: "000000000000011B", + type: "item", + item: { + id: "bloodmagic:livinghelmet", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "000000000000011C", + type: "item", + item: { + id: "bloodmagic:livingplate", + Count: 1b, + tag: { + Damage: 0, + livingStats: { + maxPoints: 100, + upgrades: [] + } + } + } + }, + { + id: "000000000000011D", + type: "item", + item: { + id: "bloodmagic:livingleggings", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "000000000000011E", + type: "item", + item: { + id: "bloodmagic:livingboots", + Count: 1b, + tag: { + Damage: 0 + } + } + } + ] + }, + { + x: -0.8d, + y: 0.8d, + description: ["&a提示:&f查看JEI获取更多信息。"], + dependencies: ["00000000000000F4"], + size: 0.8d, + id: "000000000000011F", + tasks: [{ + id: "0000000000000120", + type: "item", + item: "bloodmagic:soulforge" + }] + }, + { + x: -1.5d, + y: 1.5d, + description: ["&a奥术粉灰:&f制作印记和Living套装的有用物品。"], + dependencies: ["000000000000011F"], + size: 0.6d, + id: "0000000000000121", + tasks: [{ + id: "0000000000000122", + type: "item", + item: { + id: "bloodmagic:arcaneashes", + Count: 1b, + tag: { + Damage: 0 + } + } + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/botania.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/botania.snbt" new file mode 100644 index 000000000..3dfc9dcd2 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/botania.snbt" @@ -0,0 +1,644 @@ +{ + id: "0000000000000123", + group: "", + order_index: 2, + filename: "botania", + title: "公主,醒醒!还有另一座城市等着我们烧毁呢!", + icon: { + id: "botania:lexicon", + Count: 1b, + tag: { + "botania:elven_unlock": 1b + } + }, + default_quest_shape: "", + quests: [ + { + x: -3.0d, + y: 0.5d, + shape: "diamond", + description: ["&a植物魔法辞典:&f里面记载了植物魔法的所有内容。"], + id: "0000000000000124", + tasks: [{ + id: "61109A830BF77E33", + type: "checkmark", + icon: "botania:lexicon" + }], + rewards: [ + { + id: "0000000000000126", + type: "item", + item: "botania:fertilizer", + count: 4 + }, + { + id: "61221F6BA0E9BDF5", + type: "item", + item: "botania:lexicon" + } + ] + }, + { + x: -2.4d, + y: 1.7999999999999998d, + shape: "hexagon", + description: ["&a提示:&f你可以用Cyclic的使用者自动给它填水。"], + dependencies: ["0000000000000124"], + size: 1.2d, + id: "0000000000000127", + tasks: [{ + id: "0000000000000128", + type: "item", + item: "botania:apothecary_default" + }] + }, + { + x: -1.0d, + y: 3.0d, + description: ["&a提示:&f有非常简单的自动化白雏菊的方法,脑洞开大点。"], + dependencies: ["0000000000000127"], + id: "0000000000000129", + tasks: [{ + id: "000000000000012A", + type: "item", + item: "botania:pure_daisy" + }], + rewards: [{ + id: "000000000000012B", + type: "item", + item: "botania:open_crate" + }] + }, + { + x: 0.44999999999999996d, + y: 2.25d, + shape: "diamond", + description: ["&a提示:&f同样,也有非常简单的白色混凝土自动化方式。在JEI里看看吧。"], + dependencies: ["0000000000000129"], + size: 0.9d, + id: "000000000000012C", + tasks: [{ + id: "000000000000012D", + type: "item", + item: "botania:livingrock", + count: 16L + }] + }, + { + x: 0.44999999999999996d, + y: 3.5999999999999996d, + shape: "diamond", + description: ["&a提示:&f使用搅拌器制作防腐木板是个不错的方法。"], + dependencies: ["0000000000000129"], + size: 0.9d, + id: "000000000000012E", + tasks: [{ + id: "000000000000012F", + type: "item", + item: "botania:livingwood" + }] + }, + { + x: 2.0d, + y: 2.0d, + description: ["&a事实上:&f这就是botania的基础电池,只是装魔力罢了。"], + dependencies: ["000000000000012C"], + id: "0000000000000130", + tasks: [{ + id: "0000000000000131", + type: "item", + item: "botania:mana_pool" + }] + }, + { + x: 1.5d, + y: 5.0d, + description: ["&a提示:&f一朵贪食花产生的魔力远多于一个魔力发射器的容量。"], + dependencies: ["000000000000012E"], + id: "0000000000000132", + tasks: [{ + id: "0000000000000133", + type: "item", + item: "botania:mana_spreader", + count: 4L + }] + }, + { + x: 2.0d, + y: 3.5d, + description: ["&a活木枝:&f活木做的木棍。"], + dependencies: ["000000000000012E"], + id: "0000000000000134", + tasks: [{ + id: "0000000000000135", + type: "item", + item: "botania:livingwood_twig", + count: 4L + }] + }, + { + x: 4.5d, + y: 2.0d, + shape: "hexagon", + description: ["&a符文祭坛:&f自动化所有的符文其实很简单。"], + dependencies: ["0000000000000130"], + id: "0000000000000136", + tasks: [{ + id: "0000000000000137", + type: "item", + item: "botania:runic_altar" + }] + }, + { + x: 2.25d, + y: 0.8999999999999999d, + description: ["&a魔力石板:&f移动式魔力存储。"], + dependencies: ["0000000000000130"], + size: 0.9d, + id: "0000000000000138", + tasks: [{ + id: "0000000000000139", + type: "item", + item: { + id: "botania:mana_tablet", + Count: 1b, + tag: {} + } + }] + }, + { + x: 2.8d, + y: 0.0d, + description: ["&a魔力之戒:&f可以穿在身上的移动式魔力存储。"], + dependencies: ["0000000000000130"], + size: 0.8d, + id: "000000000000013A", + tasks: [{ + id: "000000000000013B", + type: "item", + item: { + id: "botania:mana_ring", + Count: 1b, + tag: {} + } + }] + }, + { + x: 1.2d, + y: 1.2d, + shape: "hexagon", + description: ["&a炼金催化器:&fJEI里有非常详尽的合成表。"], + dependencies: ["0000000000000130"], + size: 0.8d, + id: "000000000000013C", + tasks: [{ + id: "000000000000013D", + type: "item", + item: "botania:alchemy_catalyst" + }] + }, + { + x: 3.0d, + y: 4.5d, + description: ["&a森林法杖:&f一个不能使用魔法的法杖。"], + dependencies: ["0000000000000134"], + id: "000000000000013E", + tasks: [{ + id: "000000000000013F", + type: "item", + item: { + id: "botania:twig_wand", + Count: 1b, + tag: { + color1: 0, + color2: 0 + } + } + }] + }, + { + x: 3.5d, + y: 3.5d, + description: ["&a查看植物魔法辞典获得更多信息。"], + dependencies: ["0000000000000136"], + id: "0000000000000140", + tasks: [{ + id: "0000000000000141", + type: "item", + item: "botania:travel_belt" + }] + }, + { + x: 4.0d, + y: 5.0d, + description: ["&a查看植物魔法辞典获得更多信息。"], + dependencies: ["0000000000000144"], + id: "0000000000000142", + tasks: [{ + id: "0000000000000143", + type: "item", + item: "botania:super_travel_belt" + }] + }, + { + x: 4.5d, + y: 4.0d, + description: ["&a查看植物魔法辞典获得更多信息。"], + dependencies: ["0000000000000140"], + id: "0000000000000144", + tasks: [{ + id: "0000000000000145", + type: "item", + item: "botania:speed_up_belt" + }] + }, + { + x: 6.500000000000001d, + y: 2.6d, + shape: "hexagon", + description: ["&a泰拉凝聚板: &f有着酷炫特效的魔法合成器。"], + dependencies: ["0000000000000136"], + size: 1.2d, + id: "0000000000000146", + tasks: [{ + id: "0000000000000147", + type: "item", + item: "botania:terra_plate" + }] + }, + { + x: 7.5d, + y: 1.5d, + description: ["&a泰拉钢锭:&f有关泰拉的金属锭。"], + dependencies: ["0000000000000146"], + id: "0000000000000148", + tasks: [{ + id: "0000000000000149", + type: "item", + item: "botania:terrasteel_ingot" + }] + }, + { + x: 5.5d, + y: 3.5d, + description: ["&a自然水晶:&f自然水晶之母"], + dependencies: ["0000000000000146"], + id: "000000000000014A", + tasks: [{ + id: "000000000000014B", + type: "item", + item: "botania:natura_pylon" + }] + }, + { + title: "符文 Lv1", + x: 3.5d, + y: 1.0d, + description: ["&aBotania的基础符文!"], + dependencies: ["0000000000000136"], + id: "000000000000014C", + tasks: [ + { + id: "000000000000014D", + type: "item", + item: "botania:rune_water" + }, + { + id: "000000000000014E", + type: "item", + item: "botania:rune_fire" + }, + { + id: "000000000000014F", + type: "item", + item: "botania:rune_earth" + }, + { + id: "0000000000000150", + type: "item", + item: "botania:rune_air" + } + ] + }, + { + title: "符文 Lv2", + x: 4.5d, + y: 0.0d, + description: ["&aBotania的进阶符文!"], + dependencies: ["0000000000000136"], + id: "0000000000000151", + tasks: [ + { + id: "0000000000000152", + type: "item", + item: "botania:rune_spring" + }, + { + id: "0000000000000153", + type: "item", + item: "botania:rune_summer" + }, + { + id: "0000000000000154", + type: "item", + item: "botania:rune_autumn" + }, + { + id: "0000000000000155", + type: "item", + item: "botania:rune_winter" + }, + { + id: "0000000000000156", + type: "item", + item: "botania:rune_mana" + } + ] + }, + { + title: "符文 Lv3", + x: 5.5d, + y: 0.5d, + description: ["&aBotania的高级符文!"], + dependencies: ["0000000000000136"], + id: "0000000000000157", + tasks: [ + { + id: "0000000000000158", + type: "item", + item: "botania:rune_lust" + }, + { + id: "0000000000000159", + type: "item", + item: "botania:rune_gluttony" + }, + { + id: "000000000000015A", + type: "item", + item: "botania:rune_greed" + }, + { + id: "000000000000015B", + type: "item", + item: "botania:rune_sloth" + } + ] + }, + { + x: 8.0d, + y: 4.0d, + shape: "octagon", + description: ["&d精灵门核心:&f无法进入的二次元之门的核心。"], + dependencies: ["0000000000000146"], + id: "000000000000015C", + tasks: [ + { + id: "000000000000015D", + type: "item", + item: "botania:alfheim_portal" + }, + { + id: "000000000000015E", + type: "item", + item: "botania:glimmering_livingwood", + count: 3L + }, + { + id: "000000000000015F", + type: "item", + item: "botania:livingwood", + count: 8L + } + ], + rewards: [{ + id: "0000000000000160", + type: "item", + item: { + id: "botania:mana_gun", + Count: 1b, + tag: {} + } + }] + }, + { + x: 7.0d, + y: 5.0d, + description: ["&a查看植物魔法辞典获得更多信息。"], + dependencies: ["000000000000015C"], + id: "0000000000000161", + tasks: [{ + id: "0000000000000162", + type: "item", + item: "botania:elementium_ingot" + }] + }, + { + x: 5.85d, + y: 5.3999999999999995d, + shape: "diamond", + description: ["&d精灵魔力发射器:&f更快的魔力发射器。但不是最快的。"], + dependencies: ["0000000000000161"], + size: 0.9d, + id: "0000000000000163", + tasks: [{ + id: "0000000000000164", + type: "item", + item: "botania:elven_spreader" + }] + }, + { + x: 9.0d, + y: 2.0d, + description: ["&d源质钢套:&f粉色二次元套装。"], + dependencies: ["000000000000015C"], + id: "0000000000000165", + tasks: [ + { + id: "0000000000000166", + type: "item", + item: { + id: "botania:elementium_helmet", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "0000000000000167", + type: "item", + item: { + id: "botania:elementium_chestplate", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "0000000000000168", + type: "item", + item: { + id: "botania:elementium_leggings", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "0000000000000169", + type: "item", + item: { + id: "botania:elementium_boots", + Count: 1b, + tag: { + Damage: 0 + } + } + } + ], + rewards: [{ + id: "000000000000016A", + type: "item", + item: "pamhc2foodextended:lemonsmoothieitem", + count: 8 + }] + }, + { + icon: "botania:gaia_pylon", + x: 10.0d, + y: 3.5d, + description: ["&d植物魔法辞典:&f里面有更多后期游戏的信息。"], + dependencies: ["000000000000016D"], + id: "000000000000016B", + tasks: [{ + id: "000000000000016C", + type: "item", + item: { + id: "botania:lexicon", + Count: 1b, + tag: { + "botania:elven_unlock": 1b + } + } + }] + }, + { + x: 10.0d, + y: 5.0d, + shape: "octagon", + description: [ + "&d盖亚之魂:&f合成用物品,可以通过击杀盖亚获得。", + "", + "&d查看植物魔法辞典获得更多信息。" + ], + dependencies: ["000000000000015C"], + id: "000000000000016D", + tasks: [{ + id: "000000000000016E", + type: "item", + item: "botania:life_essence", + count: 8L + }], + rewards: [{ + id: "000000000000016F", + type: "item", + item: { + id: "botania:dice", + Count: 1b, + tag: {} + } + }] + }, + { + x: 1.5d, + y: 0.5d, + shape: "octagon", + description: ["&a磁化指环:&f免费的磁铁。是的...它也可以不用魔力。"], + dependencies: ["0000000000000130"], + size: 0.9d, + id: "0000000000000170", + tasks: [{ + id: "0000000000000171", + type: "item", + item: { + id: "botania:magnet_ring", + Count: 1b, + tag: {} + } + }] + }, + { + x: 8.0d, + y: 2.5d, + description: ["&d触物指环:&f增加玩家的最大接触范围。"], + dependencies: ["000000000000015C"], + id: "0000000000000172", + tasks: [{ + id: "0000000000000173", + type: "item", + item: { + id: "botania:reach_ring", + Count: 1b, + tag: { + baubleUUIDMost: -23831268810011884L, + baubleUUIDLeast: -8419620320435513121L + } + } + }] + }, + { + x: 11.5d, + y: 4.0d, + description: ["&d天翼族之冠:&f创造飞行。当然,它需要消耗魔力。"], + dependencies: ["000000000000016D"], + id: "0000000000000174", + tasks: [{ + id: "0000000000000175", + type: "item", + item: { + id: "botania:flight_tiara", + Count: 1b, + tag: { + variant: 0 + } + } + }] + }, + { + x: 12.5d, + y: 6.0d, + shape: "gear", + description: ["&d盖亚魂锭:&f昂贵的合成用物品。"], + dependencies: ["000000000000016D"], + size: 1.3d, + id: "0000000000000176", + tasks: [{ + id: "0000000000000177", + type: "item", + item: "botania:gaia_ingot" + }] + }, + { + x: 8.5d, + y: 6.0d, + description: ["&a查看植物魔法辞典获得更多信息。"], + dependencies: ["000000000000016D"], + id: "0000000000000178", + tasks: [ + { + id: "0000000000000179", + type: "item", + item: "botania:unholy_cloak" + }, + { + id: "000000000000017A", + type: "item", + item: "botania:balance_cloak" + } + ] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/darling_in_the_franxx.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/darling_in_the_franxx.snbt" new file mode 100644 index 000000000..20da5c3ea --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/darling_in_the_franxx.snbt" @@ -0,0 +1,732 @@ +{ + id: "0000000000000019", + group: "", + order_index: 1, + filename: "darling_in_the_franxx", + title: "Kabaneri of the Iron Fortress", + icon: "immersiveengineering:tesla_coil", + default_quest_shape: "", + quests: [ + { + x: 0.0d, + y: 0.0d, + shape: "hexagon", + size: 1.2d, + id: "000000000000001A", + tasks: [{ + id: "000000000000001C", + type: "item", + item: { + id: "immersiveengineering:hammer", + Count: 1b, + tag: { + Damage: 0 + } + } + }] + }, + { + x: 2.0d, + y: 1.0d, + shape: "hexagon", + subtitle: "就是个普通的机器框架。", + dependencies: ["000000000000001A"], + size: 1.1d, + id: "000000000000001D", + tasks: [{ + id: "000000000000001F", + type: "item", + item: "mysticalagriculture:machine_frame" + }], + rewards: [{ + id: "00000000000005F8", + type: "item", + item: "thermal:lumium_ingot", + count: 4 + }] + }, + { + x: -1.2d, + y: -2.4d, + shape: "diamond", + subtitle: "你现在可以制作一些部件了。", + dependencies: ["0000000000000124"], + size: 0.8d, + id: "0000000000000020", + tasks: [{ + id: "0000000000000021", + type: "item", + item: "immersiveengineering:workbench" + }], + rewards: [{ + id: "00000000000005C1", + type: "item", + item: "immersiveengineering:electron_tube", + count: 4 + }] + }, + { + x: 1.0d, + y: 2.0d, + shape: "pentagon", + dependencies: ["000000000000001D"], + id: "0000000000000022", + tasks: [{ + id: "0000000000000023", + type: "item", + item: "immersiveengineering:capacitor_lv" + }], + rewards: [{ + id: "00000000000005FE", + type: "item", + item: "pamhc2foodcore:friedeggitem" + }] + }, + { + icon: "immersiveengineering:blast_furnace", + x: 2.0d, + y: -1.0d, + shape: "hexagon", + subtitle: "现在,你可以制作你的第一块钢。", + dependencies: ["000000000000001A"], + size: 1.1d, + id: "0000000000000026", + tasks: [{ + id: "0000000000000027", + type: "item", + item: "immersiveengineering:blastbrick", + count: 27L + }] + }, + { + title: "加速Tick", + icon: "torcherino:lantern", + x: 1.0d, + y: -2.0d, + shape: "diamond", + subtitle: "我猜你会需要很多钢。你可以用它来加速炼钢。", + description: [ + "很像ProjectE的时间怀表。", + "", + "&e右键切换范围。" + ], + dependencies: ["0000000000000026"], + id: "0000000000000028", + tasks: [{ + id: "000000000000002A", + type: "item", + item: "torcherino:torcherino" + }], + rewards: [{ + id: "000000000000002B", + type: "item", + item: "pamhc2foodcore:toastitem", + count: 5 + }] + }, + { + title: "我们需要更多板!", + icon: "immersiveengineering:metal_press", + x: 4.0d, + y: -2.0d, + shape: "pentagon", + subtitle: "多做点板没有坏处。", + description: ["&e 你总是会需要更多板的。"], + dependencies: ["00000000000005A1"], + id: "000000000000002C", + tasks: [ + { + id: "000000000000002E", + type: "item", + item: "immersiveengineering:steel_scaffolding_standard", + count: 2L + }, + { + id: "000000000000002F", + type: "item", + item: "immersiveengineering:rs_engineering" + }, + { + id: "0000000000000030", + type: "item", + item: "immersiveengineering:heavy_engineering" + }, + { + id: "0000000000000031", + type: "item", + item: "immersiveengineering:conveyor_basic", + count: 2L + }, + { + id: "0000000000000032", + type: "item", + item: "minecraft:piston" + } + ], + rewards: [{ + id: "00000000000005D3", + type: "item", + item: "pamhc2foodcore:potroastitem" + }] + }, + { + x: 0.5d, + y: 3.0d, + shape: "pentagon", + dependencies: ["0000000000000022"], + id: "0000000000000035", + tasks: [{ + id: "0000000000000036", + type: "item", + item: "immersiveengineering:capacitor_mv" + }], + rewards: [{ + id: "00000000000005FF", + type: "item", + item: "pamhc2foodcore:friedeggitem" + }] + }, + { + x: -0.5d, + y: 2.5d, + shape: "pentagon", + dependencies: ["0000000000000035"], + id: "0000000000000037", + tasks: [{ + id: "0000000000000038", + type: "item", + item: "immersiveengineering:capacitor_hv" + }], + rewards: [{ + id: "0000000000000600", + type: "item", + item: "pamhc2foodcore:friedeggitem" + }] + }, + { + icon: "immersiveengineering:alloy_smelter", + x: -1.5d, + y: 1.0d, + subtitle: "合金窑已被禁用。请使用Silent's Mechanism的合金炉。", + dependencies: ["000000000000001A"], + id: "000000000000003A", + tasks: [{ + id: "0000000000000444", + type: "checkmark", + title: "Alloy Smelter", + icon: "immersiveengineering:alloybrick" + }], + rewards: [{ + id: "00000000000005C4", + type: "item", + item: "pamhc2foodcore:jellydonutitem", + count: 2 + }] + }, + { + x: -2.0d, + y: -0.5d, + subtitle: "更好的工作台!", + dependencies: ["000000000000001A"], + id: "0000000000000054", + tasks: [{ + id: "0000000000000055", + type: "item", + item: "immersiveengineering:craftingtable" + }], + rewards: [{ + id: "00000000000005C3", + type: "item", + item: "pamhc2foodcore:jellydonutitem", + count: 2 + }] + }, + { + icon: "immersiveengineering:mold_gear", + x: -0.5d, + y: -2.0d, + dependencies: ["0000000000000020"], + size: 0.9d, + id: "0000000000000056", + tasks: [ + { + id: "0000000000000057", + type: "item", + item: "immersiveengineering:mold_plate" + }, + { + id: "0000000000000058", + type: "item", + item: "immersiveengineering:mold_gear" + }, + { + id: "0000000000000059", + type: "item", + item: "immersiveengineering:mold_rod" + }, + { + id: "000000000000005A", + type: "item", + item: "immersiveengineering:mold_wire" + } + ], + rewards: [{ + id: "000000000000005B", + type: "item", + item: "pamhc2foodcore:chocolaterollitem", + count: 8 + }] + }, + { + title: "焦炉", + icon: "immersiveengineering:coke_oven", + x: -1.5d, + y: -1.5d, + subtitle: "生产焦煤的一种方式。", + dependencies: ["000000000000001A"], + id: "1923BD75AD92E9A5", + tasks: [{ + id: "2FA2F816EB01282A", + type: "item", + item: "immersiveengineering:cokebrick", + count: 27L + }], + rewards: [{ + id: "00000000000005C2", + type: "item", + item: "immersiveengineering:coal_coke", + count: 16 + }] + }, + { + x: 2.8d, + y: 2.0d, + shape: "diamond", + dependencies: ["000000000000001D"], + size: 0.8d, + id: "000000000000033F", + tasks: [{ + id: "0000000000000340", + type: "item", + item: "immersiveengineering:charging_station" + }] + }, + { + x: 2.5d, + y: -2.0d, + shape: "hexagon", + subtitle: "恭喜!", + dependencies: ["0000000000000026"], + size: 0.9d, + id: "00000000000005A1", + tasks: [{ + id: "00000000000005A2", + type: "item", + item: "emendatusenigmatica:steel_ingot" + }], + rewards: [{ + id: "00000000000005D2", + type: "item", + item: "pamhc2foodcore:melonsmoothieitem", + count: 2 + }] + }, + { + title: "粉碎机", + icon: "immersiveengineering:crusher", + x: 4.0d, + y: -4.0d, + shape: "diamond", + dependencies: ["000000000000002C"], + id: "00000000000005A3", + tasks: [ + { + id: "00000000000005D4", + type: "item", + item: "immersiveengineering:steel_scaffolding_standard", + count: 10L + }, + { + id: "00000000000005D5", + type: "item", + item: "immersiveengineering:light_engineering", + count: 10L + }, + { + id: "00000000000005D6", + type: "item", + item: "minecraft:hopper", + count: 9L + }, + { + id: "00000000000005D7", + type: "item", + item: "immersiveengineering:steel_fence", + count: 8L + }, + { + id: "00000000000005D8", + type: "item", + item: "immersiveengineering:rs_engineering" + } + ], + rewards: [{ + id: "00000000000005ED", + type: "item", + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + }, + { + title: "工业挤压机", + icon: "immersiveengineering:squeezer", + x: 5.0d, + y: -4.0d, + shape: "diamond", + dependencies: ["000000000000002C"], + id: "00000000000005A5", + tasks: [ + { + id: "00000000000005DC", + type: "item", + item: "immersiveengineering:steel_scaffolding_standard", + count: 6L + }, + { + id: "00000000000005DD", + type: "item", + item: "immersiveengineering:wooden_barrel", + count: 4L + }, + { + id: "00000000000005DE", + type: "item", + item: "minecraft:piston" + }, + { + id: "00000000000005DF", + type: "item", + item: "immersiveengineering:light_engineering", + count: 2L + }, + { + id: "00000000000005E0", + type: "item", + item: "immersiveengineering:rs_engineering" + }, + { + id: "00000000000005E1", + type: "item", + item: "immersiveengineering:steel_fence", + count: 3L + }, + { + id: "00000000000005E2", + type: "item", + item: "immersiveengineering:fluid_pipe", + count: 2L + } + ], + rewards: [{ + id: "00000000000005EC", + type: "item", + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + }, + { + title: "锯木机", + icon: "immersiveengineering:sawmill", + x: 5.5d, + y: -3.0d, + shape: "diamond", + dependencies: ["000000000000002C"], + id: "00000000000005A7", + tasks: [ + { + id: "00000000000005E4", + type: "item", + item: "immersiveengineering:steel_scaffolding_standard", + count: 8L + }, + { + id: "00000000000005E5", + type: "item", + item: "immersiveengineering:light_engineering", + count: 6L + }, + { + id: "00000000000005E6", + type: "item", + item: "immersiveengineering:sheetmetal_iron", + count: 4L + }, + { + id: "00000000000005E8", + type: "item", + item: "immersiveengineering:heavy_engineering", + count: 2L + }, + { + id: "00000000000005E9", + type: "item", + item: "immersiveengineering:rs_engineering" + }, + { + id: "00000000000005EA", + type: "item", + item: "immersiveengineering:conveyor_basic", + count: 4L + } + ], + rewards: [{ + id: "00000000000005EB", + type: "item", + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + }, + { + title: "混合器", + icon: "immersiveengineering:mixer", + x: 5.5d, + y: -2.0d, + shape: "diamond", + dependencies: ["000000000000002C"], + id: "00000000000005A9", + tasks: [ + { + id: "00000000000005EF", + type: "item", + item: "immersiveengineering:steel_scaffolding_standard", + count: 5L + }, + { + id: "00000000000005F0", + type: "item", + item: "immersiveengineering:light_engineering", + count: 4L + }, + { + id: "00000000000005F1", + type: "item", + item: "immersiveengineering:sheetmetal_iron", + count: 4L + }, + { + id: "00000000000005F2", + type: "item", + item: "immersiveengineering:rs_engineering" + }, + { + id: "00000000000005F3", + type: "item", + item: "immersiveengineering:steel_fence" + }, + { + id: "00000000000005F4", + type: "item", + item: "immersiveengineering:fluid_pipe", + count: 3L + } + ], + rewards: [{ + id: "00000000000005F5", + type: "item", + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + }, + { + x: 3.15d, + y: -3.15d, + shape: "diamond", + subtitle: "自动润滑器可以用来加速粉碎机、挖掘机和采油机的工作速度,大约是25%。", + dependencies: ["000000000000002C"], + size: 0.9d, + id: "00000000000005AB", + tasks: [{ + id: "00000000000005AC", + type: "item", + item: "immersivepetroleum:auto_lubricator" + }], + rewards: [{ + id: "00000000000005EE", + type: "item", + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + }, + { + x: 4.0d, + y: 1.5d, + subtitle: "环境友好,无限能源。", + dependencies: ["000000000000001D"], + id: "00000000000005AD", + tasks: [{ + id: "00000000000005AE", + type: "item", + item: "immersiveengineering:dynamo" + }] + }, + { + x: 5.5d, + y: 2.0d, + dependencies: ["00000000000005AD"], + id: "00000000000005AF", + tasks: [{ + id: "00000000000005B0", + type: "item", + item: "immersiveengineering:watermill" + }], + rewards: [{ + id: "00000000000005FB", + type: "item", + item: "pamhc2foodcore:caramelicecreamitem" + }] + }, + { + x: 5.0d, + y: 3.0d, + dependencies: ["00000000000005AD"], + id: "00000000000005B1", + tasks: [{ + id: "00000000000005B2", + type: "item", + item: "immersiveengineering:windmill" + }], + rewards: [{ + id: "00000000000005FC", + type: "item", + item: "pamhc2foodcore:caramelicecreamitem" + }] + }, + { + title: "精馏塔", + icon: "immersivepetroleum:distillationtower", + x: 4.0d, + y: -0.5d, + subtitle: "你可以用油发电。", + description: [""], + dependencies: ["0000000000000026"], + id: "00000000000005B3", + tasks: [ + { + id: "00000000000005C7", + type: "item", + item: "immersiveengineering:steel_scaffolding_standard", + count: 25L + }, + { + id: "00000000000005C8", + type: "item", + item: "immersiveengineering:heavy_engineering", + count: 4L + }, + { + id: "00000000000005C9", + type: "item", + item: "immersiveengineering:rs_engineering" + }, + { + id: "00000000000005CA", + type: "item", + item: "immersiveengineering:sheetmetal_iron", + count: 60L + }, + { + id: "00000000000005CB", + type: "item", + item: "immersiveengineering:slab_steel_scaffolding_standard", + count: 30L + }, + { + id: "00000000000005CC", + type: "item", + item: "immersiveengineering:fluid_pipe", + count: 17L + } + ], + rewards: [{ + id: "00000000000005CE", + type: "item", + item: "immersiveengineering:wooden_barrel", + count: 4 + }] + }, + { + x: 5.0d, + y: -1.0d, + shape: "hexagon", + dependencies: ["00000000000005B3"], + id: "00000000000005B5", + tasks: [{ + id: "00000000000005B6", + type: "item", + item: "immersivepetroleum:gas_generator" + }], + rewards: [{ + id: "00000000000005F7", + type: "item", + item: "pamhc2foodcore:caramelappleitem" + }] + }, + { + x: 6.0d, + y: -0.5d, + shape: "diamond", + dependencies: ["00000000000005B5"], + id: "00000000000005B7", + tasks: [{ + id: "00000000000005B8", + type: "item", + item: "immersivepetroleum:napalm_bucket" + }] + }, + { + x: 5.5d, + y: 0.0d, + shape: "diamond", + dependencies: ["00000000000005B5"], + id: "00000000000005B9", + tasks: [{ + id: "00000000000005BA", + type: "item", + item: "immersivepetroleum:diesel_bucket" + }] + }, + { + x: 6.0d, + y: 0.5d, + shape: "diamond", + dependencies: ["00000000000005B5"], + id: "00000000000005BB", + tasks: [{ + id: "00000000000005BC", + type: "item", + item: "immersivepetroleum:gasoline_bucket" + }] + }, + { + x: 6.5d, + y: 0.0d, + shape: "diamond", + dependencies: ["00000000000005B5"], + id: "00000000000005BD", + tasks: [{ + id: "00000000000005BE", + type: "item", + item: "immersivepetroleum:lubricant_bucket" + }] + }, + { + x: 2.5d, + y: 3.0d, + shape: "octagon", + subtitle: "你可以用它加速作物生长。", + dependencies: ["000000000000001D"], + size: 1.1d, + id: "00000000000005BF", + tasks: [{ + id: "00000000000005C0", + type: "item", + item: "immersiveengineering:cloche" + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/enviromental_tech.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/enviromental_tech.snbt" new file mode 100644 index 000000000..ef7c6e169 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/enviromental_tech.snbt" @@ -0,0 +1,428 @@ +{ + id: "000000000000019B", + group: "", + order_index: 10, + filename: "enviromental_tech", + title: "月与影", + icon: { + id: "envirotech:xerothium_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + }, + default_quest_shape: "", + quests: [ + { + x: 6.0d, + y: 0.0d, + shape: "hexagon", + dependencies: ["00000000000001A0"], + id: "000000000000019C", + tasks: [{ + id: "000000000000019D", + type: "item", + item: "envirocore:assembler" + }] + }, + { + x: 1.0d, + y: -2.5d, + dependencies: ["00000000000001A0"], + id: "000000000000019E", + tasks: [{ + id: "000000000000019F", + type: "item", + item: "valkyrielib:info_tablet" + }] + }, + { + x: 1.2d, + y: 0.0d, + size: 1.2d, + id: "00000000000001A0", + tasks: [{ + id: "00000000000001A1", + type: "item", + item: "envirocore:litherite_crystal" + }] + }, + { + x: 4.0d, + y: 1.0d, + dependencies: ["00000000000001A0"], + id: "000000000000027F", + tasks: [{ + id: "0000000000000280", + type: "item", + item: { + id: "envirotech:litherite_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 2.0d, + y: 2.0d, + dependencies: ["000000000000027F"], + id: "0000000000000281", + tasks: [{ + id: "0000000000000282", + type: "item", + item: "envirocore:erodium_crystal" + }] + }, + { + x: 4.0d, + y: 2.0d, + dependencies: ["0000000000000281"], + id: "0000000000000283", + tasks: [{ + id: "0000000000000284", + type: "item", + item: { + id: "envirotech:erodium_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 2.0d, + y: 3.0d, + dependencies: ["0000000000000283"], + id: "0000000000000285", + tasks: [{ + id: "0000000000000286", + type: "item", + item: "envirocore:kyronite_crystal" + }] + }, + { + x: 4.0d, + y: 3.0d, + dependencies: ["0000000000000285"], + id: "0000000000000287", + tasks: [{ + id: "0000000000000288", + type: "item", + item: { + id: "envirotech:kyronite_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 4.0d, + y: 4.0d, + dependencies: ["0000000000000293"], + id: "0000000000000289", + tasks: [{ + id: "000000000000028A", + type: "item", + item: { + id: "envirotech:pladium_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 4.0d, + y: 5.0d, + dependencies: ["0000000000000297"], + id: "000000000000028B", + tasks: [{ + id: "000000000000028C", + type: "item", + item: { + id: "envirotech:ionite_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 4.0d, + y: 6.0d, + dependencies: ["0000000000000299"], + id: "000000000000028D", + tasks: [{ + id: "000000000000028E", + type: "item", + item: { + id: "envirotech:aethium_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 4.0d, + y: 7.0d, + dependencies: ["000000000000029B"], + id: "000000000000028F", + tasks: [{ + id: "0000000000000290", + type: "item", + item: { + id: "envirotech:nanorite_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 4.0d, + y: 8.0d, + dependencies: ["000000000000029D"], + id: "0000000000000291", + tasks: [{ + id: "0000000000000292", + type: "item", + item: { + id: "envirotech:xerothium_void_miner_ccu", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 2.0d, + y: 4.0d, + dependencies: ["0000000000000287"], + id: "0000000000000293", + tasks: [{ + id: "0000000000000294", + type: "item", + item: "envirocore:pladium_crystal" + }] + }, + { + x: 2.0d, + y: 5.0d, + dependencies: ["0000000000000289"], + id: "0000000000000297", + tasks: [{ + id: "0000000000000298", + type: "item", + item: "envirocore:ionite_crystal" + }] + }, + { + x: 2.0d, + y: 6.0d, + dependencies: ["000000000000028B"], + id: "0000000000000299", + tasks: [{ + id: "000000000000029A", + type: "item", + item: "envirocore:aethium_crystal" + }] + }, + { + x: 2.0d, + y: 7.0d, + dependencies: ["000000000000028D"], + id: "000000000000029B", + tasks: [{ + id: "000000000000029C", + type: "item", + item: "envirocore:nanorite_crystal" + }] + }, + { + x: 2.0d, + y: 8.0d, + dependencies: ["000000000000028F"], + id: "000000000000029D", + tasks: [{ + id: "000000000000029E", + type: "item", + item: "envirocore:xerothium_crystal" + }] + }, + { + x: 6.5d, + y: 1.5d, + dependencies: ["000000000000019C"], + id: "000000000000029F", + tasks: [{ + id: "00000000000002A0", + type: "item", + item: { + id: "envirocore:litherite_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 2.5d, + dependencies: ["000000000000029F"], + id: "00000000000002A1", + tasks: [{ + id: "00000000000002A2", + type: "item", + item: { + id: "envirocore:erodium_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 3.5d, + dependencies: ["00000000000002A1"], + id: "00000000000002A3", + tasks: [{ + id: "00000000000002A4", + type: "item", + item: { + id: "envirocore:kyronite_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 4.5d, + dependencies: ["00000000000002A3"], + id: "00000000000002A5", + tasks: [{ + id: "00000000000002A6", + type: "item", + item: { + id: "envirocore:pladium_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 5.5d, + dependencies: ["00000000000002A5"], + id: "00000000000002A7", + tasks: [{ + id: "00000000000002A8", + type: "item", + item: { + id: "envirocore:ionite_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 6.5d, + dependencies: ["00000000000002A7"], + id: "00000000000002A9", + tasks: [{ + id: "00000000000002AA", + type: "item", + item: { + id: "envirocore:aethium_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 7.5d, + dependencies: ["00000000000002A9"], + id: "00000000000002AB", + tasks: [{ + id: "00000000000002AC", + type: "item", + item: { + id: "envirocore:nanorite_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 6.5d, + y: 8.5d, + dependencies: ["00000000000002AB"], + id: "00000000000002AD", + tasks: [{ + id: "00000000000002AE", + type: "item", + item: { + id: "envirocore:xerothium_frame", + Count: 1b, + tag: { + colors: {} + } + } + }] + }, + { + x: 2.0d, + y: -3.0d, + dependencies: ["00000000000001A0"], + id: "00000000000002AF", + tasks: [{ + id: "00000000000002B0", + type: "item", + item: "envirocore:memory_programmer" + }] + }, + { + x: 3.0d, + y: -2.5d, + dependencies: ["00000000000001A0"], + id: "00000000000002B1", + tasks: [{ + id: "00000000000002B2", + type: "item", + item: { + id: "envirocore:rgb_controller", + Count: 1b, + tag: { + colors: {} + } + } + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/extended_crafting.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/extended_crafting.snbt" new file mode 100644 index 000000000..f920963b0 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/extended_crafting.snbt" @@ -0,0 +1,462 @@ +{ + id: "210C824739F46888", + group: "", + order_index: 11, + filename: "extended_crafting", + title: "为了逝去的资源,我们都要竭尽全力", + icon: "extendedcrafting:ultimate_singularity", + default_quest_shape: "", + quests: [ + { + x: 3.0d, + y: -0.5d, + shape: "diamond", + size: 1.3d, + id: "244B3D999DB6141C", + tasks: [{ + id: "194DED2EF3D61014", + type: "item", + item: { + id: "botania:mana_tablet", + Count: 1b, + tag: { + mana: 500000, + creative: 1b + } + } + }] + }, + { + x: 4.5d, + y: -0.5d, + shape: "diamond", + size: 1.4d, + id: "0A28449BDB5A0AC3", + tasks: [{ + id: "40020021352D68D5", + type: "item", + item: "botania:creative_pool" + }] + }, + { + x: -9.0d, + y: -1.0d, + id: "0B0308FD3F995983", + tasks: [{ + id: "7DB4AF487AE2CB91", + type: "item", + item: "extendedcrafting:ender_crafter" + }] + }, + { + x: -10.0d, + y: -1.5d, + id: "15EADEBA9E72C0F8", + tasks: [{ + id: "1023A0AAE3A777DE", + type: "item", + item: "extendedcrafting:ender_alternator" + }] + }, + { + x: -3.2500000000000004d, + y: -6.500000000000001d, + shape: "gear", + size: 1.5d, + id: "01924CC016C6E79B", + tasks: [{ + id: "7EDF2A03B5E3E380", + type: "item", + item: "extendedcrafting:black_iron_ingot" + }] + }, + { + x: -5.0d, + y: -4.0d, + id: "47B785D999B3A992", + tasks: [{ + id: "57863FBFD67248FD", + type: "item", + item: "extendedcrafting:basic_component" + }] + }, + { + x: -3.5d, + y: -4.5d, + id: "6EB375053C820BBA", + tasks: [{ + id: "1EDDB4939E402CC8", + type: "item", + item: "extendedcrafting:basic_catalyst" + }] + }, + { + x: -5.0d, + y: -3.0d, + id: "773784C7F1EFBCCA", + tasks: [{ + id: "598C2D72DFF32CF4", + type: "item", + item: "extendedcrafting:advanced_component" + }] + }, + { + x: -3.5d, + y: -3.5d, + id: "69C83254CD5AE040", + tasks: [{ + id: "0130A3C909814255", + type: "item", + item: "extendedcrafting:advanced_catalyst" + }] + }, + { + x: -5.0d, + y: -2.0d, + id: "7AB7C99AB277E3F3", + tasks: [{ + id: "5CCFCEE0418EE87E", + type: "item", + item: "extendedcrafting:elite_component" + }] + }, + { + x: -5.0d, + y: -1.0d, + id: "442FDFD1206C54FF", + tasks: [{ + id: "71D62E12B1093A21", + type: "item", + item: "extendedcrafting:ultimate_component" + }] + }, + { + x: -5.0d, + y: 0.0d, + id: "56A9FBF0970E45F2", + tasks: [{ + id: "62DC5765CD1E0961", + type: "item", + item: "extendedcrafting:redstone_component" + }] + }, + { + x: -3.5d, + y: -1.5d, + id: "000000000000023F", + tasks: [{ + id: "0000000000000240", + type: "item", + item: "extendedcrafting:ultimate_catalyst" + }] + }, + { + x: -5.0d, + y: 1.0d, + id: "0000000000000241", + tasks: [{ + id: "0000000000000242", + type: "item", + item: "extendedcrafting:ender_component" + }] + }, + { + x: -5.0d, + y: 2.0d, + id: "0000000000000243", + tasks: [{ + id: "0000000000000244", + type: "item", + item: "extendedcrafting:enhanced_ender_component" + }] + }, + { + x: -5.0d, + y: 3.0d, + id: "0000000000000245", + tasks: [{ + id: "0000000000000246", + type: "item", + item: "extendedcrafting:crystaltine_component" + }] + }, + { + x: -5.0d, + y: 4.0d, + id: "0000000000000247", + tasks: [{ + id: "0000000000000248", + type: "item", + item: "extendedcrafting:the_ultimate_component" + }] + }, + { + x: -3.5d, + y: 3.5d, + id: "0000000000000249", + tasks: [{ + id: "000000000000024A", + type: "item", + item: "extendedcrafting:the_ultimate_catalyst" + }] + }, + { + x: -3.5d, + y: 2.5d, + id: "000000000000024B", + tasks: [{ + id: "000000000000024C", + type: "item", + item: "extendedcrafting:crystaltine_catalyst" + }] + }, + { + x: -3.5d, + y: 1.5d, + id: "000000000000024D", + tasks: [{ + id: "000000000000024E", + type: "item", + item: "extendedcrafting:enhanced_ender_catalyst" + }] + }, + { + x: -3.5d, + y: 0.5d, + id: "000000000000024F", + tasks: [{ + id: "0000000000000250", + type: "item", + item: "extendedcrafting:ender_catalyst" + }] + }, + { + x: -3.5d, + y: -2.5d, + id: "0000000000000251", + tasks: [{ + id: "0000000000000252", + type: "item", + item: "extendedcrafting:elite_catalyst" + }] + }, + { + x: -3.5d, + y: -0.5d, + id: "0000000000000253", + tasks: [{ + id: "0000000000000254", + type: "item", + item: "extendedcrafting:redstone_catalyst" + }] + }, + { + x: -1.2d, + y: -3.5999999999999996d, + shape: "hexagon", + size: 1.2d, + id: "0000000000000255", + tasks: [{ + id: "0000000000000256", + type: "item", + item: "extendedcrafting:basic_table" + }] + }, + { + x: -1.2d, + y: -2.4d, + shape: "hexagon", + size: 1.2d, + id: "0000000000000257", + tasks: [{ + id: "0000000000000258", + type: "item", + item: "extendedcrafting:advanced_table" + }] + }, + { + x: -1.2d, + y: -1.2d, + shape: "hexagon", + size: 1.2d, + id: "0000000000000259", + tasks: [{ + id: "000000000000025A", + type: "item", + item: "extendedcrafting:elite_table" + }] + }, + { + x: -1.2d, + y: 0.0d, + shape: "hexagon", + size: 1.2d, + id: "000000000000025B", + tasks: [{ + id: "000000000000025C", + type: "item", + item: "extendedcrafting:ultimate_table" + }] + }, + { + x: 0.5d, + y: -3.0d, + id: "000000000000025D", + tasks: [{ + id: "000000000000025E", + type: "item", + item: "extendedcrafting:basic_auto_table" + }] + }, + { + x: 0.5d, + y: -2.0d, + id: "000000000000025F", + tasks: [{ + id: "0000000000000260", + type: "item", + item: "extendedcrafting:advanced_auto_table" + }] + }, + { + x: 0.5d, + y: -1.0d, + id: "0000000000000261", + tasks: [{ + id: "0000000000000262", + type: "item", + item: "extendedcrafting:elite_auto_table" + }] + }, + { + x: 0.5d, + y: 0.0d, + id: "0000000000000263", + tasks: [{ + id: "0000000000000264", + type: "item", + item: "extendedcrafting:ultimate_auto_table" + }] + }, + { + x: 5.5d, + y: 2.5d, + shape: "diamond", + size: 1.4d, + id: "0000000000000265", + tasks: [{ + id: "0000000000000266", + type: "item", + item: "mekanism:creative_fluid_tank" + }] + }, + { + x: 3.5d, + y: 2.5d, + shape: "diamond", + size: 1.4d, + id: "0000000000000267", + tasks: [{ + id: "0000000000000268", + type: "item", + item: "refinedstorage:creative_storage_disk" + }] + }, + { + x: 6.0d, + y: -0.5d, + shape: "diamond", + size: 1.4d, + id: "0000000000000269", + tasks: [{ + id: "000000000000026A", + type: "item", + item: "appliedenergistics2:creative_energy_cell" + }] + }, + { + x: 3.0d, + y: 1.0d, + shape: "diamond", + size: 1.4d, + id: "000000000000026B", + tasks: [{ + id: "000000000000026C", + type: "item", + item: "mekanism:creative_chemical_tank" + }] + }, + { + x: 6.0d, + y: 1.0d, + shape: "diamond", + size: 1.4d, + id: "000000000000026D", + tasks: [{ + id: "000000000000026E", + type: "item", + item: "powah:energy_cell_creative" + }] + }, + { + x: 4.5d, + y: 1.0d, + shape: "diamond", + size: 1.4d, + id: "000000000000026F", + tasks: [{ + id: "0000000000000270", + type: "item", + item: "storagedrawers:creative_vending_upgrade" + }] + }, + { + x: -8.5d, + y: -3.5d, + id: "0000000000000271", + tasks: [{ + id: "0000000000000272", + type: "item", + item: "extendedcrafting:crafting_core" + }] + }, + { + x: -9.5d, + y: -4.0d, + id: "0000000000000273", + tasks: [{ + id: "0000000000000274", + type: "item", + item: "extendedcrafting:pedestal", + count: 13L + }] + }, + { + icon: "refinedpipes:ultimate_extractor_attachment", + x: -8.0d, + y: -4.5d, + subtitle: "You Will Need The Whitelist To Automate Crafting Core Craftings. You Can Use These.", + id: "0000000000000275", + tasks: [ + { + id: "0000000000000276", + type: "item", + item: "refinedpipes:ultimate_extractor_attachment", + count: 4L + }, + { + id: "0000000000000277", + type: "item", + item: "refinedpipes:advanced_item_pipe", + count: 18L + } + ], + rewards: [{ + id: "0000000000000278", + type: "item", + item: "refinedpipes:ultimate_extractor_attachment", + count: 4 + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/flux_networks.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/flux_networks.snbt" new file mode 100644 index 000000000..37e52d257 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/flux_networks.snbt" @@ -0,0 +1,237 @@ +{ + id: "000000000000005C", + group: "", + order_index: 8, + filename: "flux_networks", + title: "Kaguya Ōtsutsuki", + icon: "fluxnetworks:flux_point", + default_quest_shape: "", + quests: [ + { + title: "黑色红石", + x: 0.0d, + y: 0.0d, + subtitle: "你会需要很多,超过1组", + description: ["&e 查看JEI获取更多信息。"], + id: "000000000000005D", + tasks: [{ + id: "000000000000005E", + type: "item", + item: "fluxnetworks:flux_dust", + count: 64L + }], + rewards: [ + { + id: "000000000000005F", + type: "item", + item: "fluxnetworks:flux_plug" + }, + { + id: "0000000000000060", + type: "item", + item: "fluxnetworks:flux_point" + } + ] + }, + { + x: -1.5d, + y: -0.5d, + dependencies: ["000000000000005D"], + id: "0000000000000063", + tasks: [{ + id: "0000000000000064", + type: "item", + item: "fluxnetworks:flux_plug" + }], + rewards: [{ + id: "0000000000000065", + type: "item", + item: "fluxnetworks:flux_plug" + }] + }, + { + x: -2.5d, + y: -1.5d, + dependencies: ["000000000000005D"], + id: "0000000000000066", + tasks: [{ + id: "0000000000000067", + type: "item", + item: "fluxnetworks:flux_point" + }] + }, + { + x: 2.5d, + y: -1.5d, + dependencies: ["000000000000005D"], + id: "0000000000000068", + tasks: [{ + id: "0000000000000069", + type: "item", + item: "fluxnetworks:flux_configurator" + }] + }, + { + x: 1.5d, + y: -0.5d, + dependencies: ["000000000000005D"], + id: "000000000000006A", + tasks: [{ + id: "000000000000006B", + type: "item", + item: "fluxnetworks:flux_block" + }] + }, + { + x: 0.0d, + y: -3.0d, + dependencies: ["000000000000005D"], + id: "000000000000006C", + tasks: [{ + id: "000000000000006D", + type: "item", + item: "fluxnetworks:flux_controller" + }] + }, + { + x: 0.0d, + y: 1.5d, + dependencies: ["000000000000005D"], + id: "000000000000006E", + tasks: [{ + id: "000000000000006F", + type: "item", + item: "fluxnetworks:basic_flux_storage" + }] + }, + { + x: 0.0d, + y: 2.5d, + dependencies: ["000000000000006E"], + id: "0000000000000070", + tasks: [{ + id: "0000000000000071", + type: "item", + item: "fluxnetworks:herculean_flux_storage" + }] + }, + { + x: 0.0d, + y: 3.5d, + dependencies: ["0000000000000070"], + id: "0000000000000072", + tasks: [{ + id: "0000000000000073", + type: "item", + item: "fluxnetworks:gargantuan_flux_storage" + }] + }, + { + title: "我的老朋友?", + x: -2.0d, + y: 1.5d, + subtitle: "我们什么时候遇见的?1.6.4?", + description: ["超立方体可以无线传输能量、流体、物品。"], + id: "00000000000000C3", + tasks: [{ + id: "00000000000000C4", + type: "item", + item: "tesseract:tesseract" + }] + }, + { + title: "无线红石!", + x: 2.0d, + y: 1.5d, + subtitle: "谁玩有线红石啊?", + description: ["&e 查看JEI获取更多信息。"], + id: "00000000000000C5", + tasks: [ + { + id: "00000000000000C6", + type: "item", + item: "cyclic:wireless_transmitter" + }, + { + id: "00000000000000C7", + type: "item", + item: "cyclic:wireless_receiver" + } + ] + }, + { + x: -1.5d, + y: 2.5d, + id: "2819108BCC5BE61B", + tasks: [{ + id: "2CE59BECF44BF658", + type: "item", + item: "powah:ender_cell_basic" + }] + }, + { + x: 1.5d, + y: 2.5d, + id: "00000000000003F2", + tasks: [ + { + id: "00000000000003F3", + type: "item", + item: "rftoolsutility:redstone_receiver" + }, + { + id: "00000000000003F4", + type: "item", + item: "rftoolsutility:redstone_transmitter" + } + ] + }, + { + x: -4.5d, + y: 0.0d, + shape: "diamond", + id: "000000000000060F", + tasks: [{ + id: "0000000000000610", + type: "item", + item: "solarflux:sp_5" + }] + }, + { + x: -5.0d, + y: 0.5d, + shape: "diamond", + dependencies: ["000000000000060F"], + id: "0000000000000611", + tasks: [{ + id: "0000000000000612", + type: "item", + item: "solarflux:sp_6" + }] + }, + { + x: -4.0d, + y: 0.5d, + shape: "diamond", + dependencies: ["0000000000000611"], + id: "0000000000000613", + tasks: [{ + id: "0000000000000614", + type: "item", + item: "solarflux:sp_7" + }] + }, + { + x: -4.5d, + y: 1.0d, + shape: "diamond", + dependencies: ["0000000000000613"], + id: "0000000000000615", + tasks: [{ + id: "0000000000000616", + type: "item", + item: "solarflux:sp_8" + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/foregoing.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/foregoing.snbt" new file mode 100644 index 000000000..a6779fb56 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/foregoing.snbt" @@ -0,0 +1,413 @@ +{ + id: "00000000000000C1", + group: "", + order_index: 9, + filename: "foregoing", + title: "无言颂歌", + icon: "industrialforegoing:latex_processing_unit", + default_quest_shape: "", + quests: [ + { + disable_toast: true, + x: 0.0d, + y: 0.0d, + shape: "diamond", + id: "00000000000003AB", + tasks: [{ + id: "1056F405045B0931", + type: "checkmark", + icon: { + id: "patchouli:guide_book", + Count: 1b, + tag: { + "patchouli:book": "industrialforegoing:industrial_foregoing" + } + } + }], + rewards: [{ + id: "63B75892A0C46B7A", + type: "item", + item: { + id: "patchouli:guide_book", + Count: 1b, + tag: { + "patchouli:book": "industrialforegoing:industrial_foregoing" + } + } + }] + }, + { + x: 2.5d, + y: 1.5d, + dependencies: ["00000000000003AB"], + id: "00000000000003AD", + tasks: [{ + id: "00000000000003AE", + type: "item", + item: "industrialforegoing:machine_frame_pity" + }] + }, + { + x: 4.5d, + y: 1.0d, + shape: "diamond", + dependencies: ["00000000000003AD"], + id: "00000000000003AF", + tasks: [{ + id: "00000000000003B0", + type: "item", + item: "industrialforegoing:fluid_extractor" + }] + }, + { + x: 1.0d, + y: 2.5d, + dependencies: ["00000000000003AD"], + id: "00000000000003B1", + tasks: [ + { + id: "00000000000003B2", + type: "item", + item: "industrialforegoing:plant_gatherer" + }, + { + id: "00000000000003B3", + type: "item", + item: "industrialforegoing:plant_sower" + } + ] + }, + { + x: 1.0d, + y: 3.5d, + dependencies: ["00000000000003AD"], + id: "00000000000003B4", + tasks: [{ + id: "00000000000003B5", + type: "item", + item: "industrialforegoing:spores_recreator" + }] + }, + { + x: 2.0d, + y: 0.0d, + dependencies: ["00000000000003AD"], + id: "00000000000003B6", + tasks: [ + { + id: "00000000000003B7", + type: "item", + item: "industrialforegoing:biofuel_generator" + }, + { + id: "00000000000003B8", + type: "item", + item: "industrialforegoing:bioreactor" + } + ] + }, + { + x: 6.0d, + y: 1.5d, + shape: "diamond", + dependencies: ["00000000000003AF"], + id: "00000000000003B9", + tasks: [{ + id: "00000000000003BD", + type: "item", + item: "industrialforegoing:latex_processing_unit" + }] + }, + { + x: 4.0d, + y: 2.5d, + shape: "octagon", + dependencies: ["00000000000003AF"], + size: 1.3d, + id: "00000000000003BB", + tasks: [{ + id: "00000000000003BC", + type: "item", + item: "industrialforegoing:dissolution_chamber" + }] + }, + { + x: 6.0d, + y: 0.5d, + dependencies: ["00000000000003AF"], + id: "00000000000003BE", + tasks: [{ + id: "00000000000003BF", + type: "item", + item: "industrialforegoing:plastic" + }] + }, + { + x: 3.5d, + y: 0.0d, + dependencies: ["00000000000003AD"], + id: "00000000000003C0", + tasks: [ + { + id: "00000000000003C1", + type: "item", + item: "industrialforegoing:animal_rancher" + }, + { + id: "00000000000003C2", + type: "item", + item: "industrialforegoing:animal_feeder" + }, + { + id: "00000000000003C3", + type: "item", + item: "industrialforegoing:animal_baby_separator" + } + ] + }, + { + x: 7.0d, + y: -0.5d, + dependencies: ["00000000000003BE"], + id: "00000000000003C6", + tasks: [{ + id: "00000000000003C7", + type: "item", + item: "industrialforegoing:mob_crusher" + }] + }, + { + x: 7.5d, + y: 0.5d, + dependencies: ["00000000000003BE"], + id: "00000000000003C8", + tasks: [{ + id: "00000000000003C9", + type: "item", + item: "industrialforegoing:mob_slaughter_factory" + }] + }, + { + x: 8.5d, + y: 0.0d, + dependencies: ["00000000000003C8"], + id: "00000000000003CA", + tasks: [{ + id: "00000000000003CB", + type: "item", + item: "industrialforegoing:pink_slime_ingot" + }] + }, + { + x: 2.0d, + y: 3.0d, + dependencies: ["00000000000003AD"], + id: "00000000000003CC", + tasks: [ + { + id: "00000000000003CD", + type: "item", + item: "industrialforegoing:fluid_collector" + }, + { + id: "00000000000003CE", + type: "item", + item: "industrialforegoing:fluid_placer" + }, + { + id: "00000000000003CF", + type: "item", + item: "industrialforegoing:fluid_extractor" + } + ] + }, + { + x: 6.500000000000001d, + y: 3.9000000000000004d, + shape: "octagon", + dependencies: ["00000000000003BB"], + size: 1.3d, + id: "00000000000003D0", + tasks: [{ + id: "00000000000003D1", + type: "item", + item: "industrialforegoing:machine_frame_simple" + }] + }, + { + x: 5.0d, + y: 5.0d, + dependencies: ["00000000000003D0"], + id: "00000000000003D2", + tasks: [{ + id: "00000000000003D3", + type: "item", + item: "industrialforegoing:marine_fisher" + }] + }, + { + x: 7.0d, + y: 5.5d, + dependencies: ["00000000000003D0"], + id: "00000000000003D4", + tasks: [{ + id: "00000000000003D5", + type: "item", + item: "industrialforegoing:laser_drill" + }] + }, + { + x: 6.5d, + y: 2.5d, + dependencies: ["00000000000003D0"], + id: "00000000000003D6", + tasks: [{ + id: "00000000000003D7", + type: "item", + item: "industrialforegoing:mob_detector" + }] + }, + { + x: 5.5d, + y: -0.5d, + dependencies: ["00000000000003C6"], + id: "00000000000003D8", + tasks: [{ + id: "00000000000003D9", + type: "item", + item: "industrialforegoing:mob_imprisonment_tool" + }] + }, + { + x: 9.100000000000001d, + y: 1.9500000000000002d, + shape: "octagon", + dependencies: ["00000000000003D0"], + size: 1.3d, + id: "00000000000003DA", + tasks: [{ + id: "00000000000003DB", + type: "item", + item: "industrialforegoing:machine_frame_advanced" + }] + }, + { + x: 7.5d, + y: 1.5d, + dependencies: ["00000000000003DA"], + id: "00000000000003DC", + tasks: [{ + id: "00000000000003DD", + type: "item", + item: "industrialforegoing:enchantment_sorter" + }] + }, + { + x: 10.0d, + y: 0.5d, + dependencies: ["00000000000003DA"], + id: "00000000000003DE", + tasks: [ + { + id: "00000000000003DF", + type: "item", + item: "industrialforegoing:enchantment_factory" + }, + { + id: "00000000000003E0", + type: "item", + item: "industrialforegoing:enchantment_applicator" + }, + { + id: "00000000000003E1", + type: "item", + item: "industrialforegoing:enchantment_extractor" + } + ] + }, + { + x: 8.0d, + y: 3.5d, + shape: "gear", + dependencies: ["00000000000003DA"], + id: "00000000000003E2", + tasks: [{ + id: "00000000000003E3", + type: "item", + item: "industrialforegoing:ore_laser_base" + }] + }, + { + x: 8.5d, + y: 4.5d, + shape: "gear", + dependencies: ["00000000000003DA"], + id: "00000000000003E4", + tasks: [{ + id: "00000000000003E5", + type: "item", + item: "industrialforegoing:fluid_laser_base" + }] + }, + { + x: 9.5d, + y: 3.5d, + dependencies: ["00000000000003DA"], + id: "00000000000003E6", + tasks: [{ + id: "00000000000003E7", + type: "item", + item: "industrialforegoing:infinity_charger" + }] + }, + { + x: 11.0d, + y: 2.0d, + shape: "pentagon", + dependencies: ["00000000000003DA"], + id: "00000000000003E8", + tasks: [{ + id: "00000000000003E9", + type: "item", + item: "industrialforegoing:material_stonework_factory" + }] + }, + { + x: 11.0d, + y: 4.5d, + shape: "octagon", + dependencies: ["00000000000003DA"], + size: 1.3d, + id: "00000000000003EA", + tasks: [{ + id: "00000000000003EB", + type: "item", + item: "industrialforegoing:machine_frame_supreme" + }] + }, + { + x: 12.5d, + y: 5.0d, + dependencies: ["00000000000003EA"], + id: "00000000000003EC", + tasks: [{ + id: "00000000000003ED", + type: "item", + item: "industrialforegoing:mycelial_reactor" + }] + }, + { + x: 13.000000000000002d, + y: 3.2500000000000004d, + shape: "gear", + dependencies: ["00000000000003EA"], + size: 1.3d, + id: "00000000000003EE", + tasks: [{ + id: "00000000000003EF", + type: "item", + item: "thermal:machine_frame" + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/mekanism_deneme_2.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/mekanism_deneme_2.snbt" new file mode 100644 index 000000000..276af28d6 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/mekanism_deneme_2.snbt" @@ -0,0 +1,656 @@ +{ + id: "162D562BF001D328", + group: "", + order_index: 5, + filename: "mekanism_deneme_2", + title: "第16.5章", + icon: "mekanism:steel_casing", + default_quest_shape: "", + quests: [ + { + x: -1.0d, + y: -0.5d, + dependencies: ["00000000000003BB"], + id: "4B0352D68CA17876", + tasks: [{ + id: "71169817A0077433", + type: "item", + item: "mekanism:metallurgic_infuser" + }] + }, + { + x: 2.5d, + y: -0.5d, + dependencies: [ + "0000000000000127", + "4B0352D68CA17876" + ], + id: "2CC82657D87F240C", + tasks: [{ + id: "6E0CE794B71780CB", + type: "item", + item: "mekanism:steel_casing" + }] + }, + { + x: 2.0d, + y: 2.0d, + dependencies: ["2CC82657D87F240C"], + id: "39F12C9BFBA48DCA", + tasks: [{ + id: "0014ADDC0990963A", + type: "item", + item: "mekanism:enrichment_chamber" + }] + }, + { + x: 3.0d, + y: 2.0d, + dependencies: ["2CC82657D87F240C"], + id: "18AC38A68CF3870D", + tasks: [{ + id: "58A5E0BBBC36D1AB", + type: "item", + item: "mekanism:energized_smelter" + }] + }, + { + x: 1.5d, + y: 3.0d, + dependencies: ["2CC82657D87F240C"], + id: "7C40AC2B91AC8335", + tasks: [{ + id: "2D57973D159D6758", + type: "item", + item: "mekanism:crusher" + }] + }, + { + x: 2.5d, + y: 3.0d, + dependencies: ["2CC82657D87F240C"], + id: "727CEF9A5B12E1A2", + tasks: [{ + id: "3F184E4BD4CA2D0E", + type: "item", + item: "mekanism:osmium_compressor" + }] + }, + { + x: 3.5d, + y: 3.0d, + dependencies: ["2CC82657D87F240C"], + id: "28929E4055456505", + tasks: [{ + id: "592D0A263EAF0B2D", + type: "item", + item: "mekanism:precision_sawmill" + }] + }, + { + x: -4.5d, + y: -0.5d, + dependencies: [ + "0000000000000127", + "4B0352D68CA17876" + ], + id: "4B665E861FE3C8B0", + tasks: [{ + id: "00A2FBA452B322C3", + type: "item", + item: "mekanism:energy_tablet" + }] + }, + { + x: -5.5d, + y: -1.5d, + dependencies: ["4B665E861FE3C8B0"], + id: "46918D8296666E1A", + tasks: [{ + id: "5F7BEAB196E03C46", + type: "item", + item: "mekanismgenerators:solar_generator" + }] + }, + { + x: -5.5d, + y: -3.5d, + dependencies: ["46918D8296666E1A"], + id: "6FE9D934499D5DE3", + tasks: [{ + id: "0CC0B9692EBB46A3", + type: "item", + item: "mekanismgenerators:advanced_solar_generator" + }] + }, + { + x: -3.5d, + y: -1.5d, + dependencies: ["4B665E861FE3C8B0"], + id: "57D067A59E813641", + tasks: [{ + id: "2CC3AE20030A94C1", + type: "item", + item: "mekanismgenerators:gas_burning_generator" + }] + }, + { + x: -3.5d, + y: -2.5d, + dependencies: ["57D067A59E813641"], + id: "2D2D93A3D12B9295", + tasks: [{ + id: "27551D54A7DE1449", + type: "item", + item: "mekanismgenerators:bio_generator" + }] + }, + { + x: -3.5d, + y: -3.5d, + dependencies: ["2D2D93A3D12B9295"], + id: "2488206B87E86F3E", + tasks: [{ + id: "20313881AAD2F4CE", + type: "item", + item: "mekanismgenerators:wind_generator" + }] + }, + { + x: 4.0d, + y: -2.0d, + dependencies: ["2CC82657D87F240C"], + id: "6DC4596545B28BA4", + tasks: [{ + id: "7867B06830F95D82", + type: "item", + item: "mekanism:pressurized_reaction_chamber", + count: 2L + }] + }, + { + x: 5.0d, + y: -1.5d, + dependencies: ["2CC82657D87F240C"], + id: "00E84D9F6424947B", + tasks: [{ + id: "2BB6A5A97D042544", + type: "item", + item: "mekanism:rotary_condensentrator" + }] + }, + { + x: 4.0d, + y: -1.0d, + dependencies: ["2CC82657D87F240C"], + id: "721178E3C3688A8A", + tasks: [{ + id: "1A824A9FEF4D05FA", + type: "item", + item: "mekanism:electrolytic_separator" + }] + }, + { + x: 5.3999999999999995d, + y: -3.0d, + shape: "diamond", + dependencies: [ + "00E84D9F6424947B", + "6DC4596545B28BA4", + "721178E3C3688A8A" + ], + size: 1.2d, + id: "41DB77F8AAA1FA5E", + tasks: [{ + id: "200FBEFF05C2FB30", + type: "item", + item: "mekanism:hdpe_sheet", + count: 16L + }] + }, + { + x: 5.5d, + y: 0.5d, + shape: "gear", + dependencies: ["2CC82657D87F240C"], + size: 1.3d, + id: "7E680BD55A9B478A", + tasks: [ + { + id: "3B5FD58FD2AA3015", + type: "item", + item: "mekanismgenerators:fission_reactor_casing" + }, + { + id: "493914C386153410", + type: "item", + item: "mekanismgenerators:fission_reactor_port" + }, + { + id: "4BBC352BE529C9E6", + type: "item", + item: "mekanismgenerators:fission_reactor_logic_adapter" + }, + { + id: "373FA966FCD1639B", + type: "item", + item: "mekanismgenerators:fission_fuel_assembly" + } + ] + }, + { + x: 5.5d, + y: 2.5d, + dependencies: ["7E680BD55A9B478A"], + id: "05B191F1DEB215D5", + tasks: [{ + id: "5700E2E2B55561CC", + type: "item", + item: "mekanism:solar_neutron_activator" + }] + }, + { + x: 7.0d, + y: 0.0d, + dependencies: ["05B191F1DEB215D5"], + id: "2B283EADE6393439", + tasks: [{ + id: "559AD4B9516F4352", + type: "item", + item: "mekanism:pellet_polonium", + count: 8L + }] + }, + { + title: "&4 我。。是。。钢铁侠!", + x: 8.0d, + y: 2.0d, + shape: "gear", + subtitle: "不惜一切代价。", + dependencies: ["2B283EADE6393439"], + size: 2.0d, + id: "53BEF7490CD0C6F5", + tasks: [ + { + id: "4469C1CD849EB21E", + type: "item", + item: { + id: "mekanism:mekasuit_helmet", + Count: 1b, + tag: { + HideFlags: 2 + } + } + }, + { + id: "314BCB5E54313496", + type: "item", + item: { + id: "mekanism:mekasuit_bodyarmor", + Count: 1b, + tag: { + HideFlags: 2 + } + } + }, + { + id: "148935747F6C51EA", + type: "item", + item: { + id: "mekanism:mekasuit_pants", + Count: 1b, + tag: { + HideFlags: 2 + } + } + }, + { + id: "223ED9986BEC0D8D", + type: "item", + item: { + id: "mekanism:mekasuit_boots", + Count: 1b, + tag: { + HideFlags: 2 + } + } + }, + { + id: "4763E53DB0FF10D7", + type: "item", + item: { + id: "mekanism:meka_tool", + Count: 1b, + tag: { + HideFlags: 2 + } + } + } + ], + rewards: [{ + id: "0000000000000445", + type: "item", + item: "pamhc2foodcore:basiccheeseburgeritem", + count: 16 + }] + }, + { + x: -3.5d, + y: 0.5d, + dependencies: ["4B665E861FE3C8B0"], + id: "2C809533CACD0A05", + tasks: [{ + id: "12DC6E37FD962B5D", + type: "item", + item: "mekanism:electric_pump" + }] + }, + { + x: -3.5d, + y: 2.0d, + dependencies: ["4B665E861FE3C8B0"], + id: "48B298C630766799", + tasks: [{ + id: "27E548E68E0F75C1", + type: "fluid", + fluid: "mekanism:flowing_heavy_water", + amount: 10000L + }] + }, + { + x: -5.5d, + y: 0.5d, + dependencies: ["4B665E861FE3C8B0"], + id: "020F588659A0B756", + tasks: [{ + id: "7A5D9BF6BB45A788", + type: "item", + item: "mekanism:robit" + }] + }, + { + x: -5.5d, + y: 2.0d, + dependencies: ["4B665E861FE3C8B0"], + id: "001B56B6E885DFA5", + tasks: [{ + id: "4B7767B8724DF42E", + type: "item", + item: "mekanism:digital_miner" + }] + }, + { + x: -2.0d, + y: 1.0d, + dependencies: ["4B0352D68CA17876"], + id: "1402A807C4FF5C90", + tasks: [ + { + id: "18350A3ACA7B8257", + type: "item", + item: "mekanism:basic_universal_cable" + }, + { + id: "686160E6C3CBE234", + type: "item", + item: "mekanism:basic_mechanical_pipe" + }, + { + id: "1B0EFE55BFD96ED7", + type: "item", + item: "mekanism:basic_logistical_transporter" + } + ] + }, + { + x: -1.5d, + y: 2.0d, + dependencies: ["1402A807C4FF5C90"], + id: "68579A7101F07991", + tasks: [ + { + id: "3BBE07862F6C0ABD", + type: "item", + item: "mekanism:advanced_universal_cable" + }, + { + id: "2EB0B645074051D7", + type: "item", + item: "mekanism:advanced_logistical_transporter" + }, + { + id: "295A9D9A3C38CD9D", + type: "item", + item: "mekanism:advanced_mechanical_pipe" + } + ] + }, + { + x: -2.0d, + y: 3.0d, + dependencies: ["68579A7101F07991"], + id: "467F44235E699413", + tasks: [ + { + id: "74A01A507F7E5A30", + type: "item", + item: "mekanism:elite_universal_cable" + }, + { + id: "567B58831ED65692", + type: "item", + item: "mekanism:elite_mechanical_pipe" + }, + { + id: "5ACB762DA202EE9C", + type: "item", + item: "mekanism:elite_logistical_transporter" + } + ] + }, + { + x: -1.5d, + y: 4.0d, + dependencies: ["467F44235E699413"], + id: "0E973F4902411347", + tasks: [ + { + id: "67A4315B8F13DFC3", + type: "item", + item: "mekanism:ultimate_universal_cable" + }, + { + id: "5FBA9F675D33E7A3", + type: "item", + item: "mekanism:ultimate_mechanical_pipe" + }, + { + id: "1A2AE1B3F8A94145", + type: "item", + item: "mekanism:ultimate_logistical_transporter" + } + ] + }, + { + x: 2.0d, + y: -2.0d, + dependencies: ["2CC82657D87F240C"], + id: "683CAE9A6F658C4B", + tasks: [{ + id: "53A888C92BF069C7", + type: "item", + item: "mekanism:quantum_entangloporter" + }] + }, + { + x: -2.0d, + y: -1.5d, + dependencies: [ + "0000000000000127", + "4B0352D68CA17876" + ], + id: "012F2342004749A6", + tasks: [{ + id: "61FF95408592F073", + type: "item", + item: "mekanism:basic_bin" + }] + }, + { + x: 0.0d, + y: -1.5d, + dependencies: [ + "0000000000000127", + "4B0352D68CA17876" + ], + id: "20CF00C960145687", + tasks: [{ + id: "106187D8AF804BE6", + type: "item", + item: "mekanism:basic_energy_cube" + }] + }, + { + x: -0.5d, + y: -4.0d, + shape: "hexagon", + dependencies: ["0000000000000181"], + id: "000000000000017B", + tasks: [ + { + id: "000000000000017E", + type: "item", + item: "mekanism:advanced_induction_cell" + }, + { + id: "000000000000017F", + type: "item", + item: "mekanism:advanced_induction_provider" + }, + { + id: "0000000000000180", + type: "item", + item: "mekanism:induction_casing", + count: 32L + } + ] + }, + { + x: -1.0d, + y: -2.5d, + dependencies: [ + "012F2342004749A6", + "20CF00C960145687" + ], + id: "0000000000000181", + tasks: [{ + id: "0000000000000182", + type: "item", + item: "mekanism:teleportation_core" + }] + }, + { + x: -1.5d, + y: -4.0d, + shape: "hexagon", + dependencies: ["0000000000000181"], + id: "0000000000000183", + tasks: [ + { + id: "0000000000000184", + type: "item", + item: "mekanism:teleporter_frame", + count: 14L + }, + { + id: "0000000000000185", + type: "item", + item: "mekanism:teleporter" + }, + { + id: "0000000000000186", + type: "item", + item: "mekanism:portable_teleporter" + } + ] + }, + { + x: -0.5d, + y: 1.0d, + dependencies: [ + "0000000000000127", + "4B0352D68CA17876" + ], + id: "0000000000000187", + tasks: [{ + id: "0000000000000188", + type: "item", + item: "mekanism:basic_tier_installer" + }] + }, + { + x: 0.0d, + y: 2.0d, + dependencies: ["0000000000000187"], + id: "0000000000000189", + tasks: [{ + id: "000000000000018A", + type: "item", + item: "mekanism:advanced_tier_installer" + }] + }, + { + x: -0.5d, + y: 3.0d, + dependencies: ["0000000000000189"], + id: "000000000000018B", + tasks: [{ + id: "000000000000018C", + type: "item", + item: "mekanism:elite_tier_installer" + }] + }, + { + x: 0.0d, + y: 4.0d, + dependencies: ["000000000000018B"], + id: "000000000000018D", + tasks: [{ + id: "000000000000018E", + type: "item", + item: "mekanism:ultimate_tier_installer" + }] + }, + { + x: -4.5d, + y: 1.0d, + shape: "hexagon", + dependencies: ["4B665E861FE3C8B0"], + id: "0000000000000191", + tasks: [{ + id: "0000000000000192", + type: "item", + item: { + id: "mekanism:atomic_disassembler", + Count: 1b, + tag: { + HideFlags: 2 + } + } + }] + }, + { + x: 0.5d, + y: 0.5d, + shape: "gear", + dependencies: ["4B0352D68CA17876"], + size: 0.9d, + id: "00000000000004FD", + tasks: [{ + id: "00000000000004FE", + type: "item", + item: "angelring:itemring" + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/thermal.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/thermal.snbt" new file mode 100644 index 000000000..91221d745 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/thermal.snbt" @@ -0,0 +1,522 @@ +{ + id: "00000000000000B6", + group: "", + order_index: 7, + filename: "thermal", + title: "爱丽丝·滋贝鲁库", + icon: { + id: "patchouli:guide_book", + Count: 1b, + tag: { + "patchouli:book": "thermal:guidebook" + } + }, + default_quest_shape: "", + quests: [ + { + x: -3.85d, + y: -3.3000000000000003d, + description: ["To Unlock This, You Must Complete The Supreme Machine Frame Quest."], + dependencies: [ + "00000000000002F4", + "00000000000003EA" + ], + size: 1.1d, + id: "0000000000000193", + tasks: [{ + id: "0000000000000194", + type: "item", + item: { + id: "patchouli:guide_book", + Count: 1b, + tag: { + "patchouli:book": "thermal:guidebook" + } + } + }] + }, + { + x: 2.0d, + y: -1.0d, + dependencies: ["00000000000002F4"], + size: 1.4d, + id: "0000000000000195", + tasks: [{ + id: "0000000000000196", + type: "item", + item: "thermal:machine_frame" + }] + }, + { + x: -1.4d, + y: -2.1d, + shape: "hexagon", + size: 1.4d, + id: "00000000000002F4", + tasks: [{ + id: "00000000000002F5", + type: "item", + item: "thermal:wrench" + }] + }, + { + x: 6.0d, + y: 0.5d, + shape: "hexagon", + id: "00000000000002F6", + tasks: [{ + id: "00000000000002F7", + type: "item", + item: "thermal:upgrade_augment_1" + }] + }, + { + x: 7.0d, + y: 0.5d, + shape: "hexagon", + id: "00000000000002F8", + tasks: [{ + id: "00000000000002F9", + type: "item", + item: "thermal:upgrade_augment_2" + }] + }, + { + x: 8.0d, + y: 0.5d, + shape: "hexagon", + id: "00000000000002FA", + tasks: [{ + id: "00000000000002FB", + type: "item", + item: "thermal:upgrade_augment_3" + }] + }, + { + x: -2.0d, + y: 0.5d, + dependencies: ["0000000000000127"], + id: "00000000000002FC", + tasks: [{ + id: "00000000000002FD", + type: "item", + item: "thermal:device_tree_extractor" + }] + }, + { + x: -2.0d, + y: 1.5d, + hide_dependency_lines: true, + dependencies: ["0000000000000195"], + id: "0000000000000300", + tasks: [{ + id: "0000000000000301", + type: "item", + item: "thermal:machine_refinery" + }] + }, + { + x: 0.5d, + y: 0.5d, + dependencies: ["0000000000000306"], + id: "0000000000000302", + tasks: [{ + id: "0000000000000303", + type: "item", + item: "thermal:dynamo_stirling" + }] + }, + { + x: 0.5d, + y: 1.5d, + dependencies: [ + "0000000000000306", + "0000000000000302" + ], + id: "0000000000000304", + tasks: [{ + id: "0000000000000305", + type: "item", + item: "thermal:dynamo_compression" + }] + }, + { + x: -0.5d, + y: 1.0d, + shape: "diamond", + dependencies: [ + "0000000000000300", + "00000000000002FC" + ], + size: 0.8d, + id: "0000000000000306", + tasks: [{ + id: "0000000000000307", + type: "item", + item: "thermal:rosin" + }] + }, + { + x: 0.5d, + y: 2.5d, + dependencies: [ + "0000000000000127", + "0000000000000304" + ], + id: "0000000000000308", + tasks: [{ + id: "0000000000000309", + type: "item", + item: "thermal:dynamo_magmatic" + }] + }, + { + x: 0.5d, + y: 3.5d, + dependencies: ["0000000000000308"], + id: "000000000000030A", + tasks: [{ + id: "000000000000030B", + type: "item", + item: "thermal:dynamo_numismatic" + }] + }, + { + x: 0.5d, + y: 4.5d, + dependencies: ["000000000000030A"], + id: "000000000000030C", + tasks: [{ + id: "000000000000030D", + type: "item", + item: "thermal:dynamo_lapidary" + }] + }, + { + x: 4.5d, + y: 2.5d, + dependencies: ["0000000000000127"], + id: "000000000000030E", + tasks: [{ + id: "000000000000030F", + type: "item", + item: { + id: "thermal:flux_capacitor", + Count: 1b, + tag: {} + } + }] + }, + { + x: 5.5d, + y: 2.5d, + dependencies: ["0000000000000127"], + id: "0000000000000310", + tasks: [{ + id: "0000000000000311", + type: "item", + item: "thermal:flux_drill" + }] + }, + { + x: 6.5d, + y: 2.5d, + dependencies: ["0000000000000127"], + id: "0000000000000312", + tasks: [{ + id: "0000000000000313", + type: "item", + item: "thermal:flux_saw" + }] + }, + { + x: 7.5d, + y: 2.5d, + dependencies: ["0000000000000127"], + id: "0000000000000314", + tasks: [{ + id: "0000000000000315", + type: "item", + item: "thermal:flux_magnet" + }] + }, + { + x: 8.5d, + y: 2.5d, + dependencies: ["0000000000000127"], + id: "0000000000000316", + tasks: [{ + id: "0000000000000317", + type: "item", + item: { + id: "thermal:potion_infuser", + Count: 1b, + tag: {} + } + }] + }, + { + x: 9.5d, + y: 2.5d, + dependencies: ["0000000000000127"], + id: "0000000000000318", + tasks: [{ + id: "0000000000000319", + type: "item", + item: { + id: "thermal:potion_quiver", + Count: 1b, + tag: {} + } + }] + }, + { + x: 7.0d, + y: 1.5d, + shape: "gear", + dependencies: [ + "00000000000002F6", + "00000000000002F8", + "00000000000002FA", + "0000000000000310", + "0000000000000312", + "0000000000000314", + "0000000000000316", + "0000000000000318", + "000000000000030E" + ], + dependency_requirement: "one_completed", + id: "000000000000031A", + tasks: [{ + id: "000000000000031B", + type: "item", + item: "thermal:tinker_bench" + }] + }, + { + x: 2.0d, + y: 2.0d, + shape: "diamond", + hide_dependency_lines: true, + dependencies: [ + "0000000000000304", + "000000000000030C", + "0000000000000308", + "000000000000030A", + "0000000000000302" + ], + dependency_requirement: "one_completed", + size: 0.9d, + id: "000000000000031C", + tasks: [{ + id: "000000000000031D", + type: "item", + item: "thermal:dynamo_output_augment" + }] + }, + { + x: 2.0d, + y: 3.0d, + shape: "diamond", + hide_dependency_lines: true, + dependencies: [ + "0000000000000304", + "000000000000030C", + "0000000000000308", + "000000000000030A", + "0000000000000302" + ], + dependency_requirement: "one_completed", + size: 0.9d, + id: "000000000000031E", + tasks: [{ + id: "000000000000031F", + type: "item", + item: "thermal:dynamo_fuel_augment" + }] + }, + { + x: 5.0d, + y: -2.0d, + subtitle: "Once upon a time there was a Turkish joke. But I won't say it because if I write in English it doesn't mean anything.", + dependencies: ["0000000000000195"], + id: "0000000000000320", + tasks: [{ + id: "0000000000000321", + type: "item", + item: "thermal:machine_pulverizer" + }] + }, + { + x: 6.0d, + y: -2.0d, + dependencies: ["0000000000000195"], + id: "0000000000000322", + tasks: [{ + id: "0000000000000323", + type: "item", + item: "thermal:machine_furnace" + }] + }, + { + x: 7.0d, + y: -2.0d, + dependencies: ["0000000000000195"], + id: "0000000000000324", + tasks: [{ + id: "0000000000000325", + type: "item", + item: "thermal:machine_smelter" + }] + }, + { + x: 8.0d, + y: -2.0d, + dependencies: ["0000000000000195"], + id: "0000000000000326", + tasks: [{ + id: "0000000000000327", + type: "item", + item: "thermal:machine_bottler" + }] + }, + { + x: 9.0d, + y: -2.0d, + dependencies: ["0000000000000195"], + id: "0000000000000328", + tasks: [{ + id: "0000000000000329", + type: "item", + item: "thermal:machine_crucible" + }] + }, + { + x: 6.5d, + y: -3.0d, + shape: "diamond", + hide_dependency_lines: true, + dependencies: ["0000000000000195"], + size: 0.8d, + id: "000000000000032A", + tasks: [{ + id: "000000000000032B", + type: "item", + item: "thermal:machine_sawmill" + }] + }, + { + x: 7.5d, + y: -3.0d, + shape: "diamond", + hide_dependency_lines: true, + dependencies: ["0000000000000195"], + size: 0.8d, + id: "000000000000032C", + tasks: [{ + id: "000000000000032D", + type: "item", + item: "thermal:machine_press" + }] + }, + { + x: 6.0d, + y: -1.0d, + shape: "diamond", + dependencies: ["0000000000000127"], + size: 0.9d, + id: "000000000000032E", + tasks: [{ + id: "000000000000032F", + type: "item", + item: "thermal:machine_speed_augment" + }] + }, + { + x: 7.0d, + y: -1.0d, + shape: "diamond", + dependencies: ["0000000000000127"], + size: 0.9d, + id: "0000000000000330", + tasks: [{ + id: "0000000000000331", + type: "item", + item: "thermal:machine_output_augment" + }] + }, + { + icon: "thermal:machine_catalyst_augment", + x: 8.0d, + y: -1.0d, + shape: "diamond", + dependencies: ["0000000000000127"], + size: 0.9d, + id: "0000000000000332", + tasks: [ + { + id: "0000000000000333", + type: "item", + item: "thermal:machine_catalyst_augment" + }, + { + id: "0000000000000334", + type: "item", + item: "thermal:machine_cycle_augment" + } + ] + }, + { + x: 0.5d, + y: -2.5d, + dependencies: ["0000000000000127"], + id: "0000000000000335", + tasks: [ + { + id: "0000000000000336", + type: "item", + item: { + id: "thermal:diving_helmet", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "0000000000000337", + type: "item", + item: { + id: "thermal:diving_chestplate", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "0000000000000338", + type: "item", + item: { + id: "thermal:diving_leggings", + Count: 1b, + tag: { + Damage: 0 + } + } + }, + { + id: "0000000000000339", + type: "item", + item: { + id: "thermal:diving_boots", + Count: 1b, + tag: { + Damage: 0 + } + } + } + ] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/welcome_to_beginning.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/welcome_to_beginning.snbt" new file mode 100644 index 000000000..ff811f0f2 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/chapters/welcome_to_beginning.snbt" @@ -0,0 +1,700 @@ +{ + id: "0000000000000394", + group: "", + order_index: 0, + filename: "welcome_to_beginning", + title: "全新的世界!!!", + icon: { + id: "minecraft:fire_coral", + Count: 3b + }, + default_quest_shape: "circle", + quests: [ + { + title: "欢迎游玩", + icon: "minecraft:oak_log", + x: 0.0d, + y: 0.0d, + shape: "hexagon", + description: [ + "&a这是这个包的第一个任务!", + "", + "我&a非常激动&f。你应该知道,第一个任务通常都很重要。", + "", + "", + "这是你迈向&d新世界&f的第一步!", + "", + "到这,我会骄傲地说:", + "欢迎来到&aStacia Expert!" + ], + hide_dependency_lines: false, + size: 1.1d, + id: "0000000000000395", + tasks: [{ + id: "0000000000000396", + type: "item", + title: "Any minecraft:logs", + item: { + id: "itemfilters:tag", + Count: 1b, + tag: { + value: "minecraft:logs" + } + }, + count: 32L + }], + rewards: [{ + id: "0000000000000397", + type: "item", + item: "minecraft:oak_planks", + count: 48 + }] + }, + { + tags: ["aaaa"], + x: 2.2d, + y: 0.55d, + subtitle: "这玩意对我们有着特殊的意义。", + description: ["这个东西是专门用来纪念SwapSkipS的。"], + hide_dependency_lines: false, + dependencies: ["0000000000000395"], + size: 1.1d, + id: "0000000000000398", + tasks: [{ + id: "0000000000000399", + type: "item", + item: "minecraft:crafting_table" + }], + rewards: [{ + id: "000000000000039A", + type: "item", + item: "extendedcrafting:handheld_table" + }] + }, + { + title: "收下吧!", + x: 4.0d, + y: -1.0d, + subtitle: "让我稍微帮你一下", + description: [ + "&a你可以借助Ore Excavation来同时破坏&a多个相同相邻的方块。", + "", + "&a按下“C”键使用OreExcavation。(能够在设置中修改。)", + "", + "&a按下“V”键来改变连锁的形状。", + "", + "&6你也可以设置快捷键打开任务书。" + ], + dependencies: ["0000000000000398"], + id: "000000000000039B", + tasks: [{ + id: "000000000000039C", + type: "checkmark", + title: "Ore Excavation" + }], + rewards: [{ + id: "000000000000039D", + type: "item", + item: "pamhc2foodcore:hotdogitem", + count: 4 + }] + }, + { + title: "板条箱!", + icon: "quantumstorage:chestdiamond", + x: 3.5d, + y: -3.0d, + shape: "diamond", + subtitle: "早期物品存储方式!", + description: ["&a提示:&f当你破坏QuantumStorage模组的板条箱时,其中的物品会保留在板条箱内。"], + dependencies: ["000000000000039B"], + dependency_requirement: "one_completed", + id: "000000000000039E", + tasks: [ + { + id: "000000000000039F", + type: "item", + item: "cyclic:crate" + }, + { + id: "00000000000003A0", + type: "item", + item: "quantumstorage:chestdiamond" + }, + { + id: "00000000000003A1", + type: "item", + item: "ironchest:diamond_chest" + } + ], + rewards: [{ + id: "00000000000003A2", + type: "item", + item: "minecraft:item_frame", + count: 8 + }] + }, + { + x: 3.0d, + y: -2.5d, + shape: "diamond", + subtitle: "更先进的/Dank/Null", + description: [ + "你可以扔掉不需要的物品。跟Dank Null一样。", + "", + "&a你可以按“左ALT”键切换背包和建造模式。(能在设置中更改。)" + ], + dependencies: ["000000000000039B"], + id: "00000000000003A3", + tasks: [{ + id: "00000000000003A4", + type: "item", + item: "dankstorage:dank_2" + }], + rewards: [{ + id: "00000000000003A5", + type: "item", + item: { + id: "usefulbackpacks:backpack_small", + Count: 1b, + tag: { + display: { + color: 3949738 + } + } + } + }] + }, + { + x: 5.0d, + y: 0.5d, + shape: "hexagon", + subtitle: "&a第一个机器框架!", + description: ["这位仁兄可以帮你制作第一台机器。"], + dependencies: ["000000000000039B"], + id: "00000000000003A6", + tasks: [{ + id: "00000000000003A7", + type: "item", + item: "silents_mechanisms:stone_machine_frame" + }], + rewards: [{ + id: "00000000000003A8", + type: "item", + item: "silents_mechanisms:stone_machine_frame" + }] + }, + { + icon: "silents_mechanisms:basic_alloy_smelter", + x: 6.5d, + y: 0.5d, + shape: "hexagon", + description: ["&6基础合金炉:&f你可以将两种金属混合起来得到新的金属。"], + dependencies: ["00000000000003A6"], + id: "00000000000003A9", + tasks: [{ + id: "00000000000003AA", + type: "item", + item: "silents_mechanisms:basic_alloy_smelter" + }], + rewards: [{ + id: "743FB4F2039AF24E", + type: "item", + item: "thermal:bronze_ingot", + count: 8 + }] + }, + { + title: "早期存储系统", + x: 7.5d, + y: -2.5d, + shape: "pentagon", + subtitle: "就像Refined Storage... 但用的是镭射!", + dependencies: ["1B1F2DD775FF6432"], + id: "5CDEB4D2CF3C4E30", + tasks: [{ + id: "5DEB2A2A8EF7C80C", + type: "item", + item: "logisticslasers:controller" + }] + }, + { + x: 7.8d, + y: -0.6d, + shape: "octagon", + subtitle: "&a机器框架 Lv2!", + description: [ + "这位仁兄可以帮你制作更多高级机器。", + "", + "&6提示:&f如果任务还不能完成,请先完成钢锭任务。" + ], + dependencies: [ + "3601DF8059A8F3F0", + "00000000000003A9" + ], + size: 1.3d, + id: "1B1F2DD775FF6432", + tasks: [{ + id: "70D49D79697EF5AC", + type: "item", + item: "silents_mechanisms:alloy_machine_frame" + }], + rewards: [{ + id: "1BF0ECFEF2032BD8", + type: "item", + item: "silents_mechanisms:redstone_alloy_ingot", + count: 4 + }] + }, + { + icon: "silents_mechanisms:basic_crusher", + x: 6.0d, + y: -0.5d, + shape: "hexagon", + description: [ + "&a基础粉碎机:&f你现在可以双倍矿物了。你可以用速度升级给你的机器加加速。", + "", + "&6燃煤发电机:&f产能效率:40 FE/t." + ], + dependencies: ["00000000000003A6"], + id: "3601DF8059A8F3F0", + tasks: [ + { + id: "3EEDB1966653B720", + type: "item", + item: "silents_mechanisms:basic_crusher" + }, + { + id: "0EA853AC6A5C10CE", + type: "item", + item: "silents_mechanisms:coal_generator" + } + ], + rewards: [{ + id: "3D9ACF4495D42297", + type: "item", + item: "pamhc2foodextended:tacoitem", + count: 2 + }] + }, + { + x: 9.5d, + y: -1.0d, + shape: "diamond", + description: ["&6电炉:&f你可以用RF烧制所有能烧的东西。"], + dependencies: ["1B1F2DD775FF6432"], + id: "228C4B343C41E169", + tasks: [{ + id: "01FDB1DE7783BCD1", + type: "item", + item: "silents_mechanisms:electric_furnace" + }] + }, + { + x: 10.0d, + y: -0.5d, + shape: "diamond", + description: [ + "&6压缩机:&f你可以用它制作板材。", + "", + "&a提示:&f它也可以被加加速。" + ], + dependencies: ["1B1F2DD775FF6432"], + id: "4B6D4495605DDF95", + tasks: [{ + id: "0A082EBF99EE2552", + type: "item", + item: "silents_mechanisms:compressor" + }] + }, + { + x: 9.5d, + y: 0.0d, + shape: "diamond", + description: ["&6粉碎机:&f你可以给它安装加速升级来让它更快!"], + dependencies: ["1B1F2DD775FF6432"], + id: "7773DEEE5ED3937F", + tasks: [{ + id: "00000000000003BA", + type: "item", + item: "silents_mechanisms:crusher" + }] + }, + { + x: 6.5d, + y: -2.0d, + shape: "hexagon", + dependencies: ["5CDEB4D2CF3C4E30"], + id: "2EE7ED0EDE71FD2A", + tasks: [{ + id: "7820626EB518FBE9", + type: "item", + item: "logisticslasers:wrench" + }] + }, + { + icon: "logisticslasers:card_stocker", + x: 7.0d, + y: -3.5d, + shape: "hexagon", + dependencies: ["5CDEB4D2CF3C4E30"], + id: "19A48EF1C6371033", + tasks: [{ + id: "6E017DA5295487EF", + type: "item", + item: "logisticslasers:card_stocker" + }] + }, + { + icon: "logisticslasers:routing_logic_module", + x: 8.0d, + y: -3.5d, + shape: "hexagon", + dependencies: ["5CDEB4D2CF3C4E30"], + id: "347830458C6B1B8F", + tasks: [ + { + id: "5A735FCD676C9ED8", + type: "item", + item: "logisticslasers:card_extractor" + }, + { + id: "2CF54A5E3DBE0ED4", + type: "item", + item: "logisticslasers:card_inserter" + }, + { + id: "56353A5701836B7B", + type: "item", + item: "logisticslasers:card_polymorph" + }, + { + id: "4F1E7E607D396052", + type: "item", + item: "logisticslasers:card_provider" + }, + { + id: "00000000000003C4", + type: "item", + item: "logisticslasers:routing_logic_module" + } + ], + rewards: [{ + id: "00000000000003C5", + type: "item", + item: "pamhc2foodcore:pumpkinbreaditem", + count: 5 + }] + }, + { + x: 7.5d, + y: -4.5d, + shape: "hexagon", + dependencies: [ + "19A48EF1C6371033", + "347830458C6B1B8F" + ], + size: 1.1d, + id: "666F5C881E7AFD8D", + tasks: [{ + id: "7490685BC72CE817", + type: "item", + item: "logisticslasers:crafting_station" + }] + }, + { + x: 8.5d, + y: -2.0d, + shape: "hexagon", + dependencies: ["5CDEB4D2CF3C4E30"], + id: "011625F933D3A283", + tasks: [{ + id: "706DCBFAF6CD9D18", + type: "item", + item: "logisticslasers:inventorynode" + }] + }, + { + title: "眼里闪着泪光", + icon: "mekanism:steel_casing", + x: 12.0d, + y: -0.75d, + shape: "octagon", + subtitle: "&6第一季第8集", + description: [ + "&6“那”是唯一的选择吗?", + "", + "&6但。。。", + "", + "你完成了第一章节。现在,你可以前往Mekanism章节了。恭喜!", + "", + "这儿什么都没有。。。" + ], + dependencies: [ + "7773DEEE5ED3937F", + "228C4B343C41E169", + "4B6D4495605DDF95" + ], + size: 1.2d, + id: "2D37B5BE446FA725", + tasks: [{ + id: "069FB46F34C63665", + type: "checkmark", + icon: "mekanism:steel_casing" + }], + rewards: [{ + id: "592B32C12AD79586", + type: "item", + item: "pamhc2foodcore:chocolatedonutitem", + count: 4 + }] + }, + { + icon: "refinedpipes:basic_energy_pipe", + x: 4.05d, + y: 1.3499999999999999d, + shape: "diamond", + subtitle: "早期运输!", + dependencies: ["00000000000003A6"], + size: 0.9d, + id: "0C2527C7A6218A43", + tasks: [ + { + id: "0C22E6C79860CE00", + type: "item", + item: "refinedpipes:basic_item_pipe" + }, + { + id: "7187EA13180FA106", + type: "item", + item: "refinedpipes:basic_fluid_pipe" + }, + { + id: "1D002CBDD23D9E9D", + type: "item", + item: "refinedpipes:basic_energy_pipe" + }, + { + id: "58D1793B05B4F2CE", + type: "item", + item: "refinedpipes:basic_extractor_attachment" + } + ], + rewards: [{ + id: "544DEE1C70126245", + type: "item", + item: "pamhc2foodcore:basiccheeseburgeritem", + count: 4 + }] + }, + { + icon: "xnet:controller", + x: 4.5d, + y: 1.7999999999999998d, + shape: "diamond", + subtitle: "&aXnet电缆: &f可以在一个方块里做很多事情,就像Ender IO的导管。", + dependencies: ["00000000000003A6"], + size: 0.9d, + id: "0903F3D20C6A9F51", + tasks: [ + { + id: "175D2603FAB47BA6", + type: "item", + item: "xnet:controller" + }, + { + id: "0876F8AF7108E40F", + type: "item", + item: "xnet:netcable_blue", + count: 16L + }, + { + id: "195F05E2D5796D1F", + type: "item", + item: "xnet:connector_blue" + } + ], + rewards: [{ + id: "471341B282293F2F", + type: "item", + item: "xnet:connector_blue", + count: 3 + }] + }, + { + icon: { + id: "tconstruct:earth_slime_sling", + Count: 1b, + tag: { + Damage: 0 + } + }, + x: 4.0d, + y: -2.5d, + shape: "diamond", + subtitle: "&a你可以用它快速跑图。", + description: [ + "&a史莱姆球有替代的合成表。请看&aJEI。", + "", + "你可以使用指路石在各地传送。" + ], + dependencies: ["000000000000039B"], + id: "78D60530D40B81F5", + tasks: [ + { + id: "69AB803EFC1712F7", + type: "item", + item: "tconstruct:earth_slime_boots" + }, + { + id: "741E2F86F9F41BEC", + type: "item", + item: { + id: "tconstruct:earth_slime_sling", + Count: 1b, + tag: { + Damage: 0 + } + } + } + ] + }, + { + x: 1.3499999999999999d, + y: -0.44999999999999996d, + shape: "hexagon", + description: [ + "&d阿迪特,我们会想你的。", + "", + "“为了这一刻,我等了一辈子。”", + "", + "&a-Maria" + ], + dependencies: ["0000000000000398"], + size: 0.9d, + id: "23BA5056E1BB9A61", + tasks: [ + { + id: "01F43100CC82BAC7", + type: "item", + item: "tconstruct:crafting_station" + }, + { + id: "79E369E264A4BAD1", + type: "item", + item: { + id: "tconstruct:tinker_station", + Count: 1b, + tag: { + texture: "minecraft:oak_planks" + } + } + }, + { + id: "606F98F5A962402A", + type: "item", + item: { + id: "tconstruct:part_builder", + Count: 1b, + tag: { + texture: "minecraft:oak_planks" + } + } + } + ], + rewards: [{ + id: "4F557B99D6DBBF31", + type: "item", + item: "tconstruct:pattern", + count: 8 + }] + }, + { + x: 7.6499999999999995d, + y: 0.8999999999999999d, + shape: "diamond", + description: ["&6Solar Panel I: &f产能效率:1 FE/t"], + dependencies: ["00000000000003A9"], + size: 0.9d, + id: "6483F7CCF3BCF4C7", + tasks: [{ + id: "4B7AA9803D980F17", + type: "item", + item: "solarflux:sp_1" + }] + }, + { + x: 7.199999999999999d, + y: 1.3499999999999999d, + shape: "diamond", + description: ["&6Solar Panel II: &f产能效率:8 FE/t"], + dependencies: ["6483F7CCF3BCF4C7"], + size: 0.9d, + id: "3B73865D853A728C", + tasks: [{ + id: "58E72A15F4EB35F7", + type: "item", + item: "solarflux:sp_2" + }] + }, + { + x: 8.1d, + y: 1.3499999999999999d, + shape: "diamond", + description: ["&6Solar Panel III: &f产能效率:32 FE/t"], + dependencies: ["3B73865D853A728C"], + size: 0.9d, + id: "575767081C52858C", + tasks: [{ + id: "0423AF1EBB167641", + type: "item", + item: "solarflux:sp_3" + }] + }, + { + x: 7.6499999999999995d, + y: 1.7999999999999998d, + shape: "diamond", + description: ["&6Solar Panel IV: &f产能效率:32 FE/t"], + dependencies: ["575767081C52858C"], + size: 0.9d, + id: "16DAA36E322A5052", + tasks: [{ + id: "0B5017603794496A", + type: "item", + item: "solarflux:sp_4" + }] + }, + { + x: 2.0d, + y: -1.0d, + shape: "hexagon", + description: ["&a箱子三兄弟: &f你知道匠魂现在有多少箱子吗?"], + dependencies: ["0000000000000398"], + size: 0.9d, + id: "34436D3E329544E9", + tasks: [ + { + id: "052B3248D0B89C0C", + type: "item", + item: "tconstruct:cast_chest" + }, + { + id: "22FF2B414A3478A8", + type: "item", + item: "tconstruct:part_chest" + }, + { + id: "085E75C7CBC90DFD", + type: "item", + item: "tconstruct:modifier_chest" + } + ], + rewards: [{ + id: "5D351A88D930E7AA", + type: "item", + item: "tconstruct:ingot_cast" + }] + } + ] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/data.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/data.snbt" new file mode 100644 index 000000000..53c815c8b --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/data.snbt" @@ -0,0 +1,19 @@ +{ + version: 10, + default_reward_team: false, + default_consume_items: false, + default_autoclaim_rewards: "disabled", + default_quest_shape: "circle", + 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, + chapter_groups: [] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/reward_tables/1007.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/reward_tables/1007.snbt" new file mode 100644 index 000000000..05a07e637 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/reward_tables/1007.snbt" @@ -0,0 +1,9 @@ +{ + id: "0C51E13E066AD48E", + order_index: 0, + title: "test", + loot_size: 1, + rewards: [{ + item: "minecraft:polished_granite" + }] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/reward_tables/test.snbt" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/reward_tables/test.snbt" new file mode 100644 index 000000000..cc2d4042e --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/config/ftbquests/quests/reward_tables/test.snbt" @@ -0,0 +1,9 @@ +{ + id: "6F7BB3E32D32E927", + order_index: 1, + title: "test", + loot_size: 1, + rewards: [{ + item: "minecraft:polished_granite" + }] +} diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/kubejs/client_scripts/jeipageandtooltips.js" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/kubejs/client_scripts/jeipageandtooltips.js" new file mode 100644 index 000000000..feb637e3f --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/kubejs/client_scripts/jeipageandtooltips.js" @@ -0,0 +1,38 @@ + + +onEvent('jei.information', event => { + event.add('envirocore:nanorite_crystal', ['纳诺莱水晶只能在末地使用虚空采掘机采掘获得。']) +}) + +onEvent('jei.information', event => { + event.add('envirocore:mica', ['云母只能在末地或地狱使用虚空采掘机采掘获得。']) +}) + +onEvent('jei.information', event => { + event.add('astralsorcery:stardust', ['把星辉锭丢在地上,然后用星辉锭切割工具左键以获得星尘。']) +}) + +onEvent('jei.information', event => { + event.add('astralsorcery:infused_wood', ['注星木是装饰和合成用材料。将橡木丢进星能液中获得。(这不会消耗星能液)']) +}) + +onEvent('jei.information', event => { + event.add('botania:life_essence', ['除了合成获得,你也可以击杀盖亚获得。']) +}) + + + + + + + + + + + + + + + + + diff --git "a/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/kubejs/startup_scripts/customitems.js" "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/kubejs/startup_scripts/customitems.js" new file mode 100644 index 000000000..4ca0bcbd5 --- /dev/null +++ "b/project/Stacia Expert/1.10.6/Stacia Expert1.10.6\346\261\211\345\214\226/kubejs/startup_scripts/customitems.js" @@ -0,0 +1,155 @@ +// priority: 0 + +console.info('Hello, World! (You will only see this line once in console, during startup)') + + +//Empowered Blocks + +events.listen('item.registry', function (event) { + // The texture for this item has to be placed in kubejs/assets/kubejs/textures/item/test_item.png + // If you want a custom item model, you can create one in Blockbench and put it in kubejs/assets/kubejs/models/item/test_item.json + event.create('charged_nightsky_diamond_block').displayName('充能夜空钻石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_lapis_block').displayName('充能夜空青金石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_emerald_block').displayName('充能夜空绿宝石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_iron_block').displayName('充能夜空铁块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_redstone_block').displayName('充能夜空红石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_coal_block').displayName('充能夜空煤炭块').glow(true) +}) + +//Non Empowered Blocks + +events.listen('item.registry', function (event) { + event.create('nightsky_diamond_block').displayName('夜空钻石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_lapis_block').displayName('夜空青金石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_emerald_block').displayName('夜空绿宝石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_iron_block').displayName('夜空铁块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_redstone_block').displayName('夜空红石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_coal_block').displayName('夜空煤炭块') +}) + +//Empowered Crystals + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_diamond').displayName('充能夜空钻石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_lapis').displayName('充能夜空青金石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_emerald').displayName('充能夜空绿宝石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_iron').displayName('充能夜空铁').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_redstone').displayName('充能夜空红石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_coal').displayName('充能夜空煤炭').glow(true) +}) + +//Non Empowered Crystals + +events.listen('item.registry', function (event) { + event.create('nightsky_diamond').displayName('夜空钻石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_lapis').displayName('夜空青金石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_emerald').displayName('夜空绿宝石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_iron').displayName('夜空铁') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_redstone').displayName('夜空红石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_coal').displayName('夜空煤炭') +}) + +//Others + +events.listen('item.registry', function (event) { + event.create('upgrade_base').displayName('升级底板') +}) + +events.listen('item.registry', function (event) { + event.create('cosmic_anime_food').displayName('寰宇二次元大餐') +}) + +events.listen('item.registry', function (event) { + event.create('supreme_endestest_pearl').displayName('至尊终末珍珠').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('endestest_pearl').displayName('终末珍珠') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_pearl').displayName('终焉末狱珍珠') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_ingot').displayName('终焉末狱锭') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_nugget').displayName('终焉末狱粒') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_pile').displayName('终焉末狱尘') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_block').displayName('终焉末狱块') +}) + +events.listen('item.registry', function (event) { + event.create('enderpearl_block').displayName('末影珍珠块') +}) + + + diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapter_groups.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapter_groups.snbt new file mode 100644 index 000000000..7087b9beb --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapter_groups.snbt @@ -0,0 +1,3 @@ +{ + chapter_groups: [ ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/00000651.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/00000651.snbt new file mode 100644 index 000000000..84d4d719a --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/00000651.snbt @@ -0,0 +1,993 @@ +{ + id: "0000000000000446" + group: "" + order_index: 6 + filename: "00000651" + title: "&700:00:06:51(AE)" + icon: "appliedenergistics2:crafting_terminal" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: 0.5d + y: 0.0d + shape: "hexagon" + dependencies: ["0000000000000513"] + id: "0000000000000449" + tasks: [{ + id: "000000000000044A" + type: "item" + item: "appliedenergistics2:energy_acceptor" + }] + } + { + x: 1.0d + y: 1.0d + dependencies: ["0000000000000449"] + id: "000000000000044B" + tasks: [{ + id: "000000000000044C" + type: "item" + item: "appliedenergistics2:inscriber" + }] + } + { + x: 2.0d + y: 0.0d + shape: "hexagon" + dependencies: ["000000000000044B"] + id: "000000000000044D" + tasks: [{ + id: "000000000000044E" + type: "item" + item: "appliedenergistics2:logic_processor" + count: 32L + }] + } + { + x: 2.5d + y: 1.5d + shape: "hexagon" + dependencies: ["000000000000044D"] + size: 1.2d + id: "000000000000044F" + tasks: [{ + id: "0000000000000450" + type: "item" + item: "appliedenergistics2:drive" + }] + } + { + x: 0.0d + y: -1.0d + dependencies: ["0000000000000449"] + id: "0000000000000451" + tasks: [{ + id: "0000000000000452" + type: "item" + item: "appliedenergistics2:sky_compass" + }] + } + { + x: 2.5d + y: -1.5d + shape: "hexagon" + dependencies: ["000000000000044D"] + size: 1.2d + id: "0000000000000453" + tasks: [{ + id: "0000000000000454" + type: "item" + item: "appliedenergistics2:semi_dark_monitor" + }] + } + { + x: 1.5d + y: -2.0d + dependencies: ["0000000000000457"] + id: "0000000000000455" + tasks: [{ + id: "0000000000000456" + type: "item" + item: "appliedenergistics2:interface_terminal" + }] + } + { + x: 2.5d + y: -2.5d + shape: "hexagon" + dependencies: ["0000000000000453"] + id: "0000000000000457" + tasks: [{ + id: "0000000000000458" + type: "item" + item: "appliedenergistics2:terminal" + }] + } + { + x: 3.0d + y: -3.5d + dependencies: ["0000000000000457"] + id: "0000000000000459" + tasks: [ + { + id: "000000000000045A" + type: "item" + item: "appliedenergistics2:crafting_terminal" + } + { + id: "000000000000045F" + type: "item" + item: "appliedenergistics2:pattern_terminal" + } + ] + } + { + x: 2.0d + y: -3.5d + dependencies: ["0000000000000457"] + id: "000000000000045D" + tasks: [{ + id: "000000000000045E" + type: "item" + item: "appliedenergistics2:fluid_terminal" + }] + } + { + x: 3.5d + y: -1.5d + dependencies: ["0000000000000457"] + id: "0000000000000460" + tasks: [{ + id: "0000000000000461" + type: "item" + item: "appliedenergistics2:chest" + }] + } + { + x: 3.5d + y: -2.5d + dependencies: ["0000000000000460"] + id: "0000000000000462" + tasks: [{ + id: "0000000000000463" + type: "item" + item: "appliedenergistics2:security_station" + }] + } + { + x: 4.5d + y: -2.0d + dependencies: ["0000000000000462"] + id: "0000000000000464" + tasks: [{ + id: "0000000000000465" + type: "item" + item: { + id: "appliedenergistics2:wireless_terminal" + Count: 1b + tag: { + Damage: 0 + } + } + }] + } + { + x: 2.0d + y: 3.5d + shape: "pentagon" + dependencies: ["0000000000000468"] + id: "0000000000000466" + tasks: [{ + id: "0000000000000467" + type: "item" + item: "appliedenergistics2:4k_cell_component" + }] + } + { + x: 2.0d + y: 2.5d + shape: "diamond" + dependencies: ["000000000000044F"] + id: "0000000000000468" + tasks: [{ + id: "0000000000000469" + type: "item" + item: "appliedenergistics2:1k_cell_component" + }] + } + { + x: 2.0d + y: 4.5d + shape: "hexagon" + dependencies: ["0000000000000466"] + id: "000000000000046A" + tasks: [{ + id: "000000000000046B" + type: "item" + item: "appliedenergistics2:16k_cell_component" + }] + } + { + x: 2.0d + y: 5.5d + shape: "octagon" + dependencies: ["000000000000046A"] + id: "000000000000046C" + tasks: [{ + id: "000000000000046D" + type: "item" + item: "appliedenergistics2:64k_cell_component" + }] + } + { + x: 3.0d + y: 2.5d + shape: "diamond" + dependencies: ["000000000000044F"] + id: "000000000000046E" + tasks: [{ + id: "000000000000046F" + type: "item" + item: "appliedenergistics2:1k_fluid_cell_component" + }] + } + { + x: 3.0d + y: 3.5d + shape: "pentagon" + dependencies: ["000000000000046E"] + id: "0000000000000470" + tasks: [{ + id: "0000000000000471" + type: "item" + item: "appliedenergistics2:4k_fluid_cell_component" + }] + } + { + x: 3.0d + y: 4.5d + shape: "hexagon" + dependencies: ["0000000000000470"] + id: "0000000000000472" + tasks: [{ + id: "0000000000000473" + type: "item" + item: "appliedenergistics2:16k_fluid_cell_component" + }] + } + { + x: 3.0d + y: 5.5d + shape: "octagon" + dependencies: ["0000000000000472"] + id: "0000000000000474" + tasks: [{ + id: "0000000000000475" + type: "item" + item: "appliedenergistics2:64k_fluid_cell_component" + }] + } + { + x: 4.0d + y: 2.5d + shape: "diamond" + dependencies: ["000000000000044F"] + id: "0000000000000476" + tasks: [{ + id: "0000000000000477" + type: "item" + item: "appliedenergistics2:2_cubed_spatial_cell_component" + }] + } + { + x: 4.0d + y: 3.5d + shape: "pentagon" + dependencies: ["0000000000000476"] + id: "0000000000000478" + tasks: [{ + id: "0000000000000479" + type: "item" + item: "appliedenergistics2:16_cubed_spatial_cell_component" + }] + } + { + x: 4.0d + y: 4.5d + shape: "hexagon" + dependencies: ["0000000000000478"] + id: "000000000000047A" + tasks: [{ + id: "000000000000047B" + type: "item" + item: "appliedenergistics2:128_cubed_spatial_cell_component" + }] + } + { + x: 7.8d + y: 0.6d + shape: "hexagon" + dependencies: ["000000000000049D"] + size: 1.2d + id: "000000000000047C" + tasks: [{ + id: "000000000000047D" + type: "item" + item: "appliedenergistics2:quantum_ring" + }] + } + { + x: 3.5999999999999996d + y: 0.0d + dependencies: ["000000000000044D"] + size: 1.2d + id: "000000000000047E" + tasks: [{ + id: "000000000000047F" + type: "item" + item: "appliedenergistics2:controller" + }] + } + { + x: 4.5d + y: -3.0d + dependencies: ["0000000000000464"] + id: "0000000000000480" + tasks: [{ + id: "0000000000000481" + type: "item" + item: { + id: "appliedenergistics2:biometric_card" + Count: 1b + tag: { } + } + }] + } + { + x: 5.0d + y: -1.0d + dependencies: ["000000000000047E"] + id: "0000000000000482" + tasks: [ + { + id: "0000000000000483" + type: "item" + item: "appliedenergistics2:fluix_covered_dense_cable" + count: 16L + } + { + id: "0000000000000484" + type: "item" + item: "appliedenergistics2:fluix_covered_cable" + count: 8L + } + ] + rewards: [{ + id: "0000000000000485" + type: "item" + item: "appliedenergistics2:fluix_covered_dense_cable" + count: 8 + }] + } + { + title: "Autocrafting!" + x: 5.0d + y: 1.0d + description: [""] + dependencies: ["000000000000047E"] + id: "0000000000000486" + tasks: [{ + id: "0000000000000487" + type: "item" + item: "appliedenergistics2:interface" + }] + } + { + x: 4.0d + y: 1.5d + dependencies: ["000000000000047E"] + id: "0000000000000488" + tasks: [{ + id: "0000000000000489" + type: "item" + item: "appliedenergistics2:fluid_interface" + }] + } + { + x: 5.0d + y: 2.0d + dependencies: ["0000000000000486"] + id: "000000000000048C" + tasks: [{ + id: "000000000000048D" + type: "item" + item: "appliedenergistics2:crafting_card" + }] + } + { + x: 6.0d + y: -1.5d + dependencies: ["0000000000000482"] + id: "000000000000048E" + tasks: [ + { + id: "000000000000048F" + type: "item" + item: "appliedenergistics2:import_bus" + } + { + id: "0000000000000490" + type: "item" + item: "appliedenergistics2:export_bus" + } + ] + } + { + x: 6.0d + y: -2.4d + dependencies: ["000000000000048E"] + size: 0.8d + id: "0000000000000491" + tasks: [ + { + id: "0000000000000492" + type: "item" + item: "appliedenergistics2:redstone_card" + } + { + id: "00000000000004A1" + type: "item" + item: "appliedenergistics2:fuzzy_card" + } + ] + } + { + x: 6.0d + y: 1.5d + dependencies: ["0000000000000486"] + id: "0000000000000493" + tasks: [{ + id: "0000000000000494" + type: "item" + item: "appliedenergistics2:speed_card" + }] + } + { + x: 5.0d + y: 0.0d + dependencies: ["000000000000047E"] + id: "0000000000000497" + tasks: [{ + id: "0000000000000498" + type: "item" + item: "appliedenergistics2:spatial_io_port" + }] + } + { + x: -0.5d + y: 0.5d + shape: "gear" + description: ["You Can Start Producing Matter Balls With 1K ME Storage Component You Got Here!"] + dependencies: ["0000000000000513"] + size: 1.2d + id: "0000000000000499" + tasks: [{ + id: "000000000000049A" + type: "item" + item: "appliedenergistics2:condenser" + }] + rewards: [{ + id: "6DAA754198EEB5AF" + type: "item" + item: "appliedenergistics2:1k_cell_component" + }] + } + { + x: 4.0d + y: 5.5d + shape: "octagon" + dependencies: ["000000000000047A"] + id: "000000000000049B" + tasks: [{ + id: "000000000000049C" + type: "item" + item: "appliedenergistics2:128_cubed_spatial_storage_cell" + }] + } + { + x: 6.5d + y: 0.0d + shape: "pentagon" + dependencies: ["0000000000000497"] + id: "000000000000049D" + tasks: [{ + id: "000000000000049E" + type: "item" + item: "appliedenergistics2:singularity" + }] + } + { + x: -1.5d + y: -1.0d + id: "00000000000004A2" + tasks: [{ + id: "00000000000004A3" + type: "item" + item: "refinedstorage:quartz_enriched_iron" + count: 32L + }] + rewards: [{ + id: "00000000000004A4" + type: "item" + item: "refinedstorage:quartz_enriched_iron" + count: 8 + }] + } + { + x: -2.0d + y: 0.0d + shape: "hexagon" + description: [ + "Refined Storage现在有不同颜色的控制器了。按你喜欢的选择。" + "" + "&e但你需要橙色的控制器&e来完成这个任务,不好意思嘻嘻" + ] + dependencies: ["00000000000004A2"] + id: "00000000000004A5" + tasks: [{ + id: "00000000000004A7" + type: "item" + item: "refinedstorage:orange_controller" + }] + rewards: [{ + id: "00000000000004A8" + type: "item" + item: "refinedstorage:quartz_enriched_iron" + count: 8 + }] + } + { + x: -2.5d + y: 1.0d + dependencies: ["00000000000004A5"] + id: "00000000000004A9" + tasks: [{ + id: "00000000000004AA" + type: "item" + item: "refinedstorage:cable" + count: 16L + }] + } + { + x: -3.5d + y: 0.0d + shape: "hexagon" + dependencies: ["00000000000004A9"] + id: "00000000000004AB" + tasks: [{ + id: "00000000000004AC" + type: "item" + item: "refinedstorage:machine_casing" + }] + } + { + icon: "refinedstorage:orange_grid" + x: -4.0d + y: -1.5d + shape: "diamond" + dependencies: ["00000000000004BC"] + id: "00000000000004AF" + tasks: [{ + id: "00000000000004E8" + type: "item" + item: "refinedstorage:grid" + }] + } + { + icon: "refinedstorage:orange_crafting_grid" + x: -4.5d + y: -2.0d + shape: "diamond" + dependencies: ["00000000000004AF"] + id: "00000000000004B1" + tasks: [{ + id: "00000000000004EC" + type: "item" + item: "refinedstorage:crafting_grid" + }] + } + { + icon: "refinedstorage:orange_pattern_grid" + x: -5.0d + y: -1.5d + shape: "diamond" + dependencies: ["00000000000004AF"] + id: "00000000000004B3" + tasks: [{ + id: "00000000000004EE" + type: "item" + item: "refinedstorage:pattern_grid" + }] + } + { + icon: "refinedstorage:orange_fluid_grid" + x: -5.5d + y: -2.0d + shape: "diamond" + dependencies: ["00000000000004AF"] + id: "00000000000004B5" + tasks: [{ + id: "00000000000004E9" + type: "item" + item: "refinedstorage:fluid_grid" + }] + } + { + icon: "refinedstorage:improved_processor" + x: -4.5d + y: -0.44999999999999996d + shape: "hexagon" + dependencies: ["00000000000004AB"] + size: 0.9d + id: "00000000000004BC" + tasks: [ + { + id: "00000000000004BD" + type: "item" + item: "refinedstorage:basic_processor" + } + { + id: "00000000000004BE" + type: "item" + item: "refinedstorage:improved_processor" + } + { + id: "00000000000004BF" + type: "item" + item: "refinedstorage:advanced_processor" + } + ] + } + { + x: -3.5d + y: 1.5d + shape: "hexagon" + dependencies: ["00000000000004A9"] + size: 1.2d + id: "00000000000004C0" + tasks: [{ + id: "00000000000004C1" + type: "item" + item: "refinedstorage:disk_drive" + }] + } + { + x: -4.0d + y: 2.5d + shape: "diamond" + dependencies: ["00000000000004C0"] + id: "00000000000004C2" + tasks: [{ + id: "00000000000004C3" + type: "item" + item: "refinedstorage:4k_storage_part" + }] + } + { + x: -4.0d + y: 3.5d + shape: "pentagon" + dependencies: ["00000000000004C2"] + id: "00000000000004C4" + tasks: [{ + id: "00000000000004C5" + type: "item" + item: "refinedstorage:64k_storage_part" + }] + } + { + x: -4.0d + y: 4.5d + shape: "hexagon" + dependencies: ["00000000000004C4"] + id: "00000000000004C6" + tasks: [{ + id: "00000000000004C7" + type: "item" + item: "extrastorage:storagepart_256k" + }] + } + { + x: -4.0d + y: 5.5d + shape: "octagon" + dependencies: ["00000000000004C6"] + id: "00000000000004C8" + tasks: [{ + id: "00000000000004C9" + type: "item" + item: "extrastorage:storagepart_1024k" + }] + } + { + x: -3.0d + y: 2.5d + shape: "diamond" + dependencies: ["00000000000004C0"] + id: "00000000000004CA" + tasks: [{ + id: "00000000000004CB" + type: "item" + item: "refinedstorage:64k_fluid_storage_part" + }] + } + { + x: -3.0d + y: 3.5d + shape: "pentagon" + dependencies: ["00000000000004CA"] + id: "00000000000004CC" + tasks: [{ + id: "00000000000004CD" + type: "item" + item: "refinedstorage:256k_fluid_storage_part" + }] + } + { + x: -3.0d + y: 4.5d + shape: "hexagon" + dependencies: ["00000000000004CC"] + id: "00000000000004CE" + tasks: [{ + id: "00000000000004CF" + type: "item" + item: "refinedstorage:1024k_fluid_storage_part" + }] + } + { + x: -3.0d + y: 5.5d + shape: "octagon" + dependencies: ["00000000000004CE"] + id: "00000000000004D0" + tasks: [{ + id: "00000000000004D1" + type: "item" + item: "refinedstorage:4096k_fluid_storage_part" + }] + } + { + x: -5.5d + y: -0.5d + shape: "diamond" + dependencies: ["00000000000004AB"] + size: 0.9d + id: "00000000000004D2" + tasks: [ + { + id: "00000000000004D5" + type: "item" + item: "refinedstorage:importer" + } + { + id: "00000000000004D6" + type: "item" + item: "extrastorage:advanced_importer" + } + ] + rewards: [{ + id: "00000000000004D7" + type: "item" + item: "refinedstorage:cable" + count: 8 + }] + } + { + icon: "refinedstorage:orange_crafter" + x: -5.5d + y: 1.5d + shape: "heart" + dependencies: ["00000000000004AB"] + size: 0.9d + id: "00000000000004D8" + tasks: [{ + id: "00000000000004D9" + type: "item" + item: "refinedstorage:crafter" + }] + } + { + x: -5.5d + y: 2.5d + shape: "diamond" + dependencies: ["00000000000004D8"] + id: "00000000000004DA" + tasks: [{ + id: "00000000000004DB" + type: "item" + item: "extrastorage:iron_crafter" + }] + } + { + x: -5.5d + y: 3.5d + shape: "pentagon" + dependencies: ["00000000000004DA"] + id: "00000000000004DC" + tasks: [{ + id: "00000000000004DD" + type: "item" + item: "extrastorage:gold_crafter" + }] + } + { + x: -5.5d + y: 4.5d + shape: "hexagon" + dependencies: ["00000000000004DC"] + id: "00000000000004DE" + tasks: [{ + id: "00000000000004DF" + type: "item" + item: "extrastorage:diamond_crafter" + }] + } + { + x: -5.5d + y: 5.5d + shape: "octagon" + dependencies: ["00000000000004DE"] + id: "00000000000004E0" + tasks: [{ + id: "00000000000004E1" + type: "item" + item: "extrastorage:netherite_crafter" + }] + } + { + x: -8.0d + y: 0.5d + shape: "hexagon" + dependencies: ["00000000000004E6"] + id: "00000000000004E2" + tasks: [{ + id: "00000000000004E3" + type: "item" + item: "refinedstorage:network_receiver" + }] + } + { + x: -8.0d + y: -0.5d + shape: "hexagon" + dependencies: ["00000000000004E6"] + id: "00000000000004E4" + tasks: [{ + id: "00000000000004E5" + type: "item" + item: "refinedstorage:network_transmitter" + }] + } + { + x: -6.5d + y: 0.5d + shape: "hexagon" + dependencies: ["00000000000004AB"] + id: "00000000000004E6" + tasks: [{ + id: "00000000000004E7" + type: "item" + item: "refinedstorage:network_card" + }] + } + { + x: -6.0d + y: -1.0d + shape: "diamond" + dependencies: ["00000000000004D2"] + size: 0.9d + id: "00000000000004EF" + tasks: [ + { + id: "00000000000004F0" + type: "item" + item: "refinedstorage:exporter" + } + { + id: "00000000000004F1" + type: "item" + item: "extrastorage:advanced_exporter" + } + ] + } + { + x: -7.0d + y: 2.5d + shape: "diamond" + dependencies: ["00000000000004F9"] + id: "00000000000004F2" + tasks: [{ + id: "00000000000004F3" + type: "item" + item: "refinedstorage:wireless_crafting_monitor" + }] + } + { + x: -7.5d + y: 3.0d + shape: "diamond" + dependencies: ["00000000000004F9"] + id: "00000000000004F4" + tasks: [{ + id: "00000000000004F6" + type: "item" + item: "refinedstorage:wireless_fluid_grid" + }] + } + { + x: -7.0d + y: 3.5d + shape: "diamond" + dependencies: ["00000000000004F9"] + id: "00000000000004F7" + tasks: [{ + id: "00000000000004F8" + type: "item" + item: "refinedstorageaddons:wireless_crafting_grid" + }] + } + { + x: -7.5d + y: 2.0d + shape: "diamond" + dependencies: ["00000000000004AB"] + id: "00000000000004F9" + tasks: [{ + id: "00000000000004FA" + type: "item" + item: "refinedstorage:wireless_transmitter" + }] + } + { + x: 1.2d + y: -0.6d + shape: "diamond" + subtitle: "You can now also craft Fluix Crystal with Metallurgic Infuser." + dependencies: ["000000000000051E"] + size: 0.6d + id: "0000000000000513" + tasks: [{ + id: "0000000000000514" + type: "item" + item: "appliedenergistics2:fluix_crystal" + count: 16L + }] + rewards: [{ + id: "0000000000000516" + type: "item" + item: "appliedenergistics2:logic_processor" + count: 8 + }] + } + { + x: 0.8999999999999999d + y: -1.2d + subtitle: "Charged Certus Quartz Ore Is Disabled. You Can Craft Charged Certus Quartz In Blood Altar." + size: 0.6d + id: "000000000000051E" + tasks: [{ + id: "000000000000051F" + type: "item" + item: "appliedenergistics2:charged_certus_quartz_crystal" + }] + rewards: [{ + id: "0000000000000520" + type: "item" + item: "appliedenergistics2:charged_certus_quartz_crystal" + count: 4 + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/astral_2.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/astral_2.snbt new file mode 100644 index 000000000..385145956 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/astral_2.snbt @@ -0,0 +1,657 @@ +{ + id: "00000000000001F6" + group: "" + order_index: 4 + filename: "astral_2" + title: "&7大教堂的第八十层(星辉)" + icon: "astralsorcery:altar_constellation" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: 0.0d + y: 0.0d + shape: "hexagon" + dependencies: ["00000000000001F9"] + id: "00000000000001F7" + tasks: [{ + id: "00000000000001F8" + type: "item" + item: "astralsorcery:altar_discovery" + }] + } + { + x: 1.5d + y: 1.5d + shape: "hexagon" + id: "00000000000001F9" + tasks: [{ + id: "00000000000001FA" + type: "item" + item: "astralsorcery:wand" + }] + } + { + x: 0.5d + y: 2.5d + dependencies: ["00000000000001F9"] + id: "00000000000001FB" + tasks: [ + { + id: "00000000000001FC" + type: "item" + item: { + id: "astralsorcery:rock_crystal" + Count: 1b + tag: { + astralsorcery: { } + } + } + } + { + id: "00000000000001FD" + type: "item" + item: "astralsorcery:aquamarine" + count: 16L + } + ] + rewards: [{ + id: "00000000000001FE" + type: "item" + item: "astralsorcery:aquamarine" + count: 16 + }] + } + { + x: 3.0d + y: 0.0d + shape: "gear" + description: ["Astral Tome for Free!"] + dependencies: ["00000000000001F9"] + size: 1.3d + id: "00000000000001FF" + tasks: [{ + id: "33F98AC6C9CF4AB6" + type: "checkmark" + icon: "astralsorcery:tome" + }] + rewards: [{ + id: "13DD6B8128A81AA6" + type: "item" + item: "astralsorcery:tome" + }] + } + { + x: 1.5d + y: 3.0d + dependencies: ["00000000000001FB"] + id: "0000000000000201" + tasks: [{ + id: "0000000000000202" + type: "item" + item: "astralsorcery:parchment" + }] + } + { + x: 2.5d + y: 2.5d + dependencies: ["0000000000000201"] + id: "0000000000000203" + tasks: [{ + id: "0000000000000204" + type: "item" + item: "astralsorcery:illuminator" + }] + } + { + x: 1.5d + y: -2.0d + dependencies: ["00000000000001FF"] + id: "0000000000000205" + tasks: [{ + id: "0000000000000206" + type: "item" + item: "astralsorcery:hand_telescope" + }] + } + { + x: 4.5d + y: 0.0d + shape: "pentagon" + dependencies: ["00000000000001FF"] + id: "0000000000000207" + tasks: [{ + id: "0000000000000208" + type: "item" + item: "astralsorcery:well" + }] + } + { + x: 6.4d + y: -1.2d + dependencies: ["0000000000000207"] + size: 0.8d + id: "0000000000000209" + tasks: [{ + id: "000000000000020A" + type: "item" + item: "astralsorcery:infused_wood" + count: 16L + }] + } + { + x: 6.0d + y: 1.0d + dependencies: ["0000000000000207"] + id: "000000000000020B" + tasks: [{ + id: "000000000000020C" + type: "item" + item: { + id: "astralsorcery:resonator" + Count: 1b + tag: { + astralsorcery: { + upgrades: [0] + } + } + } + }] + } + { + x: 7.5d + y: 0.0d + shape: "hexagon" + dependencies: ["0000000000000207"] + size: 1.1d + id: "000000000000020D" + tasks: [{ + id: "000000000000020E" + type: "item" + item: "astralsorcery:altar_attunement" + }] + } + { + x: 3.6d + y: -1.2d + dependencies: ["0000000000000207"] + size: 0.9d + id: "000000000000020F" + tasks: [ + { + id: "0000000000000210" + type: "item" + item: { + id: "astralsorcery:crystal_sword" + Count: 1b + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:shape" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.durability" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.efficiency" + pLevel: 3 + discovered: 1b + } + ] + } + } + Damage: 0 + } + } + } + { + id: "0000000000000211" + type: "item" + item: { + id: "astralsorcery:crystal_axe" + Count: 1b + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:shape" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.durability" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.efficiency" + pLevel: 3 + discovered: 1b + } + ] + } + } + Damage: 0 + } + } + } + { + id: "0000000000000212" + type: "item" + item: { + id: "astralsorcery:crystal_pickaxe" + Count: 1b + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:shape" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.durability" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.efficiency" + pLevel: 3 + discovered: 1b + } + ] + } + } + Damage: 0 + } + } + } + { + id: "0000000000000213" + type: "item" + item: { + id: "astralsorcery:crystal_shovel" + Count: 1b + tag: { + astralsorcery: { + crystalProperties: { + attributes: [ + { + property: "astralsorcery:size" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:shape" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.durability" + pLevel: 3 + discovered: 1b + } + { + property: "astralsorcery:tool.efficiency" + pLevel: 3 + discovered: 1b + } + ] + } + } + Damage: 0 + } + } + } + ] + rewards: [{ + id: "0000000000000214" + type: "item" + item: { + id: "astralsorcery:rock_crystal" + Count: 1b + tag: { + astralsorcery: { } + } + } + }] + } + { + x: 7.5d + y: 1.5d + dependencies: ["0000000000000510"] + id: "0000000000000215" + tasks: [{ + id: "0000000000000216" + type: "item" + item: "astralsorcery:starmetal_ore" + }] + } + { + x: 9.9d + y: 0.0d + shape: "hexagon" + dependencies: ["000000000000020D"] + size: 1.1d + id: "0000000000000217" + tasks: [{ + id: "0000000000000219" + type: "item" + item: "astralsorcery:attunement_altar" + }] + } + { + x: 11.0d + y: -1.5d + dependencies: ["0000000000000217"] + id: "000000000000021A" + tasks: [{ + id: "000000000000021B" + type: "item" + item: "astralsorcery:ritual_pedestal" + }] + } + { + x: 12.5d + y: -2.0d + dependencies: ["000000000000021A"] + id: "000000000000021C" + tasks: [{ + id: "000000000000021D" + type: "item" + item: "astralsorcery:ritual_link" + }] + } + { + x: 11.5d + y: 1.0d + dependencies: ["0000000000000217"] + id: "000000000000021E" + tasks: [{ + id: "000000000000021F" + type: "item" + item: "astralsorcery:spectral_relay" + count: 16L + }] + rewards: [{ + id: "0000000000000220" + type: "item" + item: "astralsorcery:glass_lens" + count: 4 + }] + } + { + x: 13.0d + y: 2.5d + dependencies: ["000000000000021E"] + id: "0000000000000221" + tasks: [{ + id: "0000000000000222" + type: "item" + item: "astralsorcery:shifting_star" + }] + } + { + x: 11.0d + y: 2.5d + dependencies: ["000000000000021E"] + id: "0000000000000223" + tasks: [{ + id: "0000000000000224" + type: "item" + item: "astralsorcery:perk_seal" + }] + } + { + x: 8.5d + y: 2.0d + dependencies: ["0000000000000215"] + id: "0000000000000225" + tasks: [{ + id: "0000000000000226" + type: "item" + item: { + id: "astralsorcery:chisel" + Count: 1b + tag: { + Damage: 0 + } + } + }] + } + { + x: 9.5d + y: 1.5d + dependencies: ["0000000000000225"] + id: "0000000000000227" + tasks: [{ + id: "0000000000000228" + type: "item" + item: "astralsorcery:stardust" + }] + } + { + x: 13.75d + y: 0.0d + shape: "hexagon" + dependencies: ["0000000000000217"] + size: 1.1d + id: "0000000000000229" + tasks: [{ + id: "000000000000022A" + type: "item" + item: "astralsorcery:altar_constellation" + }] + } + { + x: 8.5d + y: -1.5d + dependencies: ["000000000000020D"] + id: "000000000000022B" + tasks: [{ + id: "000000000000022C" + type: "item" + item: { + id: "astralsorcery:celestial_gateway" + Count: 1b + tag: { + astralsorcery: { } + } + } + }] + } + { + x: 7.0d + y: -2.0d + dependencies: ["000000000000020D"] + id: "000000000000022D" + tasks: [{ + id: "000000000000022E" + type: "item" + item: "astralsorcery:telescope" + }] + } + { + x: 18.0d + y: 0.0d + shape: "hexagon" + dependencies: ["0000000000000229"] + size: 1.4d + id: "000000000000022F" + tasks: [{ + id: "0000000000000230" + type: "item" + item: "astralsorcery:altar_radiance" + }] + } + { + x: 13.5d + y: -1.5d + dependencies: ["0000000000000229"] + id: "0000000000000231" + tasks: [{ + id: "0000000000000232" + type: "item" + item: "astralsorcery:tree_beacon" + }] + } + { + x: 15.0d + y: -1.0d + shape: "hexagon" + dependencies: ["0000000000000229"] + id: "0000000000000233" + tasks: [{ + id: "0000000000000234" + type: "item" + item: "astralsorcery:infuser" + }] + } + { + x: 19.5d + y: -1.0d + dependencies: ["000000000000022F"] + id: "0000000000000235" + tasks: [{ + id: "0000000000000236" + type: "item" + item: { + id: "astralsorcery:infused_glass" + Count: 1b + tag: { + astralsorcery: { } + Damage: 0 + } + } + }] + } + { + x: 20.8d + y: 0.0d + shape: "gear" + dependencies: ["0000000000000235"] + size: 1.3d + id: "0000000000000237" + tasks: [{ + id: "0000000000000238" + type: "item" + item: "astralsorcery:observatory" + }] + } + { + x: 15.0d + y: -2.5d + dependencies: ["0000000000000229"] + id: "0000000000000239" + tasks: [{ + id: "000000000000023A" + type: "item" + item: "astralsorcery:refraction_table" + }] + } + { + x: 15.5d + y: 1.5d + dependencies: ["0000000000000229"] + id: "000000000000023B" + tasks: [{ + id: "000000000000023C" + type: "item" + item: "astralsorcery:ritual_link" + }] + } + { + x: 12.5d + y: -1.0d + dependencies: ["0000000000000229"] + id: "000000000000023D" + tasks: [{ + id: "000000000000023E" + type: "item" + item: { + id: "astralsorcery:prism" + Count: 1b + tag: { + astralsorcery: { + crystalProperties: { + attributes: [{ + property: "astralsorcery:purity" + pLevel: 2 + discovered: 1b + }] + } + } + } + } + }] + } + { + x: 7.5d + y: 0.75d + subtitle: "You Can Craft Iron Ore By Placing Iron Chunk In The Crafting Table. Because Silk Touch Won't Work." + dependencies: ["000000000000020D"] + size: 0.5d + id: "0000000000000510" + tasks: [{ + id: "0000000000000511" + type: "item" + item: "emendatusenigmatica:iron_ore" + }] + rewards: [{ + id: "0000000000000512" + type: "item" + item: "astralsorcery:starmetal_ore" + count: 4 + }] + } + { + x: 16.0d + y: 0.0d + shape: "hexagon" + dependencies: ["0000000000000233"] + size: 0.9d + id: "0000000000000604" + tasks: [{ + id: "0000000000000605" + type: "item" + item: "extendedcrafting:luminessence" + }] + } + { + x: 17.0d + y: -1.5d + shape: "hexagon" + dependencies: ["000000000000022F"] + size: 1.1d + id: "132899EB57864ED8" + tasks: [{ + id: "722CC6E297FD269D" + type: "item" + item: "astralsorcery:chalice" + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/blood_c.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/blood_c.snbt new file mode 100644 index 000000000..0b02ad3fb --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/blood_c.snbt @@ -0,0 +1,344 @@ +{ + id: "00000000000000F3" + group: "" + order_index: 3 + filename: "blood_c" + title: "&7金属导线的躯体,亦是我创造出来的血肉(血魔法)" + icon: "bloodmagic:altar" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: 0.0d + y: 0.0d + subtitle: "导线躯壳,人类血肉" + description: ["&a血之祭坛:&f血魔法的核心物品。"] + dependencies: ["00000000000000F7"] + id: "00000000000000F4" + tasks: [{ + id: "00000000000000F5" + type: "item" + item: "bloodmagic:altar" + }] + rewards: [{ + id: "00000000000000F6" + type: "item" + item: "bloodmagic:life_essence_bucket" + }] + } + { + x: -1.0d + y: -1.0d + description: ["&a提示:&f将它投向敌对生物,敌对生物冒出白色粒子效果后,将其击杀即可获得恶魔意志。"] + id: "00000000000000F7" + tasks: [{ + id: "00000000000000F8" + type: "item" + item: "bloodmagic:soulsnare" + count: 4L + }] + rewards: [{ + id: "00000000000000F9" + type: "item" + item: "pamhc2foodcore:basiccheeseburgeritem" + count: 2 + }] + } + { + x: 1.5d + y: 1.5d + description: ["是时候搭建&a血之祭坛-等级2了!"] + dependencies: ["00000000000000F4"] + id: "00000000000000FA" + tasks: [{ + id: "00000000000000FB" + type: "item" + item: "bloodmagic:blankrune" + count: 8L + }] + } + { + icon: "minecraft:glowstone" + x: 2.5d + y: 1.0d + description: ["是时候搭建&a血之祭坛-等级3了!"] + dependencies: ["00000000000000FA"] + id: "00000000000000FC" + tasks: [ + { + id: "00000000000000FD" + type: "item" + item: "bloodmagic:selfsacrificerune" + count: 10L + } + { + id: "00000000000000FE" + type: "item" + item: "bloodmagic:blankrune" + count: 10L + } + { + id: "00000000000000FF" + type: "item" + item: "minecraft:glowstone" + count: 4L + } + ] + } + { + x: 2.5d + y: 2.5d + description: ["&a提示:&f层级二的移动式血液存储。在你使用印记时会有很大帮助。"] + dependencies: ["00000000000000FA"] + id: "0000000000000100" + tasks: [{ + id: "0000000000000101" + type: "item" + item: "bloodmagic:apprenticebloodorb" + }] + } + { + x: 3.5d + y: 2.0d + description: ["&a提示:&f层级三的移动式血液存储。在你使用印记时会有很大帮助。"] + dependencies: ["00000000000000FC"] + id: "0000000000000102" + tasks: [{ + id: "0000000000000103" + type: "item" + item: "bloodmagic:magicianbloodorb" + }] + } + { + x: 0.8999999999999999d + y: 0.8999999999999999d + description: ["&a提示:&f层级一的移动式血液存储。在你使用印记时会有很大帮助。"] + dependencies: ["00000000000000F4"] + size: 0.6d + id: "0000000000000104" + tasks: [{ + id: "0000000000000105" + type: "item" + item: "bloodmagic:weakbloodorb" + }] + } + { + x: 4.5d + y: 1.5d + description: ["&a提示:&f层级四的移动式血液存储。在你使用印记时会有很大帮助。"] + dependencies: ["0000000000000108"] + id: "0000000000000106" + tasks: [{ + id: "0000000000000107" + type: "item" + item: "bloodmagic:masterbloodorb" + }] + } + { + icon: "bloodmagic:largebloodstonebrick" + x: 3.5d + y: 0.5d + description: ["是时候搭建&a血之祭坛-等级4了!"] + dependencies: ["00000000000000FC"] + id: "0000000000000108" + tasks: [ + { + id: "0000000000000109" + type: "item" + item: "bloodmagic:altarcapacityrune" + count: 8L + } + { + id: "000000000000010A" + type: "item" + item: "bloodmagic:blankrune" + count: 20L + } + { + id: "000000000000010B" + type: "item" + item: "bloodmagic:largebloodstonebrick" + count: 4L + } + ] + } + { + icon: "minecraft:beacon" + x: 4.5d + y: 0.0d + description: ["是时候搭建&a血之祭坛-等级5了!"] + dependencies: ["0000000000000108"] + id: "000000000000010C" + tasks: [ + { + id: "000000000000010D" + type: "item" + item: "bloodmagic:bettercapacityrune" + count: 5L + } + { + id: "000000000000010E" + type: "item" + item: "bloodmagic:accelerationrune" + count: 5L + } + { + id: "000000000000010F" + type: "item" + item: "minecraft:beacon" + count: 4L + } + ] + } + { + x: 5.5d + y: 1.0d + shape: "hexagon" + description: ["&a悬幽石板:&f后期游戏的必要合成材料。"] + dependencies: ["000000000000010C"] + id: "0000000000000110" + tasks: [{ + id: "0000000000000111" + type: "item" + item: "bloodmagic:etherealslate" + }] + } + { + x: -3.0d + y: -0.5d + description: ["&a提示:&f查看JEI获取更多内容。"] + dependencies: ["000000000000011F"] + id: "0000000000000112" + tasks: [ + { + id: "0000000000000113" + type: "item" + item: "bloodmagic:alchemicalreactionchamber" + } + { + id: "0000000000000114" + type: "item" + item: "bloodmagic:demoncrucible" + } + { + id: "0000000000000115" + type: "item" + item: "bloodmagic:demoncrystallizer" + } + ] + } + { + x: -3.5d + y: 0.5d + description: ["&a提示:&f通过消耗血,就能永远当作燃料燃烧。"] + dependencies: ["000000000000011F"] + id: "0000000000000116" + tasks: [{ + id: "0000000000000117" + type: "item" + item: "bloodmagic:lavacrystal" + }] + } + { + x: -3.0d + y: 1.5d + description: ["&a提示:&f帮助你搭建仪式的小工具。"] + dependencies: ["000000000000011F"] + id: "0000000000000118" + tasks: [{ + id: "0000000000000119" + type: "item" + item: "bloodmagic:ritualdiviner" + }] + } + { + x: -2.5d + y: 2.5d + description: ["&a提示:&f查看JEI获取更多内容。"] + dependencies: ["000000000000011F"] + id: "000000000000011A" + tasks: [ + { + id: "000000000000011B" + type: "item" + item: { + id: "bloodmagic:livinghelmet" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "000000000000011C" + type: "item" + item: { + id: "bloodmagic:livingplate" + Count: 1b + tag: { + Damage: 0 + livingStats: { + maxPoints: 100 + upgrades: [ ] + } + } + } + } + { + id: "000000000000011D" + type: "item" + item: { + id: "bloodmagic:livingleggings" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "000000000000011E" + type: "item" + item: { + id: "bloodmagic:livingboots" + Count: 1b + tag: { + Damage: 0 + } + } + } + ] + } + { + x: -0.8d + y: 0.8d + description: ["&a提示:&f查看JEI获取更多内容。"] + dependencies: ["00000000000000F4"] + size: 0.8d + id: "000000000000011F" + tasks: [{ + id: "0000000000000120" + type: "item" + item: "bloodmagic:soulforge" + }] + } + { + x: -1.5d + y: 1.5d + description: ["&a奥术粉灰:&f用来制作各种印记和束灵套装。"] + dependencies: ["000000000000011F"] + size: 0.6d + id: "0000000000000121" + tasks: [{ + id: "0000000000000122" + type: "item" + item: { + id: "bloodmagic:arcaneashes" + Count: 1b + tag: { + Damage: 0 + } + } + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/botania.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/botania.snbt new file mode 100644 index 000000000..94d0b6cd8 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/botania.snbt @@ -0,0 +1,646 @@ +{ + id: "0000000000000123" + group: "" + order_index: 2 + filename: "botania" + title: "&7碧琪公主(植魔)" + icon: { + id: "botania:lexicon" + Count: 1b + tag: { + "botania:elven_unlock": 1b + } + } + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: -3.0d + y: 0.5d + shape: "diamond" + description: ["&a植物魔法辞典:&f包含了植物魔法中你需要知道的所有东西。"] + id: "0000000000000124" + tasks: [{ + id: "61109A830BF77E33" + type: "checkmark" + title: "植物魔法" + icon: "botania:lexicon" + }] + rewards: [ + { + id: "0000000000000126" + type: "item" + item: "botania:fertilizer" + count: 4 + } + { + id: "61221F6BA0E9BDF5" + type: "item" + item: "botania:lexicon" + } + ] + } + { + x: -2.4d + y: 1.7999999999999998d + shape: "hexagon" + description: ["&a提示:&f你可以使用cyclic的玩家模拟器自动为花药台装水!"] + dependencies: ["0000000000000124"] + size: 1.2d + id: "0000000000000127" + tasks: [{ + id: "0000000000000128" + type: "item" + item: "botania:apothecary_default" + }] + } + { + x: -1.0d + y: 3.0d + description: ["&a提示:&f自动化白雏菊的方式有很多。打开你的脑洞!"] + dependencies: ["0000000000000127"] + id: "0000000000000129" + tasks: [{ + id: "000000000000012A" + type: "item" + item: "botania:pure_daisy" + }] + rewards: [{ + id: "000000000000012B" + type: "item" + item: "botania:open_crate" + }] + } + { + x: 0.44999999999999996d + y: 2.25d + shape: "diamond" + description: ["&a提示:&f同样也有很多方式自动化白色混凝土。试试在JEI里输入@concrete。"] + dependencies: ["0000000000000129"] + size: 0.9d + id: "000000000000012C" + tasks: [{ + id: "000000000000012D" + type: "item" + item: "botania:livingrock" + count: 16L + }] + } + { + x: 0.44999999999999996d + y: 3.5999999999999996d + shape: "diamond" + description: ["&a提示:&f使用动力搅拌器自动制作防腐木是个不错的方式。"] + dependencies: ["0000000000000129"] + size: 0.9d + id: "000000000000012E" + tasks: [{ + id: "000000000000012F" + type: "item" + item: "botania:livingwood" + }] + } + { + x: 2.0d + y: 2.0d + description: ["&a其实:&f它就是个披着魔法外衣的能量电池。"] + dependencies: ["000000000000012C"] + id: "0000000000000130" + tasks: [{ + id: "0000000000000131" + type: "item" + item: "botania:mana_pool" + }] + } + { + x: 1.5d + y: 5.0d + description: ["&a提示:&f一朵贪食花产出的魔力大于一个魔力发射器能够存储的魔力。"] + dependencies: ["000000000000012E"] + id: "0000000000000132" + tasks: [{ + id: "0000000000000133" + type: "item" + item: "botania:mana_spreader" + count: 4L + }] + } + { + x: 2.0d + y: 3.5d + description: ["&a活木枝:&f活木制作的木棍。"] + dependencies: ["000000000000012E"] + id: "0000000000000134" + tasks: [{ + id: "0000000000000135" + type: "item" + item: "botania:livingwood_twig" + count: 4L + }] + } + { + x: 4.5d + y: 2.0d + shape: "hexagon" + description: ["&a符文祭坛:&f全自动符文祭坛比看上去要简单。"] + dependencies: ["0000000000000130"] + id: "0000000000000136" + tasks: [{ + id: "0000000000000137" + type: "item" + item: "botania:runic_altar" + }] + } + { + x: 2.25d + y: 0.8999999999999999d + description: ["&a魔力石板:&f移动式魔力存储。"] + dependencies: ["0000000000000130"] + size: 0.9d + id: "0000000000000138" + tasks: [{ + id: "0000000000000139" + type: "item" + item: { + id: "botania:mana_tablet" + Count: 1b + tag: { } + } + }] + } + { + x: 2.8d + y: 0.0d + description: ["&aBand Of Mana: &fPortable Mana Storage But You Can Wear This To The Baubles Slot."] + dependencies: ["0000000000000130"] + size: 0.8d + id: "000000000000013A" + tasks: [{ + id: "000000000000013B" + type: "item" + item: { + id: "botania:mana_ring" + Count: 1b + tag: { } + } + }] + } + { + x: 1.2d + y: 1.2d + shape: "hexagon" + description: ["&a炼金催化器:&fJEI里有详细的配方。"] + dependencies: ["0000000000000130"] + size: 0.8d + id: "000000000000013C" + tasks: [{ + id: "000000000000013D" + type: "item" + item: "botania:alchemy_catalyst" + }] + } + { + x: 3.0d + y: 4.5d + description: ["&a森林法杖:&f不能施放法术的法杖。"] + dependencies: ["0000000000000134"] + id: "000000000000013E" + tasks: [{ + id: "000000000000013F" + type: "item" + item: { + id: "botania:twig_wand" + Count: 1b + tag: { + color1: 0 + color2: 0 + } + } + }] + } + { + x: 3.5d + y: 3.5d + description: ["&a翻阅植魔辞典获取详细信息"] + dependencies: ["0000000000000136"] + id: "0000000000000140" + tasks: [{ + id: "0000000000000141" + type: "item" + item: "botania:travel_belt" + }] + } + { + x: 4.0d + y: 5.0d + description: ["&a翻阅植魔辞典获取详细信息"] + dependencies: ["0000000000000144"] + id: "0000000000000142" + tasks: [{ + id: "0000000000000143" + type: "item" + item: "botania:super_travel_belt" + }] + } + { + x: 4.5d + y: 4.0d + description: ["&a翻阅植魔辞典获取详细信息"] + dependencies: ["0000000000000140"] + id: "0000000000000144" + tasks: [{ + id: "0000000000000145" + type: "item" + item: "botania:speed_up_belt" + }] + } + { + x: 6.500000000000001d + y: 2.6d + shape: "hexagon" + description: ["&a泰拉凝聚板:&f有着超炫特效的魔法合成方式。"] + dependencies: ["0000000000000136"] + size: 1.2d + id: "0000000000000146" + tasks: [{ + id: "0000000000000147" + type: "item" + item: "botania:terra_plate" + }] + } + { + x: 7.5d + y: 1.5d + description: ["&a泰拉钢:&f跟泰拉瑞亚有点关系的物品。"] + dependencies: ["0000000000000146"] + id: "0000000000000148" + tasks: [{ + id: "0000000000000149" + type: "item" + item: "botania:terrasteel_ingot" + }] + } + { + x: 5.5d + y: 3.5d + description: ["&a自然水晶:&f大地之母的自然能量水晶。"] + dependencies: ["0000000000000146"] + id: "000000000000014A" + tasks: [{ + id: "000000000000014B" + type: "item" + item: "botania:natura_pylon" + }] + } + { + title: "层级一符文" + x: 3.5d + y: 1.0d + description: ["&a植物魔法的第一层级符文!"] + dependencies: ["0000000000000136"] + id: "000000000000014C" + tasks: [ + { + id: "000000000000014D" + type: "item" + item: "botania:rune_water" + } + { + id: "000000000000014E" + type: "item" + item: "botania:rune_fire" + } + { + id: "000000000000014F" + type: "item" + item: "botania:rune_earth" + } + { + id: "0000000000000150" + type: "item" + item: "botania:rune_air" + } + ] + } + { + title: "层级二符文" + x: 4.5d + y: 0.0d + description: ["&a植物魔法层级二的符文!"] + dependencies: ["0000000000000136"] + id: "0000000000000151" + tasks: [ + { + id: "0000000000000152" + type: "item" + item: "botania:rune_spring" + } + { + id: "0000000000000153" + type: "item" + item: "botania:rune_summer" + } + { + id: "0000000000000154" + type: "item" + item: "botania:rune_autumn" + } + { + id: "0000000000000155" + type: "item" + item: "botania:rune_winter" + } + { + id: "0000000000000156" + type: "item" + item: "botania:rune_mana" + } + ] + } + { + title: "层级三符文" + x: 5.5d + y: 0.5d + description: ["&a植物魔法层级三的符文!"] + dependencies: ["0000000000000136"] + id: "0000000000000157" + tasks: [ + { + id: "0000000000000158" + type: "item" + item: "botania:rune_lust" + } + { + id: "0000000000000159" + type: "item" + item: "botania:rune_gluttony" + } + { + id: "000000000000015A" + type: "item" + item: "botania:rune_greed" + } + { + id: "000000000000015B" + type: "item" + item: "botania:rune_sloth" + } + ] + } + { + x: 8.0d + y: 4.0d + shape: "octagon" + description: ["&d精灵门核心:&f二次元女孩们超爱的传送门。"] + dependencies: ["0000000000000146"] + id: "000000000000015C" + tasks: [ + { + id: "000000000000015D" + type: "item" + item: "botania:alfheim_portal" + } + { + id: "000000000000015E" + type: "item" + item: "botania:glimmering_livingwood" + count: 3L + } + { + id: "000000000000015F" + type: "item" + item: "botania:livingwood" + count: 8L + } + ] + rewards: [{ + id: "0000000000000160" + type: "item" + item: { + id: "botania:mana_gun" + Count: 1b + tag: { } + } + }] + } + { + x: 7.0d + y: 5.0d + description: ["&a翻阅植魔辞典获取详细信息"] + dependencies: ["000000000000015C"] + id: "0000000000000161" + tasks: [{ + id: "0000000000000162" + type: "item" + item: "botania:elementium_ingot" + }] + } + { + x: 5.85d + y: 5.3999999999999995d + shape: "diamond" + description: ["&dElven Mana Spreader: &fA Faster Mana Spreader. But Not The Fastest."] + dependencies: ["0000000000000161"] + size: 0.9d + id: "0000000000000163" + tasks: [{ + id: "0000000000000164" + type: "item" + item: "botania:elven_spreader" + }] + } + { + x: 9.0d + y: 2.0d + description: ["&d源质钢套装:&f这是粉红二次元女孩套装。"] + dependencies: ["000000000000015C"] + id: "0000000000000165" + tasks: [ + { + id: "0000000000000166" + type: "item" + item: { + id: "botania:elementium_helmet" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "0000000000000167" + type: "item" + item: { + id: "botania:elementium_chestplate" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "0000000000000168" + type: "item" + item: { + id: "botania:elementium_leggings" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "0000000000000169" + type: "item" + item: { + id: "botania:elementium_boots" + Count: 1b + tag: { + Damage: 0 + } + } + } + ] + rewards: [{ + id: "000000000000016A" + type: "item" + item: "pamhc2foodextended:lemonsmoothieitem" + count: 8 + }] + } + { + icon: "botania:gaia_pylon" + x: 10.0d + y: 3.5d + description: ["&d植物魔法辞典:&f高级版本的辞典,拥有更多植物魔法后期的内容。"] + dependencies: ["000000000000016D"] + id: "000000000000016B" + tasks: [{ + id: "000000000000016C" + type: "item" + item: { + id: "botania:lexicon" + Count: 1b + tag: { + "botania:elven_unlock": 1b + } + } + }] + } + { + x: 10.0d + y: 5.0d + shape: "octagon" + description: [ + "&d盖亚之魂:&f击杀盖亚获得的合成用材料。" + "" + "&d翻阅植魔辞典获取详细信息。" + ] + dependencies: ["000000000000015C"] + id: "000000000000016D" + tasks: [{ + id: "000000000000016E" + type: "item" + item: "botania:life_essence" + count: 8L + }] + rewards: [{ + id: "000000000000016F" + type: "item" + item: { + id: "botania:dice" + Count: 1b + tag: { } + } + }] + } + { + x: 1.5d + y: 0.5d + shape: "octagon" + description: ["&a磁化指环:&f免费的磁铁。不用魔力也不用钱。"] + dependencies: ["0000000000000130"] + size: 0.9d + id: "0000000000000170" + tasks: [{ + id: "0000000000000171" + type: "item" + item: { + id: "botania:magnet_ring" + Count: 1b + tag: { } + } + }] + } + { + x: 8.0d + y: 2.5d + description: ["&d触物指环:&f增加玩家的最大触碰范围。"] + dependencies: ["000000000000015C"] + id: "0000000000000172" + tasks: [{ + id: "0000000000000173" + type: "item" + item: { + id: "botania:reach_ring" + Count: 1b + tag: { + baubleUUIDMost: -23831268810011884L + baubleUUIDLeast: -8419620320435513121L + } + } + }] + } + { + x: 11.5d + y: 4.0d + description: ["&d天翼族之冠:&f创造飞行。当然,它需要消耗魔力。"] + dependencies: ["000000000000016D"] + id: "0000000000000174" + tasks: [{ + id: "0000000000000175" + type: "item" + item: { + id: "botania:flight_tiara" + Count: 1b + tag: { + variant: 0 + } + } + }] + } + { + x: 12.5d + y: 6.0d + shape: "gear" + description: ["&d盖亚魂锭:&f贵重的合成材料。"] + dependencies: ["000000000000016D"] + size: 1.3d + id: "0000000000000176" + tasks: [{ + id: "0000000000000177" + type: "item" + item: "botania:gaia_ingot" + }] + } + { + x: 8.5d + y: 6.0d + description: ["&a翻阅植魔辞典获取详细信息"] + dependencies: ["000000000000016D"] + id: "0000000000000178" + tasks: [ + { + id: "0000000000000179" + type: "item" + item: "botania:unholy_cloak" + } + { + id: "000000000000017A" + type: "item" + item: "botania:balance_cloak" + } + ] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/darling_in_the_franxx.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/darling_in_the_franxx.snbt new file mode 100644 index 000000000..e8c88701f --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/darling_in_the_franxx.snbt @@ -0,0 +1,706 @@ +{ + id: "0000000000000019" + group: "" + order_index: 1 + filename: "darling_in_the_franxx" + title: "&7无星夜的咏叹调(IE)" + icon: "immersiveengineering:tesla_coil" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: 0.0d + y: 0.0d + shape: "hexagon" + size: 1.2d + id: "000000000000001A" + tasks: [{ + id: "000000000000001C" + type: "item" + item: { + id: "immersiveengineering:hammer" + Count: 1b + tag: { + Damage: 0 + } + } + }] + } + { + x: 2.0d + y: 1.0d + shape: "hexagon" + subtitle: "就是个简单的机器框架" + dependencies: ["000000000000001A"] + size: 1.1d + id: "000000000000001D" + tasks: [{ + id: "000000000000001F" + type: "item" + item: "mysticalagriculture:machine_frame" + }] + rewards: [{ + id: "00000000000005F8" + type: "item" + item: "thermal:lumium_ingot" + count: 4 + }] + } + { + x: -1.2d + y: -2.4d + shape: "diamond" + subtitle: "你现在可以制作一些合成部件了" + dependencies: ["0000000000000124"] + size: 0.8d + id: "0000000000000020" + tasks: [{ + id: "0000000000000021" + type: "item" + item: "immersiveengineering:workbench" + }] + rewards: [{ + id: "00000000000005C1" + type: "item" + item: "immersiveengineering:electron_tube" + count: 4 + }] + } + { + x: 1.0d + y: 2.0d + shape: "pentagon" + dependencies: ["000000000000001D"] + id: "0000000000000022" + tasks: [{ + id: "0000000000000023" + type: "item" + item: "immersiveengineering:capacitor_lv" + }] + rewards: [{ + id: "00000000000005FE" + type: "item" + item: "pamhc2foodcore:friedeggitem" + }] + } + { + icon: "immersiveengineering:blast_furnace" + x: 2.0d + y: -1.0d + shape: "hexagon" + subtitle: "你现在可以制作你的第一块钢了。" + dependencies: ["000000000000001A"] + size: 1.1d + id: "0000000000000026" + tasks: [{ + id: "0000000000000027" + type: "item" + item: "immersiveengineering:blastbrick" + count: 27L + }] + } + { + title: "我们需要更多板!" + icon: "immersiveengineering:metal_press" + x: 4.0d + y: -2.0d + shape: "pentagon" + subtitle: "养成超量合成的习惯" + description: ["&e 你总是需要更多东西!"] + dependencies: ["00000000000005A1"] + id: "000000000000002C" + tasks: [ + { + id: "000000000000002E" + type: "item" + item: "immersiveengineering:steel_scaffolding_standard" + count: 2L + } + { + id: "000000000000002F" + type: "item" + item: "immersiveengineering:rs_engineering" + } + { + id: "0000000000000030" + type: "item" + item: "immersiveengineering:heavy_engineering" + } + { + id: "0000000000000031" + type: "item" + item: "immersiveengineering:conveyor_basic" + count: 2L + } + { + id: "0000000000000032" + type: "item" + item: "minecraft:piston" + } + ] + rewards: [{ + id: "00000000000005D3" + type: "item" + item: "pamhc2foodcore:potroastitem" + }] + } + { + x: 0.5d + y: 3.0d + shape: "pentagon" + dependencies: ["0000000000000022"] + id: "0000000000000035" + tasks: [{ + id: "0000000000000036" + type: "item" + item: "immersiveengineering:capacitor_mv" + }] + rewards: [{ + id: "00000000000005FF" + type: "item" + item: "pamhc2foodcore:friedeggitem" + }] + } + { + x: -0.5d + y: 2.5d + shape: "pentagon" + dependencies: ["0000000000000035"] + id: "0000000000000037" + tasks: [{ + id: "0000000000000038" + type: "item" + item: "immersiveengineering:capacitor_hv" + }] + rewards: [{ + id: "0000000000000600" + type: "item" + item: "pamhc2foodcore:friedeggitem" + }] + } + { + icon: "immersiveengineering:alloy_smelter" + x: -1.5d + y: 1.0d + subtitle: "合金窑已被禁用。请使用Silent's Mechanism的合金炉。" + dependencies: ["000000000000001A"] + id: "000000000000003A" + tasks: [{ + id: "0000000000000444" + type: "checkmark" + title: "合金窑" + icon: "immersiveengineering:alloybrick" + }] + rewards: [{ + id: "00000000000005C4" + type: "item" + item: "pamhc2foodcore:jellydonutitem" + count: 2 + }] + } + { + x: -2.0d + y: -0.5d + subtitle: "更好的合成台!" + dependencies: ["000000000000001A"] + id: "0000000000000054" + tasks: [{ + id: "0000000000000055" + type: "item" + item: "immersiveengineering:craftingtable" + }] + rewards: [{ + id: "00000000000005C3" + type: "item" + item: "pamhc2foodcore:jellydonutitem" + count: 2 + }] + } + { + icon: "immersiveengineering:mold_gear" + x: -0.5d + y: -2.0d + dependencies: ["0000000000000020"] + size: 0.9d + id: "0000000000000056" + tasks: [ + { + id: "0000000000000057" + type: "item" + item: "immersiveengineering:mold_plate" + } + { + id: "0000000000000058" + type: "item" + item: "immersiveengineering:mold_gear" + } + { + id: "0000000000000059" + type: "item" + item: "immersiveengineering:mold_rod" + } + { + id: "000000000000005A" + type: "item" + item: "immersiveengineering:mold_wire" + } + ] + rewards: [{ + id: "000000000000005B" + type: "item" + item: "pamhc2foodcore:chocolaterollitem" + count: 8 + }] + } + { + title: "焦炉" + icon: "immersiveengineering:coke_oven" + x: -1.5d + y: -1.5d + subtitle: "生产焦煤的一种方式" + dependencies: ["000000000000001A"] + id: "1923BD75AD92E9A5" + tasks: [{ + id: "2FA2F816EB01282A" + type: "item" + item: "immersiveengineering:cokebrick" + count: 27L + }] + rewards: [{ + id: "00000000000005C2" + type: "item" + item: "immersiveengineering:coal_coke" + count: 16 + }] + } + { + x: 2.8d + y: 2.0d + shape: "diamond" + dependencies: ["000000000000001D"] + size: 0.8d + id: "000000000000033F" + tasks: [{ + id: "0000000000000340" + type: "item" + item: "immersiveengineering:charging_station" + }] + } + { + x: 2.5d + y: -2.0d + shape: "hexagon" + subtitle: "恭喜你!" + dependencies: ["0000000000000026"] + size: 0.9d + id: "00000000000005A1" + tasks: [{ + id: "00000000000005A2" + type: "item" + item: "emendatusenigmatica:steel_ingot" + }] + rewards: [{ + id: "00000000000005D2" + type: "item" + item: "pamhc2foodcore:melonsmoothieitem" + count: 2 + }] + } + { + title: "粉碎机" + icon: "immersiveengineering:crusher" + x: 4.0d + y: -4.0d + shape: "diamond" + dependencies: ["000000000000002C"] + id: "00000000000005A3" + tasks: [ + { + id: "00000000000005D4" + type: "item" + item: "immersiveengineering:steel_scaffolding_standard" + count: 10L + } + { + id: "00000000000005D5" + type: "item" + item: "immersiveengineering:light_engineering" + count: 10L + } + { + id: "00000000000005D6" + type: "item" + item: "minecraft:hopper" + count: 9L + } + { + id: "00000000000005D7" + type: "item" + item: "immersiveengineering:steel_fence" + count: 8L + } + { + id: "00000000000005D8" + type: "item" + item: "immersiveengineering:rs_engineering" + } + ] + rewards: [{ + id: "00000000000005ED" + type: "item" + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + } + { + title: "工业挤压机" + icon: "immersiveengineering:squeezer" + x: 5.0d + y: -4.0d + shape: "diamond" + dependencies: ["000000000000002C"] + id: "00000000000005A5" + tasks: [ + { + id: "00000000000005DC" + type: "item" + item: "immersiveengineering:steel_scaffolding_standard" + count: 6L + } + { + id: "00000000000005DD" + type: "item" + item: "immersiveengineering:wooden_barrel" + count: 4L + } + { + id: "00000000000005DE" + type: "item" + item: "minecraft:piston" + } + { + id: "00000000000005DF" + type: "item" + item: "immersiveengineering:light_engineering" + count: 2L + } + { + id: "00000000000005E0" + type: "item" + item: "immersiveengineering:rs_engineering" + } + { + id: "00000000000005E1" + type: "item" + item: "immersiveengineering:steel_fence" + count: 3L + } + { + id: "00000000000005E2" + type: "item" + item: "immersiveengineering:fluid_pipe" + count: 2L + } + ] + rewards: [{ + id: "00000000000005EC" + type: "item" + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + } + { + title: "锯木机" + icon: "immersiveengineering:sawmill" + x: 5.5d + y: -3.0d + shape: "diamond" + dependencies: ["000000000000002C"] + id: "00000000000005A7" + tasks: [ + { + id: "00000000000005E4" + type: "item" + item: "immersiveengineering:steel_scaffolding_standard" + count: 8L + } + { + id: "00000000000005E5" + type: "item" + item: "immersiveengineering:light_engineering" + count: 6L + } + { + id: "00000000000005E6" + type: "item" + item: "immersiveengineering:sheetmetal_iron" + count: 4L + } + { + id: "00000000000005E8" + type: "item" + item: "immersiveengineering:heavy_engineering" + count: 2L + } + { + id: "00000000000005E9" + type: "item" + item: "immersiveengineering:rs_engineering" + } + { + id: "00000000000005EA" + type: "item" + item: "immersiveengineering:conveyor_basic" + count: 4L + } + ] + rewards: [{ + id: "00000000000005EB" + type: "item" + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + } + { + title: "混合器" + icon: "immersiveengineering:mixer" + x: 5.5d + y: -2.0d + shape: "diamond" + dependencies: ["000000000000002C"] + id: "00000000000005A9" + tasks: [ + { + id: "00000000000005EF" + type: "item" + item: "immersiveengineering:steel_scaffolding_standard" + count: 5L + } + { + id: "00000000000005F0" + type: "item" + item: "immersiveengineering:light_engineering" + count: 4L + } + { + id: "00000000000005F1" + type: "item" + item: "immersiveengineering:sheetmetal_iron" + count: 4L + } + { + id: "00000000000005F2" + type: "item" + item: "immersiveengineering:rs_engineering" + } + { + id: "00000000000005F3" + type: "item" + item: "immersiveengineering:steel_fence" + } + { + id: "00000000000005F4" + type: "item" + item: "immersiveengineering:fluid_pipe" + count: 3L + } + ] + rewards: [{ + id: "00000000000005F5" + type: "item" + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + } + { + x: 3.15d + y: -3.15d + shape: "diamond" + subtitle: "自动润滑器可以用来加速粉碎机、斗轮挖掘机或采油机25%的处理速度。" + dependencies: ["000000000000002C"] + size: 0.9d + id: "00000000000005AB" + tasks: [{ + id: "00000000000005AC" + type: "item" + item: "immersivepetroleum:auto_lubricator" + }] + rewards: [{ + id: "00000000000005EE" + type: "item" + item: "pamhc2foodcore:baconcheeseburgeritem" + }] + } + { + x: 4.0d + y: 1.5d + subtitle: "在IE里,你可以用环境友好的方式生产能量。" + dependencies: ["000000000000001D"] + id: "00000000000005AD" + tasks: [{ + id: "00000000000005AE" + type: "item" + item: "immersiveengineering:dynamo" + }] + } + { + x: 5.5d + y: 2.0d + dependencies: ["00000000000005AD"] + id: "00000000000005AF" + tasks: [{ + id: "00000000000005B0" + type: "item" + item: "immersiveengineering:watermill" + }] + rewards: [{ + id: "00000000000005FB" + type: "item" + item: "pamhc2foodcore:caramelicecreamitem" + }] + } + { + x: 5.0d + y: 3.0d + dependencies: ["00000000000005AD"] + id: "00000000000005B1" + tasks: [{ + id: "00000000000005B2" + type: "item" + item: "immersiveengineering:windmill" + }] + rewards: [{ + id: "00000000000005FC" + type: "item" + item: "pamhc2foodcore:caramelicecreamitem" + }] + } + { + title: "精馏塔" + icon: "immersivepetroleum:distillationtower" + x: 4.0d + y: -0.5d + subtitle: "你可以使用油来产能。" + dependencies: ["0000000000000026"] + id: "00000000000005B3" + tasks: [ + { + id: "00000000000005C7" + type: "item" + item: "immersiveengineering:steel_scaffolding_standard" + count: 25L + } + { + id: "00000000000005C8" + type: "item" + item: "immersiveengineering:heavy_engineering" + count: 4L + } + { + id: "00000000000005C9" + type: "item" + item: "immersiveengineering:rs_engineering" + } + { + id: "00000000000005CA" + type: "item" + item: "immersiveengineering:sheetmetal_iron" + count: 60L + } + { + id: "00000000000005CC" + type: "item" + item: "immersiveengineering:fluid_pipe" + count: 17L + } + { + id: "339BD4AD2877E92C" + type: "item" + item: "immersiveengineering:slab_steel_scaffolding_grate_top" + count: 30L + } + ] + rewards: [{ + id: "00000000000005CE" + type: "item" + item: "immersiveengineering:wooden_barrel" + count: 4 + }] + } + { + x: 5.0d + y: -1.0d + shape: "hexagon" + dependencies: ["00000000000005B3"] + id: "00000000000005B5" + tasks: [{ + id: "00000000000005B6" + type: "item" + item: "immersivepetroleum:gas_generator" + }] + rewards: [{ + id: "00000000000005F7" + type: "item" + item: "pamhc2foodcore:caramelappleitem" + }] + } + { + x: 6.0d + y: -0.5d + shape: "diamond" + dependencies: ["00000000000005B5"] + id: "00000000000005B7" + tasks: [{ + id: "00000000000005B8" + type: "item" + item: "immersivepetroleum:napalm_bucket" + }] + } + { + x: 5.5d + y: 0.0d + shape: "diamond" + dependencies: ["00000000000005B5"] + id: "00000000000005B9" + tasks: [{ + id: "00000000000005BA" + type: "item" + item: "immersivepetroleum:diesel_bucket" + }] + } + { + x: 6.0d + y: 0.5d + shape: "diamond" + dependencies: ["00000000000005B5"] + id: "00000000000005BB" + tasks: [{ + id: "00000000000005BC" + type: "item" + item: "immersivepetroleum:gasoline_bucket" + }] + } + { + x: 6.5d + y: 0.0d + shape: "diamond" + dependencies: ["00000000000005B5"] + id: "00000000000005BD" + tasks: [{ + id: "00000000000005BE" + type: "item" + item: "immersivepetroleum:lubricant_bucket" + }] + } + { + x: 2.5d + y: 3.0d + shape: "octagon" + subtitle: "你可以用园艺玻璃罩快速种植作物。" + dependencies: ["000000000000001D"] + size: 1.1d + id: "00000000000005BF" + tasks: [{ + id: "00000000000005C0" + type: "item" + item: "immersiveengineering:cloche" + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/enviromental_tech.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/enviromental_tech.snbt new file mode 100644 index 000000000..adbeaa502 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/enviromental_tech.snbt @@ -0,0 +1,418 @@ +{ + id: "000000000000019B" + group: "" + order_index: 10 + filename: "enviromental_tech" + title: "&7月与影(环境科技)" + icon: { + id: "envirotech:xerothium_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: 6.0d + y: 0.0d + shape: "hexagon" + dependencies: ["00000000000001A0"] + id: "000000000000019C" + tasks: [{ + id: "000000000000019D" + type: "item" + item: "envirocore:assembler" + }] + } + { + x: 1.2d + y: 0.0d + size: 1.2d + id: "00000000000001A0" + tasks: [{ + id: "00000000000001A1" + type: "item" + item: "envirocore:litherite_crystal" + }] + } + { + x: 4.0d + y: 1.0d + dependencies: ["00000000000001A0"] + id: "000000000000027F" + tasks: [{ + id: "0000000000000280" + type: "item" + item: { + id: "envirotech:litherite_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 2.0d + y: 2.0d + dependencies: ["000000000000027F"] + id: "0000000000000281" + tasks: [{ + id: "0000000000000282" + type: "item" + item: "envirocore:erodium_crystal" + }] + } + { + x: 4.0d + y: 2.0d + dependencies: ["0000000000000281"] + id: "0000000000000283" + tasks: [{ + id: "0000000000000284" + type: "item" + item: { + id: "envirotech:erodium_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 2.0d + y: 3.0d + dependencies: ["0000000000000283"] + id: "0000000000000285" + tasks: [{ + id: "0000000000000286" + type: "item" + item: "envirocore:kyronite_crystal" + }] + } + { + x: 4.0d + y: 3.0d + dependencies: ["0000000000000285"] + id: "0000000000000287" + tasks: [{ + id: "0000000000000288" + type: "item" + item: { + id: "envirotech:kyronite_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 4.0d + y: 4.0d + dependencies: ["0000000000000293"] + id: "0000000000000289" + tasks: [{ + id: "000000000000028A" + type: "item" + item: { + id: "envirotech:pladium_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 4.0d + y: 5.0d + dependencies: ["0000000000000297"] + id: "000000000000028B" + tasks: [{ + id: "000000000000028C" + type: "item" + item: { + id: "envirotech:ionite_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 4.0d + y: 6.0d + dependencies: ["0000000000000299"] + id: "000000000000028D" + tasks: [{ + id: "000000000000028E" + type: "item" + item: { + id: "envirotech:aethium_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 4.0d + y: 7.0d + dependencies: ["000000000000029B"] + id: "000000000000028F" + tasks: [{ + id: "0000000000000290" + type: "item" + item: { + id: "envirotech:nanorite_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 4.0d + y: 8.0d + dependencies: ["000000000000029D"] + id: "0000000000000291" + tasks: [{ + id: "0000000000000292" + type: "item" + item: { + id: "envirotech:xerothium_void_miner_ccu" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 2.0d + y: 4.0d + dependencies: ["0000000000000287"] + id: "0000000000000293" + tasks: [{ + id: "0000000000000294" + type: "item" + item: "envirocore:pladium_crystal" + }] + } + { + x: 2.0d + y: 5.0d + dependencies: ["0000000000000289"] + id: "0000000000000297" + tasks: [{ + id: "0000000000000298" + type: "item" + item: "envirocore:ionite_crystal" + }] + } + { + x: 2.0d + y: 6.0d + dependencies: ["000000000000028B"] + id: "0000000000000299" + tasks: [{ + id: "000000000000029A" + type: "item" + item: "envirocore:aethium_crystal" + }] + } + { + x: 2.0d + y: 7.0d + dependencies: ["000000000000028D"] + id: "000000000000029B" + tasks: [{ + id: "000000000000029C" + type: "item" + item: "envirocore:nanorite_crystal" + }] + } + { + x: 2.0d + y: 8.0d + dependencies: ["000000000000028F"] + id: "000000000000029D" + tasks: [{ + id: "000000000000029E" + type: "item" + item: "envirocore:xerothium_crystal" + }] + } + { + x: 6.5d + y: 1.5d + dependencies: ["000000000000019C"] + id: "000000000000029F" + tasks: [{ + id: "00000000000002A0" + type: "item" + item: { + id: "envirocore:litherite_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 2.5d + dependencies: ["000000000000029F"] + id: "00000000000002A1" + tasks: [{ + id: "00000000000002A2" + type: "item" + item: { + id: "envirocore:erodium_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 3.5d + dependencies: ["00000000000002A1"] + id: "00000000000002A3" + tasks: [{ + id: "00000000000002A4" + type: "item" + item: { + id: "envirocore:kyronite_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 4.5d + dependencies: ["00000000000002A3"] + id: "00000000000002A5" + tasks: [{ + id: "00000000000002A6" + type: "item" + item: { + id: "envirocore:pladium_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 5.5d + dependencies: ["00000000000002A5"] + id: "00000000000002A7" + tasks: [{ + id: "00000000000002A8" + type: "item" + item: { + id: "envirocore:ionite_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 6.5d + dependencies: ["00000000000002A7"] + id: "00000000000002A9" + tasks: [{ + id: "00000000000002AA" + type: "item" + item: { + id: "envirocore:aethium_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 7.5d + dependencies: ["00000000000002A9"] + id: "00000000000002AB" + tasks: [{ + id: "00000000000002AC" + type: "item" + item: { + id: "envirocore:nanorite_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 6.5d + y: 8.5d + dependencies: ["00000000000002AB"] + id: "00000000000002AD" + tasks: [{ + id: "00000000000002AE" + type: "item" + item: { + id: "envirocore:xerothium_frame" + Count: 1b + tag: { + colors: { } + } + } + }] + } + { + x: 1.0d + y: -2.0d + dependencies: ["00000000000001A0"] + id: "00000000000002AF" + tasks: [{ + id: "00000000000002B0" + type: "item" + item: "envirocore:memory_programmer" + }] + } + { + x: 2.5d + y: -2.0d + dependencies: ["00000000000001A0"] + id: "00000000000002B1" + tasks: [{ + id: "00000000000002B2" + type: "item" + item: { + id: "envirocore:rgb_controller" + Count: 1b + tag: { + colors: { } + } + } + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/extended_crafting.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/extended_crafting.snbt new file mode 100644 index 000000000..81ed2afa3 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/extended_crafting.snbt @@ -0,0 +1,463 @@ +{ + id: "210C824739F46888" + group: "" + order_index: 11 + filename: "extended_crafting" + title: "&7雷迪厄斯的化身(创造物品)" + icon: "extendedcrafting:ultimate_singularity" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: 3.0d + y: -0.5d + shape: "diamond" + size: 1.3d + id: "244B3D999DB6141C" + tasks: [{ + id: "194DED2EF3D61014" + type: "item" + item: { + id: "botania:mana_tablet" + Count: 1b + tag: { + mana: 500000 + creative: 1b + } + } + }] + } + { + x: 4.5d + y: -0.5d + shape: "diamond" + size: 1.4d + id: "0A28449BDB5A0AC3" + tasks: [{ + id: "40020021352D68D5" + type: "item" + item: "botania:creative_pool" + }] + } + { + x: -9.0d + y: -1.0d + id: "0B0308FD3F995983" + tasks: [{ + id: "7DB4AF487AE2CB91" + type: "item" + item: "extendedcrafting:ender_crafter" + }] + } + { + x: -10.0d + y: -1.5d + id: "15EADEBA9E72C0F8" + tasks: [{ + id: "1023A0AAE3A777DE" + type: "item" + item: "extendedcrafting:ender_alternator" + }] + } + { + x: -3.2500000000000004d + y: -6.500000000000001d + shape: "gear" + size: 1.5d + id: "01924CC016C6E79B" + tasks: [{ + id: "7EDF2A03B5E3E380" + type: "item" + item: "extendedcrafting:black_iron_ingot" + }] + } + { + x: -5.0d + y: -4.0d + id: "47B785D999B3A992" + tasks: [{ + id: "57863FBFD67248FD" + type: "item" + item: "extendedcrafting:basic_component" + }] + } + { + x: -3.5d + y: -4.5d + id: "6EB375053C820BBA" + tasks: [{ + id: "1EDDB4939E402CC8" + type: "item" + item: "extendedcrafting:basic_catalyst" + }] + } + { + x: -5.0d + y: -3.0d + id: "773784C7F1EFBCCA" + tasks: [{ + id: "598C2D72DFF32CF4" + type: "item" + item: "extendedcrafting:advanced_component" + }] + } + { + x: -3.5d + y: -3.5d + id: "69C83254CD5AE040" + tasks: [{ + id: "0130A3C909814255" + type: "item" + item: "extendedcrafting:advanced_catalyst" + }] + } + { + x: -5.0d + y: -2.0d + id: "7AB7C99AB277E3F3" + tasks: [{ + id: "5CCFCEE0418EE87E" + type: "item" + item: "extendedcrafting:elite_component" + }] + } + { + x: -5.0d + y: -1.0d + id: "442FDFD1206C54FF" + tasks: [{ + id: "71D62E12B1093A21" + type: "item" + item: "extendedcrafting:ultimate_component" + }] + } + { + x: -5.0d + y: 0.0d + id: "56A9FBF0970E45F2" + tasks: [{ + id: "62DC5765CD1E0961" + type: "item" + item: "extendedcrafting:redstone_component" + }] + } + { + x: -3.5d + y: -1.5d + id: "000000000000023F" + tasks: [{ + id: "0000000000000240" + type: "item" + item: "extendedcrafting:ultimate_catalyst" + }] + } + { + x: -5.0d + y: 1.0d + id: "0000000000000241" + tasks: [{ + id: "0000000000000242" + type: "item" + item: "extendedcrafting:ender_component" + }] + } + { + x: -5.0d + y: 2.0d + id: "0000000000000243" + tasks: [{ + id: "0000000000000244" + type: "item" + item: "extendedcrafting:enhanced_ender_component" + }] + } + { + x: -5.0d + y: 3.0d + id: "0000000000000245" + tasks: [{ + id: "0000000000000246" + type: "item" + item: "extendedcrafting:crystaltine_component" + }] + } + { + x: -5.0d + y: 4.0d + id: "0000000000000247" + tasks: [{ + id: "0000000000000248" + type: "item" + item: "extendedcrafting:the_ultimate_component" + }] + } + { + x: -3.5d + y: 3.5d + id: "0000000000000249" + tasks: [{ + id: "000000000000024A" + type: "item" + item: "extendedcrafting:the_ultimate_catalyst" + }] + } + { + x: -3.5d + y: 2.5d + id: "000000000000024B" + tasks: [{ + id: "000000000000024C" + type: "item" + item: "extendedcrafting:crystaltine_catalyst" + }] + } + { + x: -3.5d + y: 1.5d + id: "000000000000024D" + tasks: [{ + id: "000000000000024E" + type: "item" + item: "extendedcrafting:enhanced_ender_catalyst" + }] + } + { + x: -3.5d + y: 0.5d + id: "000000000000024F" + tasks: [{ + id: "0000000000000250" + type: "item" + item: "extendedcrafting:ender_catalyst" + }] + } + { + x: -3.5d + y: -2.5d + id: "0000000000000251" + tasks: [{ + id: "0000000000000252" + type: "item" + item: "extendedcrafting:elite_catalyst" + }] + } + { + x: -3.5d + y: -0.5d + id: "0000000000000253" + tasks: [{ + id: "0000000000000254" + type: "item" + item: "extendedcrafting:redstone_catalyst" + }] + } + { + x: -1.2d + y: -3.5999999999999996d + shape: "hexagon" + size: 1.2d + id: "0000000000000255" + tasks: [{ + id: "0000000000000256" + type: "item" + item: "extendedcrafting:basic_table" + }] + } + { + x: -1.2d + y: -2.4d + shape: "hexagon" + size: 1.2d + id: "0000000000000257" + tasks: [{ + id: "0000000000000258" + type: "item" + item: "extendedcrafting:advanced_table" + }] + } + { + x: -1.2d + y: -1.2d + shape: "hexagon" + size: 1.2d + id: "0000000000000259" + tasks: [{ + id: "000000000000025A" + type: "item" + item: "extendedcrafting:elite_table" + }] + } + { + x: -1.2d + y: 0.0d + shape: "hexagon" + size: 1.2d + id: "000000000000025B" + tasks: [{ + id: "000000000000025C" + type: "item" + item: "extendedcrafting:ultimate_table" + }] + } + { + x: 0.5d + y: -3.0d + id: "000000000000025D" + tasks: [{ + id: "000000000000025E" + type: "item" + item: "extendedcrafting:basic_auto_table" + }] + } + { + x: 0.5d + y: -2.0d + id: "000000000000025F" + tasks: [{ + id: "0000000000000260" + type: "item" + item: "extendedcrafting:advanced_auto_table" + }] + } + { + x: 0.5d + y: -1.0d + id: "0000000000000261" + tasks: [{ + id: "0000000000000262" + type: "item" + item: "extendedcrafting:elite_auto_table" + }] + } + { + x: 0.5d + y: 0.0d + id: "0000000000000263" + tasks: [{ + id: "0000000000000264" + type: "item" + item: "extendedcrafting:ultimate_auto_table" + }] + } + { + x: 5.5d + y: 2.5d + shape: "diamond" + size: 1.4d + id: "0000000000000265" + tasks: [{ + id: "0000000000000266" + type: "item" + item: "mekanism:creative_fluid_tank" + }] + } + { + x: 3.5d + y: 2.5d + shape: "diamond" + size: 1.4d + id: "0000000000000267" + tasks: [{ + id: "0000000000000268" + type: "item" + item: "refinedstorage:creative_storage_disk" + }] + } + { + x: 6.0d + y: -0.5d + shape: "diamond" + size: 1.4d + id: "0000000000000269" + tasks: [{ + id: "000000000000026A" + type: "item" + item: "appliedenergistics2:creative_energy_cell" + }] + } + { + x: 3.0d + y: 1.0d + shape: "diamond" + size: 1.4d + id: "000000000000026B" + tasks: [{ + id: "000000000000026C" + type: "item" + item: "mekanism:creative_chemical_tank" + }] + } + { + x: 6.0d + y: 1.0d + shape: "diamond" + size: 1.4d + id: "000000000000026D" + tasks: [{ + id: "000000000000026E" + type: "item" + item: "powah:energy_cell_creative" + }] + } + { + x: 4.5d + y: 1.0d + shape: "diamond" + size: 1.4d + id: "000000000000026F" + tasks: [{ + id: "0000000000000270" + type: "item" + item: "storagedrawers:creative_vending_upgrade" + }] + } + { + x: -8.5d + y: -3.5d + id: "0000000000000271" + tasks: [{ + id: "0000000000000272" + type: "item" + item: "extendedcrafting:crafting_core" + }] + } + { + x: -9.5d + y: -4.0d + id: "0000000000000273" + tasks: [{ + id: "0000000000000274" + type: "item" + item: "extendedcrafting:pedestal" + count: 13L + }] + } + { + icon: "refinedpipes:ultimate_extractor_attachment" + x: -8.0d + y: -4.5d + subtitle: "你会需要白名单来自动合成核心物品,你可以用这些。" + id: "0000000000000275" + tasks: [ + { + id: "0000000000000276" + type: "item" + item: "refinedpipes:ultimate_extractor_attachment" + count: 4L + } + { + id: "0000000000000277" + type: "item" + item: "refinedpipes:advanced_item_pipe" + count: 18L + } + ] + rewards: [{ + id: "0000000000000278" + type: "item" + item: "refinedpipes:ultimate_extractor_attachment" + count: 4 + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/flux_networks.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/flux_networks.snbt new file mode 100644 index 000000000..d8f336ad8 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/flux_networks.snbt @@ -0,0 +1,238 @@ +{ + id: "000000000000005C" + group: "" + order_index: 8 + filename: "flux_networks" + title: "&7大筒木辉夜(能量)" + icon: "fluxnetworks:flux_point" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + title: "黑色红石" + x: 0.0d + y: 0.0d + subtitle: "你会需要超过一组的" + description: ["&e 查看JEI获取更多信息"] + id: "000000000000005D" + tasks: [{ + id: "000000000000005E" + type: "item" + item: "fluxnetworks:flux_dust" + count: 64L + }] + rewards: [ + { + id: "000000000000005F" + type: "item" + item: "fluxnetworks:flux_plug" + } + { + id: "0000000000000060" + type: "item" + item: "fluxnetworks:flux_point" + } + ] + } + { + x: -1.5d + y: -0.5d + dependencies: ["000000000000005D"] + id: "0000000000000063" + tasks: [{ + id: "0000000000000064" + type: "item" + item: "fluxnetworks:flux_plug" + }] + rewards: [{ + id: "0000000000000065" + type: "item" + item: "fluxnetworks:flux_plug" + }] + } + { + x: -2.5d + y: -1.5d + dependencies: ["000000000000005D"] + id: "0000000000000066" + tasks: [{ + id: "0000000000000067" + type: "item" + item: "fluxnetworks:flux_point" + }] + } + { + x: 2.5d + y: -1.5d + dependencies: ["000000000000005D"] + id: "0000000000000068" + tasks: [{ + id: "0000000000000069" + type: "item" + item: "fluxnetworks:flux_configurator" + }] + } + { + x: 1.5d + y: -0.5d + dependencies: ["000000000000005D"] + id: "000000000000006A" + tasks: [{ + id: "000000000000006B" + type: "item" + item: "fluxnetworks:flux_block" + }] + } + { + x: 0.0d + y: -3.0d + dependencies: ["000000000000005D"] + id: "000000000000006C" + tasks: [{ + id: "000000000000006D" + type: "item" + item: "fluxnetworks:flux_controller" + }] + } + { + x: 0.0d + y: 1.5d + dependencies: ["000000000000005D"] + id: "000000000000006E" + tasks: [{ + id: "000000000000006F" + type: "item" + item: "fluxnetworks:basic_flux_storage" + }] + } + { + x: 0.0d + y: 2.5d + dependencies: ["000000000000006E"] + id: "0000000000000070" + tasks: [{ + id: "0000000000000071" + type: "item" + item: "fluxnetworks:herculean_flux_storage" + }] + } + { + x: 0.0d + y: 3.5d + dependencies: ["0000000000000070"] + id: "0000000000000072" + tasks: [{ + id: "0000000000000073" + type: "item" + item: "fluxnetworks:gargantuan_flux_storage" + }] + } + { + title: "我的老朋友?" + x: -2.0d + y: 1.5d + subtitle: "我们在哪见过?1.6.4?" + description: ["超立方体能够无线传输能量、物品和流体。"] + id: "00000000000000C3" + tasks: [{ + id: "00000000000000C4" + type: "item" + item: "tesseract:tesseract" + }] + } + { + title: "无线红石!" + x: 2.0d + y: 1.5d + subtitle: "谁在乎有线?" + description: ["&e 查看JEI获取更多信息。"] + id: "00000000000000C5" + tasks: [ + { + id: "00000000000000C6" + type: "item" + item: "cyclic:wireless_transmitter" + } + { + id: "00000000000000C7" + type: "item" + item: "cyclic:wireless_receiver" + } + ] + } + { + x: -1.5d + y: 2.5d + id: "2819108BCC5BE61B" + tasks: [{ + id: "2CE59BECF44BF658" + type: "item" + item: "powah:ender_cell_basic" + }] + } + { + x: 1.5d + y: 2.5d + id: "00000000000003F2" + tasks: [ + { + id: "00000000000003F3" + type: "item" + item: "rftoolsutility:redstone_receiver" + } + { + id: "00000000000003F4" + type: "item" + item: "rftoolsutility:redstone_transmitter" + } + ] + } + { + x: -4.5d + y: 0.0d + shape: "diamond" + id: "000000000000060F" + tasks: [{ + id: "0000000000000610" + type: "item" + item: "solarflux:sp_5" + }] + } + { + x: -5.0d + y: 0.5d + shape: "diamond" + dependencies: ["000000000000060F"] + id: "0000000000000611" + tasks: [{ + id: "0000000000000612" + type: "item" + item: "solarflux:sp_6" + }] + } + { + x: -4.0d + y: 0.5d + shape: "diamond" + dependencies: ["0000000000000611"] + id: "0000000000000613" + tasks: [{ + id: "0000000000000614" + type: "item" + item: "solarflux:sp_7" + }] + } + { + x: -4.5d + y: 1.0d + shape: "diamond" + dependencies: ["0000000000000613"] + id: "0000000000000615" + tasks: [{ + id: "0000000000000616" + type: "item" + item: "solarflux:sp_8" + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/foregoing.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/foregoing.snbt new file mode 100644 index 000000000..dc958330c --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/foregoing.snbt @@ -0,0 +1,415 @@ +{ + id: "00000000000000C1" + group: "" + order_index: 9 + filename: "foregoing" + title: "&7用未知语言谱写歌曲(工业先锋)" + icon: "industrialforegoing:latex_processing_unit" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + disable_toast: true + x: 0.0d + y: 0.0d + shape: "diamond" + id: "00000000000003AB" + tasks: [{ + id: "1056F405045B0931" + type: "checkmark" + title: "工业先锋" + icon: { + id: "patchouli:guide_book" + Count: 1b + tag: { + "patchouli:book": "industrialforegoing:industrial_foregoing" + } + } + }] + rewards: [{ + id: "63B75892A0C46B7A" + type: "item" + item: { + id: "patchouli:guide_book" + Count: 1b + tag: { + "patchouli:book": "industrialforegoing:industrial_foregoing" + } + } + }] + } + { + x: 2.5d + y: 1.5d + dependencies: ["00000000000003AB"] + id: "00000000000003AD" + tasks: [{ + id: "00000000000003AE" + type: "item" + item: "industrialforegoing:machine_frame_pity" + }] + } + { + x: 4.5d + y: 1.0d + shape: "diamond" + dependencies: ["00000000000003AD"] + id: "00000000000003AF" + tasks: [{ + id: "00000000000003B0" + type: "item" + item: "industrialforegoing:fluid_extractor" + }] + } + { + x: 1.0d + y: 2.5d + dependencies: ["00000000000003AD"] + id: "00000000000003B1" + tasks: [ + { + id: "00000000000003B2" + type: "item" + item: "industrialforegoing:plant_gatherer" + } + { + id: "00000000000003B3" + type: "item" + item: "industrialforegoing:plant_sower" + } + ] + } + { + x: 1.0d + y: 3.5d + dependencies: ["00000000000003AD"] + id: "00000000000003B4" + tasks: [{ + id: "00000000000003B5" + type: "item" + item: "industrialforegoing:spores_recreator" + }] + } + { + x: 2.0d + y: 0.0d + dependencies: ["00000000000003AD"] + id: "00000000000003B6" + tasks: [ + { + id: "00000000000003B7" + type: "item" + item: "industrialforegoing:biofuel_generator" + } + { + id: "00000000000003B8" + type: "item" + item: "industrialforegoing:bioreactor" + } + ] + } + { + x: 6.0d + y: 1.5d + shape: "diamond" + dependencies: ["00000000000003AF"] + id: "00000000000003B9" + tasks: [{ + id: "00000000000003BD" + type: "item" + item: "industrialforegoing:latex_processing_unit" + }] + } + { + x: 4.0d + y: 2.5d + shape: "octagon" + dependencies: ["00000000000003AF"] + size: 1.3d + id: "00000000000003BB" + tasks: [{ + id: "00000000000003BC" + type: "item" + item: "industrialforegoing:dissolution_chamber" + }] + } + { + x: 6.0d + y: 0.5d + dependencies: ["00000000000003AF"] + id: "00000000000003BE" + tasks: [{ + id: "00000000000003BF" + type: "item" + item: "industrialforegoing:plastic" + }] + } + { + x: 3.5d + y: 0.0d + dependencies: ["00000000000003AD"] + id: "00000000000003C0" + tasks: [ + { + id: "00000000000003C1" + type: "item" + item: "industrialforegoing:animal_rancher" + } + { + id: "00000000000003C2" + type: "item" + item: "industrialforegoing:animal_feeder" + } + { + id: "00000000000003C3" + type: "item" + item: "industrialforegoing:animal_baby_separator" + } + ] + } + { + x: 7.0d + y: -0.5d + dependencies: ["00000000000003BE"] + id: "00000000000003C6" + tasks: [{ + id: "00000000000003C7" + type: "item" + item: "industrialforegoing:mob_crusher" + }] + } + { + x: 7.5d + y: 0.5d + dependencies: ["00000000000003BE"] + id: "00000000000003C8" + tasks: [{ + id: "00000000000003C9" + type: "item" + item: "industrialforegoing:mob_slaughter_factory" + }] + } + { + x: 8.5d + y: 0.0d + dependencies: ["00000000000003C8"] + id: "00000000000003CA" + tasks: [{ + id: "00000000000003CB" + type: "item" + item: "industrialforegoing:pink_slime_ingot" + }] + } + { + x: 2.0d + y: 3.0d + dependencies: ["00000000000003AD"] + id: "00000000000003CC" + tasks: [ + { + id: "00000000000003CD" + type: "item" + item: "industrialforegoing:fluid_collector" + } + { + id: "00000000000003CE" + type: "item" + item: "industrialforegoing:fluid_placer" + } + { + id: "00000000000003CF" + type: "item" + item: "industrialforegoing:fluid_extractor" + } + ] + } + { + x: 6.500000000000001d + y: 3.9000000000000004d + shape: "octagon" + dependencies: ["00000000000003BB"] + size: 1.3d + id: "00000000000003D0" + tasks: [{ + id: "00000000000003D1" + type: "item" + item: "industrialforegoing:machine_frame_simple" + }] + } + { + x: 5.0d + y: 5.0d + dependencies: ["00000000000003D0"] + id: "00000000000003D2" + tasks: [{ + id: "00000000000003D3" + type: "item" + item: "industrialforegoing:marine_fisher" + }] + } + { + x: 7.0d + y: 5.5d + dependencies: ["00000000000003D0"] + id: "00000000000003D4" + tasks: [{ + id: "00000000000003D5" + type: "item" + item: "industrialforegoing:laser_drill" + }] + } + { + x: 6.5d + y: 2.5d + dependencies: ["00000000000003D0"] + id: "00000000000003D6" + tasks: [{ + id: "00000000000003D7" + type: "item" + item: "industrialforegoing:mob_detector" + }] + } + { + x: 5.5d + y: -0.5d + dependencies: ["00000000000003C6"] + id: "00000000000003D8" + tasks: [{ + id: "00000000000003D9" + type: "item" + item: "industrialforegoing:mob_imprisonment_tool" + }] + } + { + x: 9.100000000000001d + y: 1.9500000000000002d + shape: "octagon" + dependencies: ["00000000000003D0"] + size: 1.3d + id: "00000000000003DA" + tasks: [{ + id: "00000000000003DB" + type: "item" + item: "industrialforegoing:machine_frame_advanced" + }] + } + { + x: 7.5d + y: 1.5d + dependencies: ["00000000000003DA"] + id: "00000000000003DC" + tasks: [{ + id: "00000000000003DD" + type: "item" + item: "industrialforegoing:enchantment_sorter" + }] + } + { + x: 10.0d + y: 0.5d + dependencies: ["00000000000003DA"] + id: "00000000000003DE" + tasks: [ + { + id: "00000000000003DF" + type: "item" + item: "industrialforegoing:enchantment_factory" + } + { + id: "00000000000003E0" + type: "item" + item: "industrialforegoing:enchantment_applicator" + } + { + id: "00000000000003E1" + type: "item" + item: "industrialforegoing:enchantment_extractor" + } + ] + } + { + x: 8.0d + y: 3.5d + shape: "gear" + dependencies: ["00000000000003DA"] + id: "00000000000003E2" + tasks: [{ + id: "00000000000003E3" + type: "item" + item: "industrialforegoing:ore_laser_base" + }] + } + { + x: 8.5d + y: 4.5d + shape: "gear" + dependencies: ["00000000000003DA"] + id: "00000000000003E4" + tasks: [{ + id: "00000000000003E5" + type: "item" + item: "industrialforegoing:fluid_laser_base" + }] + } + { + x: 9.5d + y: 3.5d + dependencies: ["00000000000003DA"] + id: "00000000000003E6" + tasks: [{ + id: "00000000000003E7" + type: "item" + item: "industrialforegoing:infinity_charger" + }] + } + { + x: 11.0d + y: 2.0d + shape: "pentagon" + dependencies: ["00000000000003DA"] + id: "00000000000003E8" + tasks: [{ + id: "00000000000003E9" + type: "item" + item: "industrialforegoing:material_stonework_factory" + }] + } + { + x: 11.0d + y: 4.5d + shape: "octagon" + dependencies: ["00000000000003DA"] + size: 1.3d + id: "00000000000003EA" + tasks: [{ + id: "00000000000003EB" + type: "item" + item: "industrialforegoing:machine_frame_supreme" + }] + } + { + x: 12.5d + y: 5.0d + dependencies: ["00000000000003EA"] + id: "00000000000003EC" + tasks: [{ + id: "00000000000003ED" + type: "item" + item: "industrialforegoing:mycelial_reactor" + }] + } + { + x: 13.000000000000002d + y: 3.2500000000000004d + shape: "gear" + dependencies: ["00000000000003EA"] + size: 1.3d + id: "00000000000003EE" + tasks: [{ + id: "00000000000003EF" + type: "item" + item: "thermal:machine_frame" + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/mekanism_deneme_2.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/mekanism_deneme_2.snbt new file mode 100644 index 000000000..40fcc1715 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/mekanism_deneme_2.snbt @@ -0,0 +1,657 @@ +{ + id: "162D562BF001D328" + group: "" + order_index: 5 + filename: "mekanism_deneme_2" + title: "&7第16.5章(MEK)" + icon: "mekanism:steel_casing" + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: -1.0d + y: -0.5d + dependencies: ["00000000000003BB"] + id: "4B0352D68CA17876" + tasks: [{ + id: "71169817A0077433" + type: "item" + item: "mekanism:metallurgic_infuser" + }] + } + { + x: 2.5d + y: -0.5d + dependencies: [ + "0000000000000127" + "4B0352D68CA17876" + ] + id: "2CC82657D87F240C" + tasks: [{ + id: "6E0CE794B71780CB" + type: "item" + item: "mekanism:steel_casing" + }] + } + { + x: 2.0d + y: 2.0d + dependencies: ["2CC82657D87F240C"] + id: "39F12C9BFBA48DCA" + tasks: [{ + id: "0014ADDC0990963A" + type: "item" + item: "mekanism:enrichment_chamber" + }] + } + { + x: 3.0d + y: 2.0d + dependencies: ["2CC82657D87F240C"] + id: "18AC38A68CF3870D" + tasks: [{ + id: "58A5E0BBBC36D1AB" + type: "item" + item: "mekanism:energized_smelter" + }] + } + { + x: 1.5d + y: 3.0d + dependencies: ["2CC82657D87F240C"] + id: "7C40AC2B91AC8335" + tasks: [{ + id: "2D57973D159D6758" + type: "item" + item: "mekanism:crusher" + }] + } + { + x: 2.5d + y: 3.0d + dependencies: ["2CC82657D87F240C"] + id: "727CEF9A5B12E1A2" + tasks: [{ + id: "3F184E4BD4CA2D0E" + type: "item" + item: "mekanism:osmium_compressor" + }] + } + { + x: 3.5d + y: 3.0d + dependencies: ["2CC82657D87F240C"] + id: "28929E4055456505" + tasks: [{ + id: "592D0A263EAF0B2D" + type: "item" + item: "mekanism:precision_sawmill" + }] + } + { + x: -4.5d + y: -0.5d + dependencies: [ + "0000000000000127" + "4B0352D68CA17876" + ] + id: "4B665E861FE3C8B0" + tasks: [{ + id: "00A2FBA452B322C3" + type: "item" + item: "mekanism:energy_tablet" + }] + } + { + x: -5.5d + y: -1.5d + dependencies: ["4B665E861FE3C8B0"] + id: "46918D8296666E1A" + tasks: [{ + id: "5F7BEAB196E03C46" + type: "item" + item: "mekanismgenerators:solar_generator" + }] + } + { + x: -5.5d + y: -3.5d + dependencies: ["46918D8296666E1A"] + id: "6FE9D934499D5DE3" + tasks: [{ + id: "0CC0B9692EBB46A3" + type: "item" + item: "mekanismgenerators:advanced_solar_generator" + }] + } + { + x: -3.5d + y: -1.5d + dependencies: ["4B665E861FE3C8B0"] + id: "57D067A59E813641" + tasks: [{ + id: "2CC3AE20030A94C1" + type: "item" + item: "mekanismgenerators:gas_burning_generator" + }] + } + { + x: -3.5d + y: -2.5d + dependencies: ["57D067A59E813641"] + id: "2D2D93A3D12B9295" + tasks: [{ + id: "27551D54A7DE1449" + type: "item" + item: "mekanismgenerators:bio_generator" + }] + } + { + x: -3.5d + y: -3.5d + dependencies: ["2D2D93A3D12B9295"] + id: "2488206B87E86F3E" + tasks: [{ + id: "20313881AAD2F4CE" + type: "item" + item: "mekanismgenerators:wind_generator" + }] + } + { + x: 4.0d + y: -2.0d + dependencies: ["2CC82657D87F240C"] + id: "6DC4596545B28BA4" + tasks: [{ + id: "7867B06830F95D82" + type: "item" + item: "mekanism:pressurized_reaction_chamber" + count: 2L + }] + } + { + x: 5.0d + y: -1.5d + dependencies: ["2CC82657D87F240C"] + id: "00E84D9F6424947B" + tasks: [{ + id: "2BB6A5A97D042544" + type: "item" + item: "mekanism:rotary_condensentrator" + }] + } + { + x: 4.0d + y: -1.0d + dependencies: ["2CC82657D87F240C"] + id: "721178E3C3688A8A" + tasks: [{ + id: "1A824A9FEF4D05FA" + type: "item" + item: "mekanism:electrolytic_separator" + }] + } + { + x: 5.3999999999999995d + y: -3.0d + shape: "diamond" + dependencies: [ + "00E84D9F6424947B" + "6DC4596545B28BA4" + "721178E3C3688A8A" + ] + size: 1.2d + id: "41DB77F8AAA1FA5E" + tasks: [{ + id: "200FBEFF05C2FB30" + type: "item" + item: "mekanism:hdpe_sheet" + count: 16L + }] + } + { + x: 5.5d + y: 0.5d + shape: "gear" + dependencies: ["2CC82657D87F240C"] + size: 1.3d + id: "7E680BD55A9B478A" + tasks: [ + { + id: "3B5FD58FD2AA3015" + type: "item" + item: "mekanismgenerators:fission_reactor_casing" + } + { + id: "493914C386153410" + type: "item" + item: "mekanismgenerators:fission_reactor_port" + } + { + id: "4BBC352BE529C9E6" + type: "item" + item: "mekanismgenerators:fission_reactor_logic_adapter" + } + { + id: "373FA966FCD1639B" + type: "item" + item: "mekanismgenerators:fission_fuel_assembly" + } + ] + } + { + x: 5.5d + y: 2.5d + dependencies: ["7E680BD55A9B478A"] + id: "05B191F1DEB215D5" + tasks: [{ + id: "5700E2E2B55561CC" + type: "item" + item: "mekanism:solar_neutron_activator" + }] + } + { + x: 7.0d + y: 0.0d + dependencies: ["05B191F1DEB215D5"] + id: "2B283EADE6393439" + tasks: [{ + id: "559AD4B9516F4352" + type: "item" + item: "mekanism:pellet_polonium" + count: 8L + }] + } + { + title: "&4 我.. 就是... 钢铁侠" + x: 8.0d + y: 2.0d + shape: "gear" + subtitle: "无论怎样。" + dependencies: ["2B283EADE6393439"] + size: 2.0d + id: "53BEF7490CD0C6F5" + tasks: [ + { + id: "4469C1CD849EB21E" + type: "item" + item: { + id: "mekanism:mekasuit_helmet" + Count: 1b + tag: { + HideFlags: 2 + } + } + } + { + id: "314BCB5E54313496" + type: "item" + item: { + id: "mekanism:mekasuit_bodyarmor" + Count: 1b + tag: { + HideFlags: 2 + } + } + } + { + id: "148935747F6C51EA" + type: "item" + item: { + id: "mekanism:mekasuit_pants" + Count: 1b + tag: { + HideFlags: 2 + } + } + } + { + id: "223ED9986BEC0D8D" + type: "item" + item: { + id: "mekanism:mekasuit_boots" + Count: 1b + tag: { + HideFlags: 2 + } + } + } + { + id: "4763E53DB0FF10D7" + type: "item" + item: { + id: "mekanism:meka_tool" + Count: 1b + tag: { + HideFlags: 2 + } + } + } + ] + rewards: [{ + id: "0000000000000445" + type: "item" + item: "pamhc2foodcore:basiccheeseburgeritem" + count: 16 + }] + } + { + x: -3.5d + y: 0.5d + dependencies: ["4B665E861FE3C8B0"] + id: "2C809533CACD0A05" + tasks: [{ + id: "12DC6E37FD962B5D" + type: "item" + item: "mekanism:electric_pump" + }] + } + { + x: -3.5d + y: 2.0d + dependencies: ["4B665E861FE3C8B0"] + id: "48B298C630766799" + tasks: [{ + id: "27E548E68E0F75C1" + type: "fluid" + fluid: "mekanism:flowing_heavy_water" + amount: 10000L + }] + } + { + x: -5.5d + y: 0.5d + dependencies: ["4B665E861FE3C8B0"] + id: "020F588659A0B756" + tasks: [{ + id: "7A5D9BF6BB45A788" + type: "item" + item: "mekanism:robit" + }] + } + { + x: -5.5d + y: 2.0d + dependencies: ["4B665E861FE3C8B0"] + id: "001B56B6E885DFA5" + tasks: [{ + id: "4B7767B8724DF42E" + type: "item" + item: "mekanism:digital_miner" + }] + } + { + x: -2.0d + y: 1.0d + dependencies: ["4B0352D68CA17876"] + id: "1402A807C4FF5C90" + tasks: [ + { + id: "18350A3ACA7B8257" + type: "item" + item: "mekanism:basic_universal_cable" + } + { + id: "686160E6C3CBE234" + type: "item" + item: "mekanism:basic_mechanical_pipe" + } + { + id: "1B0EFE55BFD96ED7" + type: "item" + item: "mekanism:basic_logistical_transporter" + } + ] + } + { + x: -1.5d + y: 2.0d + dependencies: ["1402A807C4FF5C90"] + id: "68579A7101F07991" + tasks: [ + { + id: "3BBE07862F6C0ABD" + type: "item" + item: "mekanism:advanced_universal_cable" + } + { + id: "2EB0B645074051D7" + type: "item" + item: "mekanism:advanced_logistical_transporter" + } + { + id: "295A9D9A3C38CD9D" + type: "item" + item: "mekanism:advanced_mechanical_pipe" + } + ] + } + { + x: -2.0d + y: 3.0d + dependencies: ["68579A7101F07991"] + id: "467F44235E699413" + tasks: [ + { + id: "74A01A507F7E5A30" + type: "item" + item: "mekanism:elite_universal_cable" + } + { + id: "567B58831ED65692" + type: "item" + item: "mekanism:elite_mechanical_pipe" + } + { + id: "5ACB762DA202EE9C" + type: "item" + item: "mekanism:elite_logistical_transporter" + } + ] + } + { + x: -1.5d + y: 4.0d + dependencies: ["467F44235E699413"] + id: "0E973F4902411347" + tasks: [ + { + id: "67A4315B8F13DFC3" + type: "item" + item: "mekanism:ultimate_universal_cable" + } + { + id: "5FBA9F675D33E7A3" + type: "item" + item: "mekanism:ultimate_mechanical_pipe" + } + { + id: "1A2AE1B3F8A94145" + type: "item" + item: "mekanism:ultimate_logistical_transporter" + } + ] + } + { + x: 2.0d + y: -2.0d + dependencies: ["2CC82657D87F240C"] + id: "683CAE9A6F658C4B" + tasks: [{ + id: "53A888C92BF069C7" + type: "item" + item: "mekanism:quantum_entangloporter" + }] + } + { + x: -2.0d + y: -1.5d + dependencies: [ + "0000000000000127" + "4B0352D68CA17876" + ] + id: "012F2342004749A6" + tasks: [{ + id: "61FF95408592F073" + type: "item" + item: "mekanism:basic_bin" + }] + } + { + x: 0.0d + y: -1.5d + dependencies: [ + "0000000000000127" + "4B0352D68CA17876" + ] + id: "20CF00C960145687" + tasks: [{ + id: "106187D8AF804BE6" + type: "item" + item: "mekanism:basic_energy_cube" + }] + } + { + x: -0.5d + y: -4.0d + shape: "hexagon" + dependencies: ["0000000000000181"] + id: "000000000000017B" + tasks: [ + { + id: "000000000000017E" + type: "item" + item: "mekanism:advanced_induction_cell" + } + { + id: "000000000000017F" + type: "item" + item: "mekanism:advanced_induction_provider" + } + { + id: "0000000000000180" + type: "item" + item: "mekanism:induction_casing" + count: 32L + } + ] + } + { + x: -1.0d + y: -2.5d + dependencies: [ + "012F2342004749A6" + "20CF00C960145687" + ] + id: "0000000000000181" + tasks: [{ + id: "0000000000000182" + type: "item" + item: "mekanism:teleportation_core" + }] + } + { + x: -1.5d + y: -4.0d + shape: "hexagon" + dependencies: ["0000000000000181"] + id: "0000000000000183" + tasks: [ + { + id: "0000000000000184" + type: "item" + item: "mekanism:teleporter_frame" + count: 14L + } + { + id: "0000000000000185" + type: "item" + item: "mekanism:teleporter" + } + { + id: "0000000000000186" + type: "item" + item: "mekanism:portable_teleporter" + } + ] + } + { + x: -0.5d + y: 1.0d + dependencies: [ + "0000000000000127" + "4B0352D68CA17876" + ] + id: "0000000000000187" + tasks: [{ + id: "0000000000000188" + type: "item" + item: "mekanism:basic_tier_installer" + }] + } + { + x: 0.0d + y: 2.0d + dependencies: ["0000000000000187"] + id: "0000000000000189" + tasks: [{ + id: "000000000000018A" + type: "item" + item: "mekanism:advanced_tier_installer" + }] + } + { + x: -0.5d + y: 3.0d + dependencies: ["0000000000000189"] + id: "000000000000018B" + tasks: [{ + id: "000000000000018C" + type: "item" + item: "mekanism:elite_tier_installer" + }] + } + { + x: 0.0d + y: 4.0d + dependencies: ["000000000000018B"] + id: "000000000000018D" + tasks: [{ + id: "000000000000018E" + type: "item" + item: "mekanism:ultimate_tier_installer" + }] + } + { + x: -4.5d + y: 1.0d + shape: "hexagon" + dependencies: ["4B665E861FE3C8B0"] + id: "0000000000000191" + tasks: [{ + id: "0000000000000192" + type: "item" + item: { + id: "mekanism:atomic_disassembler" + Count: 1b + tag: { + HideFlags: 2 + } + } + }] + } + { + x: 0.5d + y: 0.5d + shape: "gear" + dependencies: ["4B0352D68CA17876"] + size: 0.9d + id: "00000000000004FD" + tasks: [{ + id: "00000000000004FE" + type: "item" + item: "angelring:itemring" + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/thermal.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/thermal.snbt new file mode 100644 index 000000000..480d6ae8b --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/thermal.snbt @@ -0,0 +1,523 @@ +{ + id: "00000000000000B6" + group: "" + order_index: 7 + filename: "thermal" + title: "爱丽丝·滋贝鲁库(热力)" + icon: { + id: "patchouli:guide_book" + Count: 1b + tag: { + "patchouli:book": "thermal:guidebook" + } + } + default_quest_shape: "" + default_hide_dependency_lines: false + quests: [ + { + x: -3.85d + y: -3.3000000000000003d + description: ["想要解锁这个任务,你必须完成超级机器框架任务。"] + dependencies: [ + "00000000000002F4" + "00000000000003EA" + ] + size: 1.1d + id: "0000000000000193" + tasks: [{ + id: "0000000000000194" + type: "item" + item: { + id: "patchouli:guide_book" + Count: 1b + tag: { + "patchouli:book": "thermal:guidebook" + } + } + }] + } + { + x: 2.0d + y: -1.0d + dependencies: ["00000000000002F4"] + size: 1.4d + id: "0000000000000195" + tasks: [{ + id: "0000000000000196" + type: "item" + item: "thermal:machine_frame" + }] + } + { + x: -1.4d + y: -2.1d + shape: "hexagon" + size: 1.4d + id: "00000000000002F4" + tasks: [{ + id: "00000000000002F5" + type: "item" + item: "thermal:wrench" + }] + } + { + x: 6.0d + y: 0.5d + shape: "hexagon" + id: "00000000000002F6" + tasks: [{ + id: "00000000000002F7" + type: "item" + item: "thermal:upgrade_augment_1" + }] + } + { + x: 7.0d + y: 0.5d + shape: "hexagon" + id: "00000000000002F8" + tasks: [{ + id: "00000000000002F9" + type: "item" + item: "thermal:upgrade_augment_2" + }] + } + { + x: 8.0d + y: 0.5d + shape: "hexagon" + id: "00000000000002FA" + tasks: [{ + id: "00000000000002FB" + type: "item" + item: "thermal:upgrade_augment_3" + }] + } + { + x: -2.0d + y: 0.5d + dependencies: ["0000000000000127"] + id: "00000000000002FC" + tasks: [{ + id: "00000000000002FD" + type: "item" + item: "thermal:device_tree_extractor" + }] + } + { + x: -2.0d + y: 1.5d + hide_dependency_lines: true + dependencies: ["0000000000000195"] + id: "0000000000000300" + tasks: [{ + id: "0000000000000301" + type: "item" + item: "thermal:machine_refinery" + }] + } + { + x: 0.5d + y: 0.5d + dependencies: ["0000000000000306"] + id: "0000000000000302" + tasks: [{ + id: "0000000000000303" + type: "item" + item: "thermal:dynamo_stirling" + }] + } + { + x: 0.5d + y: 1.5d + dependencies: [ + "0000000000000306" + "0000000000000302" + ] + id: "0000000000000304" + tasks: [{ + id: "0000000000000305" + type: "item" + item: "thermal:dynamo_compression" + }] + } + { + x: -0.5d + y: 1.0d + shape: "diamond" + dependencies: [ + "0000000000000300" + "00000000000002FC" + ] + size: 0.8d + id: "0000000000000306" + tasks: [{ + id: "0000000000000307" + type: "item" + item: "thermal:rosin" + }] + } + { + x: 0.5d + y: 2.5d + dependencies: [ + "0000000000000127" + "0000000000000304" + ] + id: "0000000000000308" + tasks: [{ + id: "0000000000000309" + type: "item" + item: "thermal:dynamo_magmatic" + }] + } + { + x: 0.5d + y: 3.5d + dependencies: ["0000000000000308"] + id: "000000000000030A" + tasks: [{ + id: "000000000000030B" + type: "item" + item: "thermal:dynamo_numismatic" + }] + } + { + x: 0.5d + y: 4.5d + dependencies: ["000000000000030A"] + id: "000000000000030C" + tasks: [{ + id: "000000000000030D" + type: "item" + item: "thermal:dynamo_lapidary" + }] + } + { + x: 4.5d + y: 2.5d + dependencies: ["0000000000000127"] + id: "000000000000030E" + tasks: [{ + id: "000000000000030F" + type: "item" + item: { + id: "thermal:flux_capacitor" + Count: 1b + tag: { } + } + }] + } + { + x: 5.5d + y: 2.5d + dependencies: ["0000000000000127"] + id: "0000000000000310" + tasks: [{ + id: "0000000000000311" + type: "item" + item: "thermal:flux_drill" + }] + } + { + x: 6.5d + y: 2.5d + dependencies: ["0000000000000127"] + id: "0000000000000312" + tasks: [{ + id: "0000000000000313" + type: "item" + item: "thermal:flux_saw" + }] + } + { + x: 7.5d + y: 2.5d + dependencies: ["0000000000000127"] + id: "0000000000000314" + tasks: [{ + id: "0000000000000315" + type: "item" + item: "thermal:flux_magnet" + }] + } + { + x: 8.5d + y: 2.5d + dependencies: ["0000000000000127"] + id: "0000000000000316" + tasks: [{ + id: "0000000000000317" + type: "item" + item: { + id: "thermal:potion_infuser" + Count: 1b + tag: { } + } + }] + } + { + x: 9.5d + y: 2.5d + dependencies: ["0000000000000127"] + id: "0000000000000318" + tasks: [{ + id: "0000000000000319" + type: "item" + item: { + id: "thermal:potion_quiver" + Count: 1b + tag: { } + } + }] + } + { + x: 7.0d + y: 1.5d + shape: "gear" + dependencies: [ + "00000000000002F6" + "00000000000002F8" + "00000000000002FA" + "0000000000000310" + "0000000000000312" + "0000000000000314" + "0000000000000316" + "0000000000000318" + "000000000000030E" + ] + dependency_requirement: "one_completed" + id: "000000000000031A" + tasks: [{ + id: "000000000000031B" + type: "item" + item: "thermal:tinker_bench" + }] + } + { + x: 2.0d + y: 2.0d + shape: "diamond" + hide_dependency_lines: true + dependencies: [ + "0000000000000304" + "000000000000030C" + "0000000000000308" + "000000000000030A" + "0000000000000302" + ] + dependency_requirement: "one_completed" + size: 0.9d + id: "000000000000031C" + tasks: [{ + id: "000000000000031D" + type: "item" + item: "thermal:dynamo_output_augment" + }] + } + { + x: 2.0d + y: 3.0d + shape: "diamond" + hide_dependency_lines: true + dependencies: [ + "0000000000000304" + "000000000000030C" + "0000000000000308" + "000000000000030A" + "0000000000000302" + ] + dependency_requirement: "one_completed" + size: 0.9d + id: "000000000000031E" + tasks: [{ + id: "000000000000031F" + type: "item" + item: "thermal:dynamo_fuel_augment" + }] + } + { + x: 5.0d + y: -2.0d + subtitle: "Once upon a time there was a Turkish joke. But I won't say it because if I write in English it doesn't mean anything." + dependencies: ["0000000000000195"] + id: "0000000000000320" + tasks: [{ + id: "0000000000000321" + type: "item" + item: "thermal:machine_pulverizer" + }] + } + { + x: 6.0d + y: -2.0d + dependencies: ["0000000000000195"] + id: "0000000000000322" + tasks: [{ + id: "0000000000000323" + type: "item" + item: "thermal:machine_furnace" + }] + } + { + x: 7.0d + y: -2.0d + dependencies: ["0000000000000195"] + id: "0000000000000324" + tasks: [{ + id: "0000000000000325" + type: "item" + item: "thermal:machine_smelter" + }] + } + { + x: 8.0d + y: -2.0d + dependencies: ["0000000000000195"] + id: "0000000000000326" + tasks: [{ + id: "0000000000000327" + type: "item" + item: "thermal:machine_bottler" + }] + } + { + x: 9.0d + y: -2.0d + dependencies: ["0000000000000195"] + id: "0000000000000328" + tasks: [{ + id: "0000000000000329" + type: "item" + item: "thermal:machine_crucible" + }] + } + { + x: 6.5d + y: -3.0d + shape: "diamond" + hide_dependency_lines: true + dependencies: ["0000000000000195"] + size: 0.8d + id: "000000000000032A" + tasks: [{ + id: "000000000000032B" + type: "item" + item: "thermal:machine_sawmill" + }] + } + { + x: 7.5d + y: -3.0d + shape: "diamond" + hide_dependency_lines: true + dependencies: ["0000000000000195"] + size: 0.8d + id: "000000000000032C" + tasks: [{ + id: "000000000000032D" + type: "item" + item: "thermal:machine_press" + }] + } + { + x: 6.0d + y: -1.0d + shape: "diamond" + dependencies: ["0000000000000127"] + size: 0.9d + id: "000000000000032E" + tasks: [{ + id: "000000000000032F" + type: "item" + item: "thermal:machine_speed_augment" + }] + } + { + x: 7.0d + y: -1.0d + shape: "diamond" + dependencies: ["0000000000000127"] + size: 0.9d + id: "0000000000000330" + tasks: [{ + id: "0000000000000331" + type: "item" + item: "thermal:machine_output_augment" + }] + } + { + icon: "thermal:machine_catalyst_augment" + x: 8.0d + y: -1.0d + shape: "diamond" + dependencies: ["0000000000000127"] + size: 0.9d + id: "0000000000000332" + tasks: [ + { + id: "0000000000000333" + type: "item" + item: "thermal:machine_catalyst_augment" + } + { + id: "0000000000000334" + type: "item" + item: "thermal:machine_cycle_augment" + } + ] + } + { + x: 0.5d + y: -2.5d + dependencies: ["0000000000000127"] + id: "0000000000000335" + tasks: [ + { + id: "0000000000000336" + type: "item" + item: { + id: "thermal:diving_helmet" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "0000000000000337" + type: "item" + item: { + id: "thermal:diving_chestplate" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "0000000000000338" + type: "item" + item: { + id: "thermal:diving_leggings" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "0000000000000339" + type: "item" + item: { + id: "thermal:diving_boots" + Count: 1b + tag: { + Damage: 0 + } + } + } + ] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/welcome_to_beginning.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/welcome_to_beginning.snbt new file mode 100644 index 000000000..d14238c31 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/chapters/welcome_to_beginning.snbt @@ -0,0 +1,630 @@ +{ + id: "0000000000000394" + group: "" + order_index: 0 + filename: "welcome_to_beginning" + title: "&7全新的世界" + icon: { id: "minecraft:fire_coral", Count: 3b } + default_quest_shape: "circle" + default_hide_dependency_lines: false + quests: [ + { + title: "欢迎游玩" + icon: "minecraft:oak_log" + x: 0.0d + y: 0.0d + shape: "hexagon" + description: [ + "嗯哼,&a这是第一个任务。" + "" + "我&a十分兴奋&f。你知道吧,第一个任务总是很重要。" + "" + "" + "这是通往一个&d全----新世界&f的第一步!" + "" + "我可以很自豪地说" + "欢迎游玩&aStacia Expert!" + ] + hide_dependency_lines: false + size: 1.1d + id: "0000000000000395" + tasks: [{ + id: "0000000000000396" + type: "item" + title: "Any minecraft:logs" + item: { + id: "itemfilters:tag" + Count: 1b + tag: { + value: "minecraft:logs" + } + } + count: 32L + }] + rewards: [{ + id: "0000000000000397" + type: "item" + item: "minecraft:oak_planks" + count: 48 + }] + } + { + tags: ["aaaa"] + x: 2.2d + y: 0.55d + subtitle: "对我来说,这个东西有特殊的意义。" + description: ["这个物品是专门用来纪念SwapSkipS的。"] + hide_dependency_lines: false + dependencies: ["0000000000000395"] + size: 1.1d + id: "0000000000000398" + tasks: [{ + id: "0000000000000399" + type: "item" + item: "minecraft:crafting_table" + }] + rewards: [{ + id: "000000000000039A" + type: "item" + item: "extendedcrafting:handheld_table" + }] + } + { + title: "拿去吧你!" + x: 4.0d + y: -1.0d + subtitle: "让我小小地帮助你一下" + description: [ + "&a你可以使用Ore Excavation(连锁挖矿)来一次性破坏&a多个同种方块。" + "" + "&a按下\"C\"来使用OreExcavation。(你可以在设置中更改它的按键)" + "" + "&a按下\"V\"来改变挖掘形状。" + "" + "&6你还可以设置快捷键来打开任务书。" + ] + dependencies: ["0000000000000398"] + id: "000000000000039B" + tasks: [{ + id: "000000000000039C" + type: "checkmark" + title: "Ore Excavation" + }] + rewards: [{ + id: "000000000000039D" + type: "item" + item: "pamhc2foodcore:hotdogitem" + count: 4 + }] + } + { + title: "板条箱!" + icon: "quantumstorage:chestdiamond" + x: 3.5d + y: -3.0d + shape: "diamond" + subtitle: "早期存储方式!" + description: ["&a提示:&f当你破坏Quantum Storage的板条箱时,它们会保存其中的物品。"] + dependencies: ["000000000000039B"] + dependency_requirement: "one_completed" + id: "000000000000039E" + tasks: [ + { + id: "000000000000039F" + type: "item" + item: "cyclic:crate" + } + { + id: "00000000000003A0" + type: "item" + item: "quantumstorage:chestdiamond" + } + { + id: "00000000000003A1" + type: "item" + item: "ironchest:diamond_chest" + } + ] + rewards: [{ + id: "00000000000003A2" + type: "item" + item: "minecraft:item_frame" + count: 8 + }] + } + { + x: 3.0d + y: -2.5d + shape: "diamond" + subtitle: "Modern /Dank/Null" + description: [ + "你可以把你不需要的东西清空掉。就像Dank Null一样。" + "" + "&a你可以按下\"LEFT ALT\"键来在背包模式和建筑模式之间切换(你可以在设置中更改按键)" + ] + dependencies: ["000000000000039B"] + id: "00000000000003A3" + tasks: [{ + id: "00000000000003A4" + type: "item" + item: "dankstorage:dank_2" + }] + rewards: [{ + id: "00000000000003A5" + type: "item" + item: { + id: "usefulbackpacks:backpack_small" + Count: 1b + tag: { + display: { + color: 3949738 + } + } + } + }] + } + { + x: 5.0d + y: 0.5d + shape: "hexagon" + subtitle: "&a你的第一个机器框架!" + description: ["这家伙可以帮你制作你的第一台机器。"] + dependencies: ["000000000000039B"] + id: "00000000000003A6" + tasks: [{ + id: "00000000000003A7" + type: "item" + item: "silents_mechanisms:stone_machine_frame" + }] + rewards: [{ + id: "00000000000003A8" + type: "item" + item: "silents_mechanisms:stone_machine_frame" + }] + } + { + icon: "silents_mechanisms:basic_alloy_smelter" + x: 6.5d + y: 0.5d + shape: "hexagon" + description: ["&6基础合金炉:&f你可以用它将两种金属混合成新的金属。"] + dependencies: ["00000000000003A6"] + id: "00000000000003A9" + tasks: [{ + id: "00000000000003AA" + type: "item" + item: "silents_mechanisms:basic_alloy_smelter" + }] + rewards: [{ + id: "743FB4F2039AF24E" + type: "item" + item: "thermal:bronze_ingot" + count: 8 + }] + } + { + x: 7.8d + y: -0.6d + shape: "gear" + subtitle: "&a第二层级机器框架!" + description: [ + "这家伙能帮你制作更多更高级的机器!" + "" + "&6提示:&f如果任务还没开的话,请先完成钢锭任务。" + ] + dependencies: [ + "3601DF8059A8F3F0" + "00000000000003A9" + ] + size: 1.3d + id: "1B1F2DD775FF6432" + tasks: [{ + id: "70D49D79697EF5AC" + type: "item" + item: "silents_mechanisms:alloy_machine_frame" + }] + rewards: [{ + id: "1BF0ECFEF2032BD8" + type: "item" + item: "silents_mechanisms:redstone_alloy_ingot" + count: 4 + }] + } + { + icon: "silents_mechanisms:basic_crusher" + x: 6.0d + y: -0.5d + shape: "hexagon" + description: [ + "&a基础粉碎机:&f你现在可以实现矿物双倍化了。将机器升级后,你还可以使用速度升级。" + "" + "&6燃煤发电机:&f这台机器的产能为40 FE/t。" + ] + dependencies: ["00000000000003A6"] + id: "3601DF8059A8F3F0" + tasks: [ + { + id: "3EEDB1966653B720" + type: "item" + item: "silents_mechanisms:basic_crusher" + } + { + id: "0EA853AC6A5C10CE" + type: "item" + item: "silents_mechanisms:coal_generator" + } + ] + rewards: [{ + id: "3D9ACF4495D42297" + type: "item" + item: "pamhc2foodextended:tacoitem" + count: 2 + }] + } + { + x: 9.5d + y: -1.0d + shape: "diamond" + description: ["&6电炉:&f你可以用RF烧制所有能烧的东西"] + dependencies: ["1B1F2DD775FF6432"] + id: "228C4B343C41E169" + tasks: [{ + id: "01FDB1DE7783BCD1" + type: "item" + item: "silents_mechanisms:electric_furnace" + }] + } + { + x: 10.0d + y: -0.5d + shape: "diamond" + description: [ + "&6压缩机:&f不用锤子你也可以制作板了。" + "" + "&a提示:&f它也拥有速度升级。" + ] + dependencies: ["1B1F2DD775FF6432"] + id: "4B6D4495605DDF95" + tasks: [{ + id: "0A082EBF99EE2552" + type: "item" + item: "silents_mechanisms:compressor" + }] + } + { + x: 9.5d + y: 0.0d + shape: "diamond" + description: ["&6粉碎机:&f你现在可以为你的粉碎机安上速度升级,这能让它的处理速度更快!"] + dependencies: ["1B1F2DD775FF6432"] + id: "7773DEEE5ED3937F" + tasks: [{ + id: "00000000000003BA" + type: "item" + item: "silents_mechanisms:crusher" + }] + } + { + title: "青眼恶魔" + icon: "mekanism:steel_casing" + x: 12.0d + y: -0.75d + shape: "octagon" + subtitle: "&a第8集" + description: [ + "你完成了第一章。你现在可以前往&aMekanism章节&f了。恭喜你!" + "" + "&d如果一块肥皂掉在了地上,那么是肥皂脏了还是地板干净了?" + ] + dependencies: [ + "7773DEEE5ED3937F" + "228C4B343C41E169" + "4B6D4495605DDF95" + ] + size: 1.2d + id: "2D37B5BE446FA725" + tasks: [{ + id: "069FB46F34C63665" + type: "checkmark" + icon: "mekanism:steel_casing" + }] + rewards: [{ + id: "592B32C12AD79586" + type: "item" + item: "pamhc2foodcore:chocolatedonutitem" + count: 4 + }] + } + { + icon: "refinedpipes:basic_energy_pipe" + x: 4.05d + y: 1.3499999999999999d + shape: "diamond" + subtitle: "早期传输!" + dependencies: ["00000000000003A6"] + size: 0.9d + id: "0C2527C7A6218A43" + tasks: [ + { + id: "0C22E6C79860CE00" + type: "item" + item: "refinedpipes:basic_item_pipe" + } + { + id: "7187EA13180FA106" + type: "item" + item: "refinedpipes:basic_fluid_pipe" + } + { + id: "1D002CBDD23D9E9D" + type: "item" + item: "refinedpipes:basic_energy_pipe" + } + { + id: "58D1793B05B4F2CE" + type: "item" + item: "refinedpipes:basic_extractor_attachment" + } + ] + rewards: [{ + id: "544DEE1C70126245" + type: "item" + item: "pamhc2foodcore:basiccheeseburgeritem" + count: 4 + }] + } + { + icon: "xnet:controller" + x: 4.5d + y: 1.7999999999999998d + shape: "diamond" + subtitle: "&aXnet线缆:&f可以在一个方块内做很多事,就像EIO的导线一样。" + dependencies: ["00000000000003A6"] + size: 0.9d + id: "0903F3D20C6A9F51" + tasks: [ + { + id: "175D2603FAB47BA6" + type: "item" + item: "xnet:controller" + } + { + id: "0876F8AF7108E40F" + type: "item" + item: "xnet:netcable_blue" + count: 16L + } + { + id: "195F05E2D5796D1F" + type: "item" + item: "xnet:connector_blue" + } + ] + rewards: [{ + id: "471341B282293F2F" + type: "item" + item: "xnet:connector_blue" + count: 3 + }] + } + { + icon: { + id: "tconstruct:earth_slime_sling" + Count: 1b + tag: { + Damage: 0 + } + } + x: 4.0d + y: -2.5d + shape: "diamond" + subtitle: "&a你可以用它们快速旅行。" + description: [ + "&a史莱姆球有可替代的配方。具体请查看&aJEI。" + "" + "你也可以使用Waystone来在各个地点传送。" + ] + dependencies: ["000000000000039B"] + id: "78D60530D40B81F5" + tasks: [ + { + id: "69AB803EFC1712F7" + type: "item" + item: "tconstruct:earth_slime_boots" + } + { + id: "741E2F86F9F41BEC" + type: "item" + item: { + id: "tconstruct:earth_slime_sling" + Count: 1b + tag: { + Damage: 0 + } + } + } + ] + } + { + x: 1.3499999999999999d + y: -0.44999999999999996d + shape: "hexagon" + description: [ + "&d阿迪特,我们会想你的。" + "" + "\"我一生都在等待匠魂3的更新。\"" + "" + "&a-Maria" + ] + dependencies: ["0000000000000398"] + size: 0.9d + id: "23BA5056E1BB9A61" + tasks: [ + { + id: "01F43100CC82BAC7" + type: "item" + item: "tconstruct:crafting_station" + } + { + id: "79E369E264A4BAD1" + type: "item" + item: { + id: "tconstruct:tinker_station" + Count: 1b + tag: { + texture: "minecraft:oak_planks" + } + } + } + { + id: "606F98F5A962402A" + type: "item" + item: { + id: "tconstruct:part_builder" + Count: 1b + tag: { + texture: "minecraft:oak_planks" + } + } + } + ] + rewards: [{ + id: "4F557B99D6DBBF31" + type: "item" + item: "tconstruct:pattern" + count: 8 + }] + } + { + x: 7.6499999999999995d + y: 0.8999999999999999d + shape: "diamond" + description: ["&6太阳能电池板I:&f产能:1 FE/t"] + dependencies: ["00000000000003A9"] + size: 0.9d + id: "6483F7CCF3BCF4C7" + tasks: [{ + id: "4B7AA9803D980F17" + type: "item" + item: "solarflux:sp_1" + }] + } + { + x: 7.199999999999999d + y: 1.3499999999999999d + shape: "diamond" + description: ["&6太阳能电池板II:&f产能:8 FE/t"] + dependencies: ["6483F7CCF3BCF4C7"] + size: 0.9d + id: "3B73865D853A728C" + tasks: [{ + id: "58E72A15F4EB35F7" + type: "item" + item: "solarflux:sp_2" + }] + } + { + x: 8.1d + y: 1.3499999999999999d + shape: "diamond" + description: ["&6太阳能电池板III:&f产能:32 FE/t"] + dependencies: ["3B73865D853A728C"] + size: 0.9d + id: "575767081C52858C" + tasks: [{ + id: "0423AF1EBB167641" + type: "item" + item: "solarflux:sp_3" + }] + } + { + x: 7.6499999999999995d + y: 1.7999999999999998d + shape: "diamond" + description: ["&6太阳能电池板IV:&f产能:128 FE/t"] + dependencies: ["575767081C52858C"] + size: 0.9d + id: "16DAA36E322A5052" + tasks: [{ + id: "0B5017603794496A" + type: "item" + item: "solarflux:sp_4" + }] + } + { + x: 2.0d + y: -1.0d + shape: "hexagon" + description: ["&a箱子三兄弟:&f你知道匠魂现在有不同的箱子吗?"] + dependencies: ["0000000000000398"] + size: 0.9d + id: "34436D3E329544E9" + tasks: [ + { + id: "052B3248D0B89C0C" + type: "item" + item: "tconstruct:cast_chest" + } + { + id: "22FF2B414A3478A8" + type: "item" + item: "tconstruct:part_chest" + } + { + id: "085E75C7CBC90DFD" + type: "item" + item: "tconstruct:modifier_chest" + } + ] + rewards: [{ + id: "5D351A88D930E7AA" + type: "item" + item: "tconstruct:ingot_cast" + }] + } + { + x: 7.800000000000001d + y: -3.2500000000000004d + description: ["&a存储网络控制器:&f这是一个系统的核心!一个系统中只能包含一个控制器,并且所有相关方块都需要与它相连。"] + dependencies: ["1B1F2DD775FF6432"] + id: "56D3A86E47EC6E32" + tasks: [{ + id: "542584CAABEF5962" + type: "item" + item: "storagenetwork:master" + }] + rewards: [{ + id: "70811C0F87C85D57" + type: "item" + item: "storagenetwork:kabel" + count: 4 + }] + } + { + x: 7.0d + y: -2.0d + shape: "diamond" + description: ["&a合成存储终端:&f它可以让你访问在存储系统的同时还能制作物品!"] + dependencies: ["56D3A86E47EC6E32"] + id: "295FA00E0A5202C3" + tasks: [{ + id: "15C99B3D22828B04" + type: "item" + item: "storagenetwork:request" + }] + } + { + x: 8.5d + y: -2.0d + shape: "diamond" + description: ["&a链接线缆:&f它可以将几乎任何容器链接到存储系统中。"] + dependencies: ["56D3A86E47EC6E32"] + id: "15E4C4AFAE6F53E3" + tasks: [{ + id: "616DC26E0B88FB96" + type: "item" + item: "storagenetwork:storage_kabel" + }] + } + ] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/data.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/data.snbt new file mode 100644 index 000000000..d5debc7b4 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/data.snbt @@ -0,0 +1,19 @@ +{ + version: 13 + default_reward_team: false + default_consume_items: false + default_autoclaim_rewards: "disabled" + default_quest_shape: "circle" + 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: "" +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/reward_tables/1007.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/reward_tables/1007.snbt new file mode 100644 index 000000000..24b3a259d --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/reward_tables/1007.snbt @@ -0,0 +1,7 @@ +{ + id: "0C51E13E066AD48E" + order_index: 0 + title: "test" + loot_size: 1 + rewards: [{ item: "minecraft:polished_granite" }] +} diff --git a/project/Stacia Expert/1.11.14/config/ftbquests/quests/reward_tables/test.snbt b/project/Stacia Expert/1.11.14/config/ftbquests/quests/reward_tables/test.snbt new file mode 100644 index 000000000..30e6aa362 --- /dev/null +++ b/project/Stacia Expert/1.11.14/config/ftbquests/quests/reward_tables/test.snbt @@ -0,0 +1,7 @@ +{ + id: "6F7BB3E32D32E927" + order_index: 1 + title: "test" + loot_size: 1 + rewards: [{ item: "minecraft:polished_granite" }] +} diff --git a/project/Stacia Expert/1.11.14/kubejs/client_scripts/jeipageandtooltips.js b/project/Stacia Expert/1.11.14/kubejs/client_scripts/jeipageandtooltips.js new file mode 100644 index 000000000..1538bb737 --- /dev/null +++ b/project/Stacia Expert/1.11.14/kubejs/client_scripts/jeipageandtooltips.js @@ -0,0 +1,76 @@ + + +onEvent('jei.information', event => { + event.add('envirocore:nanorite_crystal', ['纳诺莱水晶只能在末地使用虚空采掘机采掘获得。']) +}) + +onEvent('jei.information', event => { + event.add('envirocore:mica', ['云母只能在末地或地狱使用虚空采掘机采掘获得。']) +}) + +onEvent('jei.information', event => { + event.add('astralsorcery:stardust', ['把星辉锭丢在地上,然后用星辉锭切割工具左键以获得星尘。']) +}) + +onEvent('jei.information', event => { + event.add('astralsorcery:infused_wood', ['注星木是装饰和合成用材料。将橡木丢进星能液中获得。(这不会消耗星能液)']) +}) + +onEvent('jei.information', event => { + event.add('botania:life_essence', ['除了合成获得,你也可以击杀盖亚获得。']) +}) + +onEvent('jei.information', event => { + event.add('appliedenergistics2:matter_ball', ['跟着AE2任务线发展来获得你的第一个物质球。']) +}) + +onEvent('jei.information', event => { + event.add('appliedenergistics2:condenser', ['跟着AE2任务线发展来获得你的第一个物质球。']) +}) + +onEvent('item.tooltip', event => { + event.add('projecte:mind_stone', [ + '§6你,幻视,你是我的§4悲恸§6亦是我的§4希望', + '§6更甚,你是我的§4一生所爱。' + ]) +}) + +onEvent('item.tooltip', event => { + event.add('projecte:soul_stone', [ + '最艰难的抉择,需要最坚强的意志。', + ]) +}) + +onEvent('item.tooltip', event => { + event.add('industrialforegoing:marine_fisher', [ + '§6这里是草帽海贼!']) +}) + +//Fishes +onEvent('jei.information', event => { + event.add('minecraft:nautilus_shell', [ + '能够在§1钓鱼机§r里获得。']) +}) + +onEvent('jei.information', event => { + event.add('minecraft:pufferfish', [ + '能够在§1钓鱼机§r里获得。']) +}) + +onEvent('jei.information', event => { + event.add('minecraft:salmon', [ + '能够在§1钓鱼机§r里获得。']) +}) + +onEvent('jei.information', event => { + event.add('minecraft:cod', [ + '能够在§1钓鱼机§r里获得。']) +}) + +onEvent('jei.information', event => { + event.add('minecraft:tropical_fish', [ + '能够在§1钓鱼机§r里获得。']) +}) + + + diff --git a/project/Stacia Expert/1.11.14/kubejs/startup_scripts/customitems.js b/project/Stacia Expert/1.11.14/kubejs/startup_scripts/customitems.js new file mode 100644 index 000000000..b9bfc3dec --- /dev/null +++ b/project/Stacia Expert/1.11.14/kubejs/startup_scripts/customitems.js @@ -0,0 +1,223 @@ +// priority: 0 + +console.info('Hello, World! (You will only see this line once in console, during startup)') + + +//Empowered Blocks + +events.listen('item.registry', function (event) { + // The texture for this item has to be placed in kubejs/assets/kubejs/textures/item/test_item.png + // If you want a custom item model, you can create one in Blockbench and put it in kubejs/assets/kubejs/models/item/test_item.json + event.create('charged_nightsky_diamond_block').displayName('充能夜空钻石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_lapis_block').displayName('充能夜空青金石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_emerald_block').displayName('充能夜空绿宝石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_iron_block').displayName('充能夜空铁块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_redstone_block').displayName('充能夜空红石块').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_coal_block').displayName('充能夜空煤炭块').glow(true) +}) + +//Non Empowered Blocks + +events.listen('item.registry', function (event) { + event.create('nightsky_diamond_block').displayName('夜空钻石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_lapis_block').displayName('夜空青金石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_emerald_block').displayName('夜空绿宝石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_iron_block').displayName('夜空铁块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_redstone_block').displayName('夜空红石块') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_coal_block').displayName('夜空煤炭块') +}) + +//Empowered Crystals + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_diamond').displayName('充能夜空钻石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_lapis').displayName('充能夜空青金石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_emerald').displayName('充能夜空绿宝石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_iron').displayName('充能夜空铁').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_redstone').displayName('充能夜空红石').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('charged_nightsky_coal').displayName('充能夜空煤炭').glow(true) +}) + +//Non Empowered Crystals + +events.listen('item.registry', function (event) { + event.create('nightsky_diamond').displayName('夜空钻石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_lapis').displayName('夜空青金石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_emerald').displayName('夜空绿宝石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_iron').displayName('夜空铁') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_redstone').displayName('夜空红石') +}) + +events.listen('item.registry', function (event) { + event.create('nightsky_coal').displayName('夜空煤炭') +}) + +//Others + +events.listen('item.registry', function (event) { + event.create('upgrade_base').displayName('升级底板') +}) + +events.listen('item.registry', function (event) { + event.create('cosmic_anime_food').displayName('寰宇二次元大餐') +}) + +events.listen('item.registry', function (event) { + event.create('supreme_endestest_pearl').displayName('至尊终末珍珠').glow(true) +}) + +events.listen('item.registry', function (event) { + event.create('endestest_pearl').displayName('终末珍珠') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_pearl').displayName('终焉末狱珍珠') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_ingot').displayName('终焉末狱锭') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_nugget').displayName('终焉末狱粒') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_pile').displayName('终焉末狱尘') +}) + +events.listen('item.registry', function (event) { + event.create('uwuterium_block').displayName('终焉末狱块') +}) + +events.listen('item.registry', function (event) { + event.create('enderpearl_block').displayName('末影珍珠块') +}) + + +//More Alloys +//blocks +events.listen('item.registry', function (event) { + event.create('darksteel_block').displayName('玄钢块') +}) + +events.listen('item.registry', function (event) { + event.create('vibrantalloy_block').displayName('脉冲合金块') +}) + +events.listen('item.registry', function (event) { + event.create('energeticalloy_block').displayName('充能合金块') +}) + +//nugget +events.listen('item.registry', function (event) { + event.create('darksteel_nugget').displayName('玄钢粒') +}) + +events.listen('item.registry', function (event) { + event.create('vibrantalloy_nugget').displayName('脉冲合金粒') +}) + +events.listen('item.registry', function (event) { + event.create('energeticalloy_nugget').displayName('充能合金粒') +}) + +//ingots +events.listen('item.registry', function (event) { + event.create('vibrantalloy_ingot').displayName('脉冲合金锭') +}) + +events.listen('item.registry', function (event) { + event.create('energeticalloy_ingot').displayName('充能合金锭') +}) + +events.listen('item.registry', function (event) { + event.create('darksteel_ingot').displayName('玄钢锭') +}) + +//plates +events.listen('item.registry', function (event) { + event.create('darksteel_plate').displayName('玄钢板') +}) + +events.listen('item.registry', function (event) { + event.create('vibrantalloy_plate').displayName('脉冲合金板') +}) + +events.listen('item.registry', function (event) { + event.create('energeticalloy_plate').displayName('充能合金板') +}) + +//gears +events.listen('item.registry', function (event) { + event.create('energeticalloy_gear').displayName('充能合金齿轮') +}) + +events.listen('item.registry', function (event) { + event.create('vibrantalloy_gear').displayName('脉冲合金齿轮') +}) + +events.listen('item.registry', function (event) { + event.create('darksteel_gear').displayName('玄钢齿轮') +}) + +events.listen('item.registry', function (event) { + event.create('empty_slate').displayName('基础石板') +}) \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/resources/contenttweaker/lang/zh_cn.lang b/project/Ultimate Alchemy/0.1.0/resources/contenttweaker/lang/zh_cn.lang new file mode 100644 index 000000000..ea66c2a21 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/resources/contenttweaker/lang/zh_cn.lang @@ -0,0 +1,67 @@ +fluid.salis_mundus=液态世界盐 +fluid.blue_essence.0=浅蓝源质 +fluid.blue_essence.1=淡蓝源质 +fluid.blue_essence.2=蓝色源质 +fluid.blue_essence.3=超蓝源质 +fluid.blue_essence.4=皇家蓝源质 +fluid.blue_essence.5=纯蓝源质 +fluid.dragon_breath=龙之吐息 +fluid.evil=工业级邪恶点滴 +fluid.hard_glass=半流体硬化玻璃 +fluid.low_energy_redstone=红石浆液 +fluid.low_energy_glowstone=荧石泥浆 +fluid.mercury=汞 +fluid.netherwart=下界凝液 +fluid.protein=蛋白质汤 +fluid.water_of_life=生命之水 +fluid.void=虚空蒸汽 +fluid.yolk=蛋黄 + +item.clay.name=欺愚粘土 +tile.clay.name=欺愚粘土 + +infernalmachine.sign.text.0=~~ 目标 ~~ +infernalmachine.sign.text.1=将木头 +infernalmachine.sign.text.2=和石头 +infernalmachine.sign.text.3=炼金成粘土 + +item.contenttweaker.alchemy_cheat_sheet.name=神秘炼金真知卷轴 +item.contenttweaker.bucket_of_raw_lava.name=熔岩要素桶 +item.contenttweaker.cloth_dry.name=布料 +item.contenttweaker.cloth_wet.name=冻结布料 +item.contenttweaker.coal_ball.name=煤球 +item.contenttweaker.coal_ball_compressed.name=压缩煤球 +item.contenttweaker.coal_dense_ball.name=致密煤球 +item.contenttweaker.coal_dense_ball_compressed.name=致密压缩煤球 +item.contenttweaker.compression_mold.name=金属冲压模具:压缩 +item.contenttweaker.dollar.name=聚财宝页 +item.contenttweaker.dragon_scale.name=龙鳞 +item.contenttweaker.dragon_eye.name=龙眼 +item.contenttweaker.dragon_tongue.name=龙舌 +item.contenttweaker.dragon_skull.name=龙性人工颅骨 +item.contenttweaker.dragon_tooth.name=龙牙 +item.contenttweaker.dragon_horn.name=龙角 +item.contenttweaker.dragon_skin.name=龙皮 +item.contenttweaker.lil_brudder.name=单腿小狗画 +item.contenttweaker.mini_void_seeds.name=微缩虚空之种 +item.contenttweaker.tear_drop.name=玩家之泪 +item.contenttweaker.thinker_statue.name=思想者雕像 +item.contenttweaker.true_clay.name=真知粘土 +item.contenttweaker.red_herring.name=红鲱鱼 +item.contenttweaker.rune_of_balance.name=平衡符文 +item.contenttweaker.rune_of_comedy.name=诙谐符文 +item.contenttweaker.rune_of_iron.name=讽刺符文 +item.contenttweaker.rune_of_tragedy.name=悲难符文 +item.contenttweaker.soggy_pearl.name=浸水的末影珍珠 +item.contenttweaker.soul_substitute.name=灵魂替代品 +item.contenttweaker.void_carrot.name=虚空胡萝卜 +item.contenttweaker.void_egg_plant.name=虚空茄子 +item.contenttweaker.wheat_feather.name=干草羽毛 + +item.refinedstorage:quartz_enriched_iron.name=富银铁 +block.refinedstorage:quartz_enriched_iron_block.name=富银铁块 + + + + +machine.crafttweaker:time_machine=时间机器 diff --git a/project/Ultimate Alchemy/0.1.0/resources/minecraft/texts/end.txt b/project/Ultimate Alchemy/0.1.0/resources/minecraft/texts/end.txt new file mode 100644 index 000000000..0a164cc53 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/resources/minecraft/texts/end.txt @@ -0,0 +1,81 @@ +终极炼金考核 + +- 由RWTema制作 + +感谢游玩! + + +Mods used: + +ConnectedTexturesMod (by tterrag1098) +Chisel (by tterrag1098) +Just Enough Items (JEI) (by mezz) +Chameleon (by jaquadro) +Storage Drawers (by jaquadro) +Iron Chests (by progwml6) +Mantle (by mDiyo) +Tinkers Construct (by mDiyo) +Resource Loader (by lumien231) +CraftTweaker (by jaredlll08) +Custom Main Menu (by lumien231) +Inventory Tweaks (by Kobata) +Immersive Engineering (by BluSunrize) +MTLib (by jaredlll08) +ModTweaker (by jaredlll08) +Baubles (by azanor) +Botania (by Vazkii) +Actually Additions (by Ellpeck) +Redstone Flux (by TeamCoFH) +CoFH Core (by TeamCoFH) +CoFH World (by TeamCoFH) +Thermal Foundation (by TeamCoFH) +CodeChicken Lib 1.8.+ (by covers1624) +Thermal Expansion (by TeamCoFH) +Thermal Dynamics (by TeamCoFH) +Guide-API (by TehNut) +Refined Storage (by raoulvdberge) +Forestry (by SirSengir) +Brandon's Core (by brandon3055) +Draconic Evolution (by brandon3055) +Redstone Arsenal (by TeamCoFH) +Reborn Core (by modmuss50) +Steve's Carts Reborn (by modmuss50) +Cyclops Core (by kroeser) +Common Capabilities (by kroeser) +Integrated Dynamics (by kroeser) +Thaumcraft (by azanor) +Sonar Core (by Ollie_Lansdell) +Flux Networks (by Ollie_Lansdell) +Diet Hoppers (by RWTema) +FTBLib (by FTB) +YABBA (by LatvianModder) +B.A.S.E (by lanse505) +ContentTweaker (by jaredlll08) +Ender Storage 1.8.+ (by covers1624) +Forge MultiPart CBE (by covers1624) +Translocators 1.8.+ (by covers1624) +Ding (by iChun) +McJtyLib (by McJty) +Not Enough Wands (by romelo333) +RFTools (by McJty) +Thaumic JEI (by Buuz135) +EnderCore (by tterrag1098) +Ender IO Base (by Henry_Loenwind) +Ender IO Conduits (by Henry_Loenwind) +Ender IO RS Conduits (by Henry_Loenwind) +Building Gadgets (by direwolf20) +Immersive Petroleum (by theFlaxbeard) +ZeroCore (by ZeroNoRyouki) +Extreme Reactors (by ZeroNoRyouki) +Just Enough Reactors (by The_BrainStone) +Ender IO TiC (by Henry_Loenwind) +Ender IO Forestry (by Henry_Loenwind) +Clumps (by jaredlll08) +Controlling (by jaredlll08) +Refined Storage Addons (by raoulvdberge) +Snad (by TheRoBrit) +The One Probe (by McJty) +TOP Addons (by DrManganese) +Hardcore Map Reset (by modmuss50) +FastWorkbench (by Shadows_of_Fire) +YUNoMakeGoodMap (by LexManos) \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/actually_additions.zs b/project/Ultimate Alchemy/0.1.0/scripts/actually_additions.zs new file mode 100644 index 000000000..22465aa3a --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/actually_additions.zs @@ -0,0 +1,52 @@ + +mods.actuallyadditions.Compost.addRecipe( , , , ); + +scripts.globals.addFilling( * 64, , , 1000, false ); + +mods.actuallyadditions.Empowerer.addRecipe( + , + , + , + , + , + , + 500, 100); + + +mods.actuallyadditions.Empowerer.addRecipe( + , + , + , + , + , + , + 1500, 100); + +mods.actuallyadditions.Empowerer.removeRecipe(); +mods.actuallyadditions.Empowerer.removeRecipe(); + + +mods.actuallyadditions.Empowerer.addRecipe( + , + , + , + , + , + , + 500, 100); + + +mods.actuallyadditions.Empowerer.addRecipe( + , + , + , + , + , + , + 500, 100); + +recipes.removeByRecipeName("thermalfoundation:block_podzol"); +scripts.globals.addFilling(, , , 1000, true); +mods.forestry.Moistener.removeRecipe(); + +recipes.addShaped("crusher2", , [[, , ],[, , ],[, , ]]); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/botania.zs b/project/Ultimate Alchemy/0.1.0/scripts/botania.zs new file mode 100644 index 000000000..0dfdb7869 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/botania.zs @@ -0,0 +1,64 @@ +import crafttweaker.item.IIngredient; + +recipes.removeByRecipeName("botania:fertilizer_dye"); + +mods.botania.Apothecary.removeRecipe("orechid"); +mods.botania.Apothecary.removeRecipe("orechidIgnem"); +mods.botania.Apothecary.removeRecipe("clayconia"); + + +//mods.botania.PureDaisy.addRecipe(, ,5); +recipes.remove(); +recipes.remove(); + +for i in 0 to 16 { + var j = i + 1; + if (j == 16) { j = 0; } + mods.botania.PureDaisy.addRecipe(.withDamage(i), .withDamage(j), 20); +} + +mods.botania.PureDaisy.addRecipe(, , 20 * 4); + +mods.botania.ManaInfusion.addAlchemy(, , 5000); + +recipes.addShapeless( * 8, [,,,, .reuse(), , , , ]); + +mods.botania.RuneAltar.addRecipe( * 2,[, ], 5200); +recipes.addShaped( * 2,[[null,,null], [, , ],[null,,null]]); + +mods.botania.ElvenTrade.addRecipe([, , , , , , ], []); +mods.botania.ElvenTrade.addRecipe([], []); + + +mods.botania.ManaInfusion.addInfusion(, , 1000); + + +mods.botania.PureDaisy.addRecipe(, , 4 * 20); +mods.botania.PureDaisy.addRecipe(, , 4 * 20); +mods.botania.PureDaisy.addRecipe(, , 4 * 20); + +mods.botania.PureDaisy.addRecipe(, , 10 * 20); +mods.botania.PureDaisy.addRecipe(, , 10 * 10); + + +function repeat(input as IIngredient, n as int) as IIngredient[] { + var out = [] as IIngredient[]; + for i in 0 to n { + out += input; + } + return out; +} + +mods.botania.RuneAltar.addRecipe(, repeat(, 16), 5200); + + +mods.botania.RuneAltar.addRecipe(, [, , , , ], 1000); + +mods.thermalexpansion.Transposer.addExtractRecipe( * 1000, , 800, % 100); +mods.thermalexpansion.Transposer.addFillRecipe(, , * 1000, 800); + + +mods.botania.Apothecary.addRecipe(, [, , , , , , ]); + +mods.botania.ManaInfusion.addConjuration(.firstItem * 2, , 50000); +mods.botania.ManaInfusion.addConjuration( * 2, , 5000); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/buildinggadgets.zs b/project/Ultimate Alchemy/0.1.0/scripts/buildinggadgets.zs new file mode 100644 index 000000000..44de70de5 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/buildinggadgets.zs @@ -0,0 +1,27 @@ +scripts.globals.replaceShaped("buildinggadgets:exchangingtool", .withTag({mode: "Wall", range: 1, blockstate: {Name: "minecraft:air"}}), + [ + [, , ], + [, , ], + [, , ] + ]); +scripts.globals.replaceShaped("buildinggadgets:buildingtool", .withTag({mode: "BuildToMe", blockstate: {Name: "minecraft:air"}}), + [ + [, , ], + [, , ], + [, , ] + ]); +scripts.globals.replaceShaped("buildinggadgets:copypastetool", .withTag({mode: "Copy"}), + [ + [, , ], + [, , ], + [, , ] + ]); + +scripts.globals.replaceShaped("buildinggadgets:templatemanager", , + [ + [, , ], + [, , ], + [, , ] + ]); + +recipes.addShapeless("constructionpastepowder", * 4, [, , ]); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/crusher.zs b/project/Ultimate Alchemy/0.1.0/scripts/crusher.zs new file mode 100644 index 000000000..a830d0f8f --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/crusher.zs @@ -0,0 +1,5 @@ + +scripts.globals.addCrusher(, ); +scripts.globals.addCrusher(, ); +scripts.globals.addCrusher(, ); +scripts.globals.addCrusher(, ); diff --git a/project/Ultimate Alchemy/0.1.0/scripts/draconic_evolution.zs b/project/Ultimate Alchemy/0.1.0/scripts/draconic_evolution.zs new file mode 100644 index 000000000..8b9c19c3f --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/draconic_evolution.zs @@ -0,0 +1,20 @@ +// Stages +/* +Oak + Stone +Lava (Vanilla) +Grass (Forestry) +Gold (TCon) +Lapis (TE) +Quartz (Botania) +*/ + +recipes.addShaped("draco_heart", , [[, , ], [,,], [, , ]]); +scripts.globals.addCrusher( * 2, ); + +recipes.addShaped("chaos_core", , [[,,], [,,], [,,]]); + +recipes.addShaped("chaos_infusion", , +[ + [, null, ], + [, , ], + [, , ]]); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/dummy_items.zs b/project/Ultimate Alchemy/0.1.0/scripts/dummy_items.zs new file mode 100644 index 000000000..ed28038a9 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/dummy_items.zs @@ -0,0 +1,172 @@ +#loader contenttweaker + +import mods.contenttweaker.VanillaFactory; +import mods.contenttweaker.Item; +import crafttweaker.item.IItemStack; +import mods.contenttweaker.IItemRightClick; +import mods.contenttweaker.Commands; +import crafttweaker.data.IData; +import crafttweaker.util.Position3f; +import crafttweaker.world.IBlockPos; + + +//var bedrock_definition = .block.definition; +//bedrock_definition.hardness = 5; +//bedrock_definition.setHarvestLevel("pickaxe", 0); + +var itemRawBucket = VanillaFactory.createItem("bucket_of_raw_lava"); +itemRawBucket.maxStackSize = 1; +itemRawBucket.register(); + +var itemTrueClay = VanillaFactory.createItem("true_clay"); +itemTrueClay.rarity = "epic"; +itemTrueClay.itemRightClick = function(stack, world, player, hand) { + if (!world.remote && !extrautilities2.Tweaker.XUTweaker.isPlayerFake(player)) { + Commands.call("title @p reset", player, world, false, true); + Commands.call("title @p title {\"text\":\"成功!\", \"color\":\"aqua\"}", player, world, false, true); + Commands.call("title @p subtitle \"进入末地传送门来结束试炼!\"}", player, world, false, true); + + for x in 0 to 3 { + for z in 0 to 3 { + var pos3f = crafttweaker.util.Position3f.create(x - 1, 63, z - 1); + world.setBlockState(.block.definition.defaultState, pos3f as IBlockPos); + } + } + } + return "SUCCESS"; +}; +itemTrueClay.register(); + + +VanillaFactory.createItem("rune_of_balance").register(); + +VanillaFactory.createItem("rune_of_iron").register(); +VanillaFactory.createItem("rune_of_tragedy").register(); +VanillaFactory.createItem("rune_of_comedy").register(); + +VanillaFactory.createItem("dollar").register(); +VanillaFactory.createItem("tear_drop").register(); + +VanillaFactory.createItem("coal_ball").register(); +VanillaFactory.createItem("coal_ball_compressed").register(); +VanillaFactory.createItem("coal_dense_ball").register(); +VanillaFactory.createItem("coal_dense_ball_compressed").register(); + + +VanillaFactory.createItem("mini_void_seeds").register(); + +VanillaFactory.createItem("wheat_feather").register(); + +var void_egg_plant =VanillaFactory.createItemFood("void_egg_plant", 1250); +void_egg_plant.saturation = 5; +void_egg_plant.register(); + +VanillaFactory.createItemFood("void_carrot", 3).register(); + +VanillaFactory.createItemFood("red_herring", 1).register(); + +var itemCompressionMold = VanillaFactory.createItem("compression_mold"); +itemCompressionMold.maxStackSize = 1; +itemCompressionMold.register(); + +var itemSoggyPearl = VanillaFactory.createItem("soggy_pearl"); +itemSoggyPearl.maxStackSize = 16; +itemSoggyPearl.register(); + +var itemThinkerStatue = VanillaFactory.createItem("thinker_statue"); +itemThinkerStatue.maxStackSize = 1; +itemThinkerStatue.rarity = "rare"; +itemThinkerStatue.itemRightClick = function(stack, world, player, hand) { + if !world.remote && !extrautilities2.Tweaker.XUTweaker.isPlayerFake(player) { + var time = world.time % 24000; + var hour = time / 1000; + var minute = ((time % 1000) * 60) / 1000; + var minuteText = minute < 10 ? ("0" ~ minute) : ("" ~ minute); + player.sendChat("我认为现在的时间是 " ~ hour ~ ":" ~ minuteText ~ "..."); + + } + return "SUCCESS"; +}; +itemThinkerStatue.register(); + +var lil_brudder = VanillaFactory.createItem("lil_brudder"); +lil_brudder.maxStackSize = 1; +lil_brudder.itemRightClick = function(stack, world, player, hand) { + if !world.remote && !extrautilities2.Tweaker.XUTweaker.isPlayerFake(player) { + // player.give(.firstItem * 2); + player.update(player.data + {"TearCountdown": 80}); + } + return "SUCCESS"; +}; +lil_brudder.register(); + +var cloth_wet = VanillaFactory.createItem("cloth_wet"); +cloth_wet.register(); + +var cloth_dry = VanillaFactory.createItem("cloth_dry"); +cloth_dry.itemRightClick = function(stack, world, player, hand) { + if (!world.remote && !extrautilities2.Tweaker.XUTweaker.isPlayerFake(player)) { + if (!player.creative) { + player.give(.firstItem); + stack.shrink(1); + + } else { + player.sendChat("创造玩家浑身燥热"); + } + } + return "SUCCESS"; +}; +cloth_dry.register(); + + + +var dragon_scale = VanillaFactory.createItem("dragon_scale"); +dragon_scale.register(); + +var dragon_eye = VanillaFactory.createItem("dragon_eye"); +dragon_eye.register(); + +var dragon_horn = VanillaFactory.createItem("dragon_horn"); +dragon_horn.register(); + +var dragon_tooth = VanillaFactory.createItem("dragon_tooth"); +dragon_tooth.register(); + +var dragon_skull = VanillaFactory.createItem("dragon_skull"); +dragon_skull.register(); + +var dragon_tongue = VanillaFactory.createItem("dragon_tongue"); +dragon_tongue.register(); + +var dragon_skin = VanillaFactory.createItem("dragon_skin"); +dragon_skin.register(); + +var soul_substitute = VanillaFactory.createItem("soul_substitute"); +soul_substitute.maxStackSize = 1; +soul_substitute.register(); + + + +var cheat_sheet = VanillaFactory.createItem("alchemy_cheat_sheet"); +cheat_sheet.itemRightClick = function(stack, world, player, hand) { + if (!world.remote && !extrautilities2.Tweaker.XUTweaker.isPlayerFake(player)) { + Commands.call("thaumcraft research @p THAUMATORIUM", player, world, false, true); + Commands.call("thaumcraft research @p IMPROVEDSMELTING2", player, world, false, true); + Commands.call("thaumcraft research @p INFUSION", player, world, false, true); + Commands.call("thaumcraft research @p BASEALCHEMY", player, world, false, true); + Commands.call("thaumcraft research @p HEDGEALCHEMY", player, world, false, true); + Commands.call("thaumcraft research @p BASEELDRITCH", player, world, false, true); + stack.shrink(1); + } + return "SUCCESS"; +}; +cheat_sheet.maxStackSize = 1; +cheat_sheet.register(); + + +var time_machine = extrautilities2.Tweaker.IMachineRegistry.createNewMachine("time_machine", 1000*1024, 1000*1024, + [extrautilities2.Tweaker.IMachineSlot.newItemStackSlot("input_item", true, 64), extrautilities2.Tweaker.IMachineSlot.newFluidSlot("input_fluid", 4000, true, null)], + [extrautilities2.Tweaker.IMachineSlot.newItemStackSlot("output_item", true, 64), extrautilities2.Tweaker.IMachineSlot.newFluidSlot("output_fluid", 4000, true, null)], + "contenttweaker:blocks/time_machine", + "contenttweaker:blocks/time_machine_active" +); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/enderio.zs b/project/Ultimate Alchemy/0.1.0/scripts/enderio.zs new file mode 100644 index 000000000..9bc7aed8b --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/enderio.zs @@ -0,0 +1,7 @@ +recipes.addShaped("s_cont", , [[null, , null], [, , ], [null, , null]]); +recipes.addShaped("z_cont", , [[null, , null], [, , ], [null, , null]]); +recipes.addShaped("e_cont", , [[null, , null], [, , ], [null, , null]]); + + + +recipes.addShapeless("super_sponge", , [.withTag({FluidName: "vapor_of_levity", Amount: 1000}), ]); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/extra_utils.zs b/project/Ultimate Alchemy/0.1.0/scripts/extra_utils.zs new file mode 100644 index 000000000..98e9285ca --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/extra_utils.zs @@ -0,0 +1,128 @@ +extrautilities2.Tweaker.XUTweaker.allowSurvivalFlight(); +extrautilities2.Tweaker.XUTweaker.disableNetherPortals(); + + +var voidStone = ; +scripts.globals.replaceShaped("extrautils2:machine_base", * 4, [[voidStone, , voidStone], [, , ], [voidStone, , voidStone]]); + +recipes.addShapeless("time_machine", .withTag({Type: "crafttweaker:time_machine"}), [, ]); + +var time_machine = extrautilities2.Tweaker.IMachineRegistry.getMachine("time_machine"); + +scripts.globals.addCrusherSecondary( * 5, , , 10); + +recipes.addShaped("resonator2", , [[, , ], [, , ], [, , ]]); + + +print("Adding Time Recipes"); + +// Amber +time_machine.addRecipe( + {"input_fluid": * 1000}, + {"output_item": }, + 1024*200, 20*60*5 +); +print("Added"); + +// AA Crystals +time_machine.addRecipe( + {"input_item": , "input_fluid": * 1000}, + {"output_item": }, + 1024*50, 20*60*2 +); + +time_machine.addRecipe( + {"input_item": , "input_fluid": * 1000}, + {"output_item": }, + 1024*50, 20*60*2 +); + + +time_machine.addRecipe( + {"input_item": , "input_fluid": * 1000}, + {"output_item": }, + 1024*50, 20*60*2 +); + + +time_machine.addRecipe( + {"input_item": | , "input_fluid": * 1000}, + {"output_item": }, + 1024*50, 20*60*2 +); + + +time_machine.addRecipe( + {"input_item": , "input_fluid": * 1000}, + {"output_item": }, + 1024*50, 20*60*2 +); + + +time_machine.addRecipe( + {"input_item": , "input_fluid": * 1000}, + {"output_item": }, + 1024*50, 20*60*2 +); + + +time_machine.addRecipe( + {"input_fluid": * 1000}, + {"output_fluid": * 1000}, + 1024*50, 20*30 +); + +time_machine.addRecipe( + {"input_item": }, + {"output_item": }, + 1024*50, 20*60*5 +); + +// Ancient Tiles + +time_machine.addRecipe( + {"input_item": }, + {"output_item": }, + 1024*50, 20*60*2 +); + +time_machine.addRecipe( + {"input_item": }, + {"output_item": }, + 1024*50, 20*60*2 +); + +time_machine.addRecipe( + {"input_item": }, + {"output_item": }, + 1024*50, 20*60*2 +); + +// Bot + +time_machine.addRecipe( + {"input_item": }, + {"output_item": }, + 1024*50, 20*60*2 +); + +// + +recipes.removeByRecipeName("extrautils2:redstone_eye"); + + + +time_machine.addRecipe( + {"input_item": , "input_fluid": * 1000}, + {"output_item": }, + 60*60*20*16, 60*60*20 +); + +scripts.globals.addFilling(, , , 1000, true); + +print("Finished Loading"); + +mods.extrautils2.Resonator.add(, , 100 * 100); + + +mods.extrautils2.Resonator.add(, , 400); diff --git a/project/Ultimate Alchemy/0.1.0/scripts/extreme_reactors.zs b/project/Ultimate Alchemy/0.1.0/scripts/extreme_reactors.zs new file mode 100644 index 000000000..033f20e12 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/extreme_reactors.zs @@ -0,0 +1,13 @@ +import crafttweaker.item.IItemStack; +import crafttweaker.liquid.ILiquidStack; + +import mods.tconstruct.Alloy; +import mods.tconstruct.Casting; +import mods.tconstruct.Melting; + +Casting.addBasinRecipe(, null, , 144 * 9); +Casting.addTableRecipe(, , , 144, false); + +Alloy.addRecipe( * 2, [ * 1, * 1]); + +scripts.globals.replaceShaped("bigreactors:reactorcontroller", , [[, null, ], [, ( | ), ], [, , ]]); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/fluids.zs b/project/Ultimate Alchemy/0.1.0/scripts/fluids.zs new file mode 100644 index 000000000..8ee9217e0 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/fluids.zs @@ -0,0 +1,85 @@ +#loader contenttweaker +import mods.contenttweaker.VanillaFactory; +import mods.contenttweaker.Fluid; +import mods.contenttweaker.Color; + + +VanillaFactory.createFluid("blue_essence.0", Color.fromHex("6496CD")).register(); +VanillaFactory.createFluid("blue_essence.1", Color.fromHex("5078D7")).register(); +VanillaFactory.createFluid("blue_essence.2", Color.fromHex("3C5AE1")).register(); +VanillaFactory.createFluid("blue_essence.3", Color.fromHex("283CEB")).register(); +VanillaFactory.createFluid("blue_essence.4", Color.fromHex("141EF5")).register(); +VanillaFactory.createFluid("blue_essence.5", Color.fromHex("0000FF")).register(); + + +var dragon_breath = VanillaFactory.createFluid("dragon_breath", Color.fromHex("E297B7")); +dragon_breath.gaseous = true; +dragon_breath.register(); + +print("Register Low-Energy Redstone Fluid"); +var rs_fluid = VanillaFactory.createFluid("low_energy_redstone", Color.fromHex("720000")); +rs_fluid.temperature = 500; +rs_fluid.register(); + +print("Register Low-Energy Glowstone Fluid"); +var glowstone_fluid = VanillaFactory.createFluid("low_energy_glowstone", Color.fromHex("D2D200")); +glowstone_fluid.temperature = 500; +glowstone_fluid.luminosity = 15; +glowstone_fluid.register(); + +print("Register Hard Glass"); +var hard_glass = VanillaFactory.createFluid("hard_glass", Color.fromHex("a0a0a0")); +hard_glass.temperature = 500; +hard_glass.register(); + + +print("Register Water of Life"); +var water_of_life = VanillaFactory.createFluid("water_of_life", Color.fromHex("FFB671")); +water_of_life.register(); + +print("Register Salis Mundus"); +var salis_mundus = VanillaFactory.createFluid("salis_mundus", Color.fromHex("FFFFFF")); +salis_mundus.stillLocation = "contenttweaker:fluids/salis_mundus"; +salis_mundus.flowingLocation = "contenttweaker:fluids/salis_mundus_flow"; +salis_mundus.register(); + +var infernal_lava = VanillaFactory.createFluid("infernal_lava", Color.fromHex("FFFFFF")); +infernal_lava.temperature = 10000; +infernal_lava.luminosity = 15; +infernal_lava.stillLocation = "contenttweaker:fluids/infernal_lava_still"; +infernal_lava.flowingLocation = "contenttweaker:fluids/infernal_lava_flowing"; +infernal_lava.material = ; +infernal_lava.register(); + + +var protein = VanillaFactory.createFluid("protein", Color.fromHex("F0D29D")); +protein.stillLocation = "contenttweaker:fluids/blank_still"; +protein.flowingLocation = "contenttweaker:fluids/blank_flow"; +protein.register(); + +var yolk = VanillaFactory.createFluid("yolk", Color.fromHex("FCB906")); +yolk.stillLocation = "contenttweaker:fluids/blank_still"; +yolk.flowingLocation = "contenttweaker:fluids/blank_flow"; +yolk.register(); + +var netherwart = VanillaFactory.createFluid("netherwart", Color.fromHex("BB3033")); +netherwart.stillLocation = "extrautils2:blank_lava_still"; +netherwart.flowingLocation = "extrautils2:blank_lava_flow"; +netherwart.register(); + + +var evil = VanillaFactory.createFluid("evil", Color.fromHex("FFFFFF")); +evil.stillLocation = "contenttweaker:fluids/evil_still"; +evil.flowingLocation = "contenttweaker:fluids/evil_flow"; +evil.register(); + +var mercury = VanillaFactory.createFluid("mercury", Color.fromHex("FFFFFF")); +mercury.stillLocation = "contenttweaker:fluids/mercury_still"; +mercury.flowingLocation = "contenttweaker:fluids/mercury_flow"; +mercury.register(); + +var void_fluid = VanillaFactory.createFluid("void", Color.fromHex("000000")); +void_fluid.stillLocation = "contenttweaker:fluids/mercury_still"; +void_fluid.flowingLocation = "contenttweaker:fluids/mercury_still"; +void_fluid.register(); + diff --git a/project/Ultimate Alchemy/0.1.0/scripts/forestry.zs b/project/Ultimate Alchemy/0.1.0/scripts/forestry.zs new file mode 100644 index 000000000..908737abc --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/forestry.zs @@ -0,0 +1,94 @@ + +scripts.globals.replaceShaped("forestry:sturdy_casing", , [[null, , null], [, , ], [, , ]]); + +scripts.globals.replaceShaped("forestry:moistener", , [[, , ], [, , ], [, , ]]); +scripts.globals.replaceShaped("forestry:fermenter", , [[, , ], [, , ], [, , ]]); + +scripts.globals.replaceShaped("forestry:centrifuge", , [[, , ], [, , ], [, , ]]); +scripts.globals.replaceShaped("forestry:carpenter", , [[, , ], [ | , , ], [, , ]]); + +scripts.globals.replaceShaped("forestry:squeezer", , [[, , ], [, , ], [, , ]]); + + +mods.forestry.Squeezer.addRecipe( * 1000, [], 20); + +mods.forestry.Carpenter.addRecipe(, [[], []], 20, * 50); +mods.forestry.Carpenter.addRecipe(, [[]], 20, * 250); + +recipes.addShaped( * 8, [[null, , null], [, , ], [null, , null]]); + +recipes.addShaped(, [[.transformReplace(),.transformReplace(),.transformReplace()], [.transformReplace(),.transformReplace(),.transformReplace()], [.transformReplace(),.transformReplace(),.transformReplace()]]); +recipes.addShaped(, [[, , ], [, , ], [, , ]]); + +mods.forestry.Fermenter.addRecipe(, , , 100, 1); + +mods.forestry.Still.addRecipe( * 1, * 1, 1); + +mods.forestry.Carpenter.addRecipe(, [[]], 20, * 50); +mods.forestry.Carpenter.addRecipe(, [[, , ]], 20, * 100); + + +mods.forestry.Centrifuge.addRecipe( + [ + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20, + % 20 + ], + , 40); + + + +scripts.globals.addCrusher(, ); +recipes.addShaped( * 8, [[, , ]]); + + +mods.forestry.Squeezer.addRecipe( * 1000, [], 50); + +mods.forestry.Fermenter.addRecipe(, , , 1000, 1); +mods.forestry.Fermenter.addRecipe(, , , 1000, 1); +mods.forestry.Fermenter.addRecipe(, , , 1000, 1); +mods.forestry.Fermenter.addRecipe(, , , 1000, 1); +mods.forestry.Fermenter.addRecipe(, , , 1000, 1); +scripts.globals.addFilling(,, , 1000, false); + +mods.forestry.Fermenter.addRecipe(, , , 250, 1); + +mods.forestry.Fermenter.addRecipe(, , , 250, 1); +scripts.globals.addFilling(, | , , 1000, false); + +mods.forestry.Fermenter.addRecipe(, , , 50, 1); +scripts.globals.addFilling(, , , 1000, false); + + +mods.forestry.Carpenter.addRecipe( * 8, + [ + [, , ], + [, , ], + [, , ] + ], + 20, + * 2000); + + +mods.forestry.ThermionicFabricator.addCast( + , + [ + [, , ], + [ , , ], + [, , ] + ], + * 4000); + diff --git a/project/Ultimate Alchemy/0.1.0/scripts/globals.zs b/project/Ultimate Alchemy/0.1.0/scripts/globals.zs new file mode 100644 index 000000000..15020f1be --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/globals.zs @@ -0,0 +1,110 @@ +#priority 200 + +import crafttweaker.item.IItemStack; +import crafttweaker.item.IIngredient; +import crafttweaker.liquid.ILiquidStack; +import crafttweaker.oredict.IOreDictEntry; + +function capitalize(str as string) as string { + return str.substring(0, 1).toUpperCase() + str.substring(1); +} + +function addCrusher(output as IItemStack, input as IItemStack) as bool { + print("Adding crusher recipe [" ~ display(input) ~ " -> " ~ display(output) ~ "]"); + mods.extrautils2.Crusher.add(output, input); + mods.thermalexpansion.Pulverizer.addRecipe(output, input, 4000); + mods.actuallyadditions.Crusher.addRecipe(output, input); + mods.immersiveengineering.Crusher.addRecipe(output, input, 4000); + return true; +} + + +function addCrusherSecondary(output as IItemStack, input as IItemStack, secondary as IItemStack, chance as int) as bool { + print("Adding crusher recipe [" ~ display(input) ~ " -> " ~ display(output) ~ " + " ~ display(secondary) ~ " * " ~ chance ~ "% ]"); + mods.thermalexpansion.Pulverizer.addRecipe(output, input, 4000, secondary, chance); + mods.actuallyadditions.Crusher.addRecipe(output, input, secondary, chance); + return true; +} + +function addAlloy(output as IItemStack, first as IIngredient, second as IIngredient) as bool { + print("Adding alloy recipe [" ~ display(first) ~ " + " ~ display(second) ~ " -> " ~ display(output) ~ "]"); + mods.immersiveengineering.AlloySmelter.addRecipe(output, first, second, 2000); + for firstStack in first.items { + for secondStack in second.items { + mods.thermalexpansion.InductionSmelter.addRecipe(output, firstStack, secondStack, 2400); + } + } + return true; +} + +function display(input as IIngredient) as string { + return input.commandString; +} + + +function replaceShaped(name as string, output as IItemStack, input as IIngredient[][] ) as bool { + print("Replacing Shaped " ~ name); + recipes.removeByRecipeName(name); + recipes.addShaped(stripRecipeName(name), output, input); + return true; +} + +function replaceShapeless(name as string, output as IItemStack, input as IIngredient[] ) as bool { + print("Replacing Shapeless " ~ name); + recipes.removeByRecipeName(name); + recipes.addShapeless(stripRecipeName(name), output, input); + return true; +} + +function stripRecipeName(input as string) as string { + return input.replaceAll(':','_'); +} + +function makeBreakable(stack as IItemStack) as bool { + print("Making breakable: " ~ display(stack)); + var bedrock_definition = stack.asBlock().definition; + bedrock_definition.hardness = 1; + bedrock_definition.setHarvestLevel("pickaxe", 0); + return true; +} + +function addFilling(output as IItemStack, cast as IIngredient, liquid as ILiquidStack, amount as int, isBlock as bool) as bool { + print("Adding filling recipe [" ~ display(cast) ~ " + " ~ display(liquid * amount) ~ " -> " ~ display(output) ~ "]"); + if (isBlock){ + mods.tconstruct.Casting.addBasinRecipe(output, cast, liquid, amount, true); + } else { + mods.tconstruct.Casting.addTableRecipe(output, cast, liquid, amount, true); + } + for castStack in cast.items { + mods.thermalexpansion.Transposer.addFillRecipe(output, castStack, liquid * amount, 2000); + } + mods.immersiveengineering.BottlingMachine.addRecipe(output, cast, liquid * amount); + //mods.forestry.Carpenter.addRecipe(output, [[cast]], 30, liquid * amount); + return true; +} + +function addMelting(output as ILiquidStack, input as IIngredient) as bool { + mods.tconstruct.Melting.addRecipe(output, input); + for inStack in input.items { + mods.thermalexpansion.Crucible.addRecipe(output, inStack, 2000); + } + return true; +} + + +//scripts.globals.addChisel("thinker_statue", , ); +function addChisel(name as string, output as IItemStack, input as IItemStack) as bool{ + recipes.addShapeless(name, output, [input, ( | | ).transformDamage(1)]); + return true; +} + +function addJEIBucketTooltip(liquid as string, tooltip as crafttweaker.formatting.IFormattedText) as bool { + /* + .withTag({FluidName: liquid}).addTooltip(tooltip); + .withTag({Fluid: {FluidName: liquid}}); + .withTag({Fluid: {FluidName: liquid}}); + .withTag({Fluid: {FluidName: liquid}}); + .withTag({Fluid: liquid}); + */ + return true; +} \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/im_eng.zs b/project/Ultimate Alchemy/0.1.0/scripts/im_eng.zs new file mode 100644 index 000000000..9b16c1fc1 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/im_eng.zs @@ -0,0 +1,40 @@ +mods.immersiveengineering.Crusher.removeRecipesForInput(); + + + +mods.immersiveengineering.CokeOven.addRecipe(, 2, , 200); + +scripts.globals.addCrusher(, ); +scripts.globals.addCrusher(, ); + +scripts.globals.addCrusher( * 9, ); +scripts.globals.addCrusher( * 9, ); + + +recipes.addShaped("coal_ball", , [[, , ],[, , ],[, , ]]); + +mods.immersiveengineering.MetalPress.addRecipe(, , , 2000); + +recipes.addShaped("coal_ball_dense", , [[, , ],[, , ],[,,]]); + +mods.immersiveengineering.MetalPress.addRecipe(, , , 2000); + +mods.immersiveengineering.ArcFurnace.addRecipe(, , null, 50, 2048 * 16, [, , , ], "Alloying"); + +mods.immersiveengineering.Blueprint.addRecipe("molds", , [, , , , , ]); + +mods.immersiveengineering.Refinery.addRecipe( * 1000, * 2000, * 2000, 10000); + + +mods.thermalexpansion.Transposer.addExtractRecipe( * 1000, , 800, % 100); +mods.thermalexpansion.Transposer.addFillRecipe(, , * 1000, 800); + +mods.immersiveengineering.MetalPress.addRecipe(, , , 2000); + + + +recipes.addShaped("unbreakable_graphite_electrode", + .withTag({Unbreakable: 1 as byte}).withDisplayName("强化混合晶化石墨电极").withLore(["强化混合晶化金属镶嵌其内起到散热的作用,将热量和熔融材料从电极芯转移出去,防止石墨损耗。", "这也使电极很难被折断。"]), + [[null, , ], + [,,], + [,,null]]); \ No newline at end of file diff --git a/project/Ultimate Alchemy/0.1.0/scripts/integrated_dynamics.zs b/project/Ultimate Alchemy/0.1.0/scripts/integrated_dynamics.zs new file mode 100644 index 000000000..5a2ed5aad --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/integrated_dynamics.zs @@ -0,0 +1,10 @@ +import mods.tconstruct.Alloy; +import mods.tconstruct.Casting; +import mods.tconstruct.Melting; + +Alloy.addRecipe( * 2, [ * 1, * 1]); + +scripts.globals.addFilling(, , , 10, false); +//Casting.addTableRecipe(, , , 10, true); + +scripts.globals.addFilling(, , , 500, true); diff --git a/project/Ultimate Alchemy/0.1.0/scripts/machine_init.zs b/project/Ultimate Alchemy/0.1.0/scripts/machine_init.zs new file mode 100644 index 000000000..e4f68e602 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/machine_init.zs @@ -0,0 +1,2 @@ +#loader imc + diff --git a/project/Ultimate Alchemy/0.1.0/scripts/misc.zs b/project/Ultimate Alchemy/0.1.0/scripts/misc.zs new file mode 100644 index 000000000..08a21de18 --- /dev/null +++ b/project/Ultimate Alchemy/0.1.0/scripts/misc.zs @@ -0,0 +1,121 @@ +import mods.contenttweaker.Commands; + +.addTooltip(format.lightPurple("这是假的粘土。")); +.addTooltip(format.lightPurple("这是假的粘土。")); +.addTooltip(format.aqua("目标达成!")); +.addTooltip(format.aqua("大吉大利,今晚吃鸡! <3")); +.addTooltip(format.aqua("- Tema")); +.addTooltip(format.blue("<拿在手里右键>")); +.addTooltip(format.aqua("这不是作弊 - 这只是辅助学习的工具!")); +.addTooltip(format.aqua("右键阅读。")); +.addTooltip(format.aqua("没想到吧?它可以被破坏。")); +.addTooltip(format.aqua("没想到吧?它可以被破坏。")); +.addTooltip(format.aqua("没想到吧?它可以被破坏。")); +.addTooltip(format.aqua("没想到吧?它可以被破坏。")); +.addTooltip(format.aqua("储存思想和预知的神奇容器。")); +.addTooltip(format.aqua("- 主观的客观存在。")); +.addTooltip(format.aqua("- 因为他太强大了,所以他需要32X像素!")); +.addTooltip(format.aqua("'我可以自己把它画出来。'")); +.addTooltip(format.aqua(" - Lil' Brudder")); +.addTooltip(format.aqua("右键止哭。")); +.addTooltip(format.aqua("(Eww)")); +.addTooltip(format.aqua("右键冷却。")); +.addTooltip(format.aqua("'财富'蕴于其中,原因尚不可知。")); +.addTooltip(format.aqua("不过看起来是个很神奇的技术!")); + + + +scripts.globals.makeBreakable(); +scripts.globals.makeBreakable(); +scripts.globals.makeBreakable(); +scripts.globals.makeBreakable(); + + +for i in 0 to 9 { + mods.jei.JEI.addItem(.withDamage(i)); + mods.jei.JEI.addItem(.withDamage(i)); + mods.jei.JEI.addItem(.withDamage(i)); +} + +mods.jei.JEI.addItem(.withTag({BlockEntityTag: {Item: {id: "minecraft:log", Count: 1 as byte, Damage: 0 as short}, Tier: "creative", Skin: "minecraft:log_oak", Count: 1000000000}})); +mods.jei.JEI.addItem(.withTag({BlockEntityTag: {Item: {id: "minecraft:cobblestone", Count: 1 as byte, Damage: 0 as short}, Tier: "creative", Skin: "minecraft:cobblestone", Count: 1000000000}})); + +mods.jei.JEI.addDescription(, "过于悲伤才会流出的眼泪。哦当然,你的双眼已经因为自我坚强太久而干涸了!不过,这儿有一幅单腿小狗的画..."); +.add(); +.add(); + +mods.jei.JEI.addDescription(, "将末地空气砸到石头上即可获得"); + +mods.jei.JEI.hide(); +mods.jei.JEI.hide(); +/* +var copper_ingot = ; +var tin_ingot = ; +for tin_rep in .items { + if (!tin_ingot.matchesExact(tin_rep)) { + mods.jei.JEI.hide(tin_rep); + } +} + +for copper_rep in .items { + if (!copper_ingot.matchesExact(copper_rep)) { + mods.jei.JEI.hide(copper_rep); + } +} +*/ + + +events.onPlayerTick(function(event as crafttweaker.event.PlayerTickEvent){ + if(event.player.world.time % 1000 == 0){ + event.player.foodStats.addStats(1, 1); + } +}); + +/* +events.onBlockHarvestDrops(function(event as crafttweaker.event.BlockHarvestDropsEvent){ + if(event.block in .block){ + for stack in event.drops { + val wItemStack = stack % 20; + if(wItemStack in ( | )){ + return; + } + } + event.drops += ; + } +}); +*/ + +events.onPlayerTick(function(event as crafttweaker.event.PlayerTickEvent){ + if(!event.player.world.remote & event.player.world.dimension != 0 & event.player.world.dimension != 1){ + var homeDim = crafttweaker.world.IWorld.getFromID(0); + var pos = homeDim.provider.getRandomizedSpawnPoint(); + var command = ("forge setdim " ~ event.player.name ~ " 0 " ~ pos.x ~ " " ~ pos.y ~ " " ~ pos.z) as string; + print(command); + var entity_def = ; + var entity = entity_def.createEntity(event.player.world); + server.commandManager.executeCommand(entity, command); + + + event.player.sendChat("违规:你不能进入其他维度。"); + } +}); + + +events.onPlayerTick(function(event as crafttweaker.event.PlayerTickEvent){ + var player = event.player as crafttweaker.player.IPlayer; + if !player.world.remote { + var data = player.data; + if data has "TearCountdown" { + var time = data.memberGet("TearCountdown") as int; + if time > 0 { + time = time - 1; + player.update(data + {"TearCountdown": time}); + var t = player.world.time; + if ((t % 13) == 0) | ((t % 17) == 0) | ((t % 23) == 0) { + player.give(); + } + } + + } + } +}); \ No newline at end of file